Interface CfnRouterInputPropsMixin.MediaLiveChannelRouterInputConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouterInputPropsMixin.MediaLiveChannelRouterInputConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRouterInputPropsMixin
@Stability(Stable)
public static interface CfnRouterInputPropsMixin.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.cfnpropertymixins.services.mediaconnect.*;
Object automatic;
MediaLiveChannelRouterInputConfigurationProperty mediaLiveChannelRouterInputConfigurationProperty = MediaLiveChannelRouterInputConfigurationProperty.builder()
.mediaLiveChannelArn("mediaLiveChannelArn")
.mediaLiveChannelOutputName("mediaLiveChannelOutputName")
.mediaLivePipelineId("mediaLivePipelineId")
.sourceTransitDecryption(MediaLiveTransitEncryptionProperty.builder()
.encryptionKeyConfiguration(MediaLiveTransitEncryptionKeyConfigurationProperty.builder()
.automatic(automatic)
.secretsManager(SecretsManagerEncryptionKeyConfigurationProperty.builder()
.roleArn("roleArn")
.secretArn("secretArn")
.build())
.build())
.encryptionKeyType("encryptionKeyType")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRouterInputPropsMixin.MediaLiveChannelRouterInputConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe ARN of the MediaLive channel to connect to this router input.default StringThe name of the MediaLive channel output to connect to this router input.default Stringdefault ObjectThe encryption configuration that defines how content is encrypted during transit between MediaConnect Router and MediaLive.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMediaLiveChannelArn
The ARN of the MediaLive channel to connect to this router input.- See Also:
-
getMediaLiveChannelOutputName
The name of the MediaLive channel output to connect to this router input.- See Also:
-
getMediaLivePipelineId
- See Also:
-
getSourceTransitDecryption
The encryption configuration that defines how content is encrypted during transit between MediaConnect Router and MediaLive.This configuration determines whether encryption keys are automatically managed by the service or manually managed through Secrets Manager.
Returns union: either
IResolvableorCfnRouterInputPropsMixin.MediaLiveTransitEncryptionProperty- See Also:
-
builder
@Stability(Stable) static CfnRouterInputPropsMixin.MediaLiveChannelRouterInputConfigurationProperty.Builder builder()
-