Interface CfnRouterOutput.FlowTransitEncryptionKeyConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRouterOutput.FlowTransitEncryptionKeyConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRouterOutput
@Stability(Stable)
public static interface CfnRouterOutput.FlowTransitEncryptionKeyConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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;
FlowTransitEncryptionKeyConfigurationProperty flowTransitEncryptionKeyConfigurationProperty = FlowTransitEncryptionKeyConfigurationProperty.builder()
.automatic(automatic)
.secretsManager(SecretsManagerEncryptionKeyConfigurationProperty.builder()
.roleArn("roleArn")
.secretArn("secretArn")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnRouterOutput.FlowTransitEncryptionKeyConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectConfiguration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.default ObjectThe configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAutomatic
Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.- See Also:
-
getSecretsManager
The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.Returns union: either
IResolvableorCfnRouterOutput.SecretsManagerEncryptionKeyConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnRouterOutput.FlowTransitEncryptionKeyConfigurationProperty.Builder builder()
-