Interface CfnRouterOutput.MediaLiveInputRouterOutputConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouterOutput.MediaLiveInputRouterOutputConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRouterOutput
@Stability(Stable)
public static interface CfnRouterOutput.MediaLiveInputRouterOutputConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Configuration settings for connecting a router output to a MediaLive input.
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;
MediaLiveInputRouterOutputConfigurationProperty mediaLiveInputRouterOutputConfigurationProperty = MediaLiveInputRouterOutputConfigurationProperty.builder()
.destinationTransitEncryption(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
.mediaLiveInputArn("mediaLiveInputArn")
.mediaLivePipelineId("mediaLivePipelineId")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRouterOutput.MediaLiveInputRouterOutputConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDestinationTransitEncryption
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 AWS Secrets Manager.
Returns union: either
IResolvableorCfnRouterOutput.MediaLiveTransitEncryptionProperty- See Also:
-
getMediaLiveInputArn
The ARN of the MediaLive input to connect to this router output.- See Also:
-
getMediaLivePipelineId
- See Also:
-
builder
@Stability(Stable) static CfnRouterOutput.MediaLiveInputRouterOutputConfigurationProperty.Builder builder()
-