Interface CfnRouterOutputPropsMixin.SrtEncryptionConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouterOutputPropsMixin.SrtEncryptionConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRouterOutputPropsMixin
@Stability(Stable)
public static interface CfnRouterOutputPropsMixin.SrtEncryptionConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Contains the configuration settings for encrypting SRT streams, including the encryption key details and encryption parameters.
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.*;
SrtEncryptionConfigurationProperty srtEncryptionConfigurationProperty = SrtEncryptionConfigurationProperty.builder()
.encryptionKey(SecretsManagerEncryptionKeyConfigurationProperty.builder()
.roleArn("roleArn")
.secretArn("secretArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRouterOutputPropsMixin.SrtEncryptionConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryptionKey
The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.Returns union: either
IResolvableorCfnRouterOutputPropsMixin.SecretsManagerEncryptionKeyConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnRouterOutputPropsMixin.SrtEncryptionConfigurationProperty.Builder builder()
-