Interface CfnFlowOutputPropsMixin.EncryptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFlowOutputPropsMixin.EncryptionProperty.Jsii$Proxy
- Enclosing class:
CfnFlowOutputPropsMixin
@Stability(Stable)
public static interface CfnFlowOutputPropsMixin.EncryptionProperty
extends software.amazon.jsii.JsiiSerializable
Encryption information.
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.*;
EncryptionProperty encryptionProperty = EncryptionProperty.builder()
.algorithm("algorithm")
.keyType("keyType")
.roleArn("roleArn")
.secretArn("secretArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnFlowOutputPropsMixin.EncryptionPropertystatic final classAn implementation forCfnFlowOutputPropsMixin.EncryptionProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe type of algorithm that is used for static key encryption (such as aes128, aes192, or aes256).default StringThe type of key that is used for the encryption.default StringThe ARN of the role that you created during setup (when you set up MediaConnect as a trusted entity).default StringThe ARN of the secret that you created in AWS Secrets Manager to store the encryption key.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAlgorithm
The type of algorithm that is used for static key encryption (such as aes128, aes192, or aes256).If you are using SPEKE or SRT-password encryption, this property must be left blank.
- See Also:
-
getKeyType
The type of key that is used for the encryption.If you don't specify a
keyTypevalue, the service uses the default setting (static-key). Valid key types are:static-key,speke, andsrt-password.Default: - "static-key"
- See Also:
-
getRoleArn
The ARN of the role that you created during setup (when you set up MediaConnect as a trusted entity).- See Also:
-
getSecretArn
The ARN of the secret that you created in AWS Secrets Manager to store the encryption key.This parameter is required for static key encryption and is not valid for SPEKE encryption.
- See Also:
-
builder
-