Interface CfnFlowOutput.FlowTransitEncryptionKeyConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowOutput.FlowTransitEncryptionKeyConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnFlowOutput
@Stability(Stable)
public static interface CfnFlowOutput.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 forCfnFlowOutput.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 of a flow output 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 of a flow output using AWS Secrets Manager, including the secret ARN and role ARN.Returns union: either
IResolvableorCfnFlowOutput.SecretsManagerEncryptionKeyConfigurationProperty- See Also:
-
builder
@Stability(Stable) static CfnFlowOutput.FlowTransitEncryptionKeyConfigurationProperty.Builder builder()
-