Interface CfnFlow.FlowTransitEncryptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlow.FlowTransitEncryptionProperty.Jsii$Proxy
- Enclosing class:
CfnFlow
@Stability(Stable)
public static interface CfnFlow.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 forCfnFlow.FlowTransitEncryptionPropertystatic final classAn implementation forCfnFlow.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
IResolvableorCfnFlow.FlowTransitEncryptionKeyConfigurationProperty- See Also:
-
getEncryptionKeyType
- See Also:
-
builder
-