MediaLiveChannelConfigurationWithoutConnectionProps
- class aws_cdk.aws_mediaconnect_alpha.MediaLiveChannelConfigurationWithoutConnectionProps(*, availability_zone, source_transit_decryption=None)
Bases:
object(experimental) Properties for MediaLive Channel Router Input configuration without a specific channel connection.
Use this when you want to set up the router input before the target MediaLive channel exists.
- Parameters:
availability_zone (
str) – (experimental) Availability Zone the router input will be placed in.source_transit_decryption (
Union[TransitEncryption,Dict[str,Any],None]) – (experimental) Optional transit encryption configuration. Default: - Automatic encryption will be used
- Stability:
experimental
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_mediaconnect_alpha as mediaconnect_alpha from aws_cdk import aws_iam as iam from aws_cdk import aws_secretsmanager as secretsmanager # role: iam.Role # secret: secretsmanager.Secret media_live_channel_configuration_without_connection_props = mediaconnect_alpha.MediaLiveChannelConfigurationWithoutConnectionProps( availability_zone="availabilityZone", # the properties below are optional source_transit_decryption=mediaconnect_alpha.TransitEncryption( secret=secret, # the properties below are optional role=role ) )
Attributes
- availability_zone
(experimental) Availability Zone the router input will be placed in.
- Stability:
experimental
- source_transit_decryption
(experimental) Optional transit encryption configuration.
- Default:
Automatic encryption will be used
- Stability:
experimental