public static interface CfnFlowOutput.EncryptionProperty
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.*; EncryptionProperty encryptionProperty = EncryptionProperty.builder() .roleArn("roleArn") .secretArn("secretArn") // the properties below are optional .algorithm("algorithm") .keyType("keyType") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnFlowOutput.EncryptionProperty.Builder
A builder for
CfnFlowOutput.EncryptionProperty |
static class |
CfnFlowOutput.EncryptionProperty.Jsii$Proxy
An implementation for
CfnFlowOutput.EncryptionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnFlowOutput.EncryptionProperty.Builder |
builder() |
default java.lang.String |
getAlgorithm()
The type of algorithm that is used for the encryption (such as aes128, aes192, or aes256).
|
default java.lang.String |
getKeyType()
The type of key that is used for the encryption.
|
java.lang.String |
getRoleArn()
The Amazon Resource Name (ARN) of the role that you created during setup (when you set up MediaConnect as a trusted entity).
|
java.lang.String |
getSecretArn()
The ARN of the secret that you created in AWS Secrets Manager to store the encryption key.
|
java.lang.String getRoleArn()
java.lang.String getSecretArn()
default java.lang.String getAlgorithm()
default java.lang.String getKeyType()
If you don't specify a keyType
value, the service uses the default setting ( static-key
).
static CfnFlowOutput.EncryptionProperty.Builder builder()