CfnEncoderConfigurationProps

class aws_cdk.aws_ivs.CfnEncoderConfigurationProps(*, name=None, tags=None, video=None)

Bases: object

Properties for defining a CfnEncoderConfiguration.

Parameters:
  • name (Optional[str]) – Encoder cnfiguration name.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .

  • video (Union[IResolvable, VideoProperty, Dict[str, Any], None]) – Video configuration. Default: video resolution 1280x720, bitrate 2500 kbps, 30 fps. See the Video property type for more information.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-encoderconfiguration.html

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_ivs as ivs

cfn_encoder_configuration_props = ivs.CfnEncoderConfigurationProps(
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )],
    video=ivs.CfnEncoderConfiguration.VideoProperty(
        bitrate=123,
        framerate=123,
        height=123,
        width=123
    )
)

Attributes

name

Encoder cnfiguration name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-encoderconfiguration.html#cfn-ivs-encoderconfiguration-name

tags

An array of key-value pairs to apply to this resource.

For more information, see Tag .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-encoderconfiguration.html#cfn-ivs-encoderconfiguration-tags

video

Video configuration.

Default: video resolution 1280x720, bitrate 2500 kbps, 30 fps. See the Video property type for more information.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ivs-encoderconfiguration.html#cfn-ivs-encoderconfiguration-video