Interface CfnRouterOutputPropsMixin.MediaLiveTransitEncryptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouterOutputPropsMixin.MediaLiveTransitEncryptionProperty.Jsii$Proxy
- Enclosing class:
CfnRouterOutputPropsMixin
@Stability(Stable)
public static interface CfnRouterOutputPropsMixin.MediaLiveTransitEncryptionProperty
extends software.amazon.jsii.JsiiSerializable
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.
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;
MediaLiveTransitEncryptionProperty mediaLiveTransitEncryptionProperty = MediaLiveTransitEncryptionProperty.builder()
.encryptionKeyConfiguration(MediaLiveTransitEncryptionKeyConfigurationProperty.builder()
.automatic(automatic)
.secretsManager(SecretsManagerEncryptionKeyConfigurationProperty.builder()
.roleArn("roleArn")
.secretArn("secretArn")
.build())
.build())
.encryptionKeyType("encryptionKeyType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRouterOutputPropsMixin.MediaLiveTransitEncryptionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryptionKeyConfiguration
Configuration settings for the MediaLive transit encryption key.Returns union: either
IResolvableorCfnRouterOutputPropsMixin.MediaLiveTransitEncryptionKeyConfigurationProperty- See Also:
-
getEncryptionKeyType
- See Also:
-
builder
@Stability(Stable) static CfnRouterOutputPropsMixin.MediaLiveTransitEncryptionProperty.Builder builder()
-