Interface CfnFlowOutput.FlowTransitEncryptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowOutput.FlowTransitEncryptionProperty.Jsii$Proxy
- Enclosing class:
CfnFlowOutput
@Stability(Stable)
public static interface CfnFlowOutput.FlowTransitEncryptionProperty
extends software.amazon.jsii.JsiiSerializable
The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect flow.
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;
FlowTransitEncryptionProperty flowTransitEncryptionProperty = FlowTransitEncryptionProperty.builder()
.encryptionKeyConfiguration(FlowTransitEncryptionKeyConfigurationProperty.builder()
.automatic(automatic)
.secretsManager(SecretsManagerEncryptionKeyConfigurationProperty.builder()
.roleArn("roleArn")
.secretArn("secretArn")
.build())
.build())
// the properties below are optional
.encryptionKeyType("encryptionKeyType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowOutput.FlowTransitEncryptionPropertystatic final classAn implementation forCfnFlowOutput.FlowTransitEncryptionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryptionKeyConfiguration
Configuration settings for flow transit encryption keys.Returns union: either
IResolvableorCfnFlowOutput.FlowTransitEncryptionKeyConfigurationProperty- See Also:
-
getEncryptionKeyType
- See Also:
-
builder
-