Interface CfnRouterInput.MediaLiveChannelRouterInputConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRouterInput.MediaLiveChannelRouterInputConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnRouterInput

@Stability(Stable) public static interface CfnRouterInput.MediaLiveChannelRouterInputConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration settings for connecting a router input to a MediaLive channel output.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.mediaconnect.*;
 Object automatic;
 MediaLiveChannelRouterInputConfigurationProperty mediaLiveChannelRouterInputConfigurationProperty = MediaLiveChannelRouterInputConfigurationProperty.builder()
         .sourceTransitDecryption(MediaLiveTransitEncryptionProperty.builder()
                 .encryptionKeyConfiguration(MediaLiveTransitEncryptionKeyConfigurationProperty.builder()
                         .automatic(automatic)
                         .secretsManager(SecretsManagerEncryptionKeyConfigurationProperty.builder()
                                 .roleArn("roleArn")
                                 .secretArn("secretArn")
                                 .build())
                         .build())
                 // the properties below are optional
                 .encryptionKeyType("encryptionKeyType")
                 .build())
         // the properties below are optional
         .mediaLiveChannelArn("mediaLiveChannelArn")
         .mediaLiveChannelOutputName("mediaLiveChannelOutputName")
         .mediaLivePipelineId("mediaLivePipelineId")
         .build();
 

See Also: