@Stability(value=Stable)
public static interface CfnFlowOutput.EncryptionProperty
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.*;
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 String |
getAlgorithm()
The type of algorithm that is used for the encryption (such as aes128, aes192, or aes256).
|
default String |
getKeyType()
The type of key that is used for the encryption.
|
String |
getRoleArn()
The Amazon Resource Name (ARN) of the role that you created during setup (when you set up MediaConnect as a trusted entity).
|
String |
getSecretArn()
The ARN of the secret that you created in AWS Secrets Manager to store the encryption key.
|
@Stability(value=Stable) @NotNull String getRoleArn()
@Stability(value=Stable) @NotNull String getSecretArn()
@Stability(value=Stable) @Nullable default String getAlgorithm()
@Stability(value=Stable) @Nullable default String getKeyType()
If you don't specify a keyType value, the service uses the default setting ( static-key ).
@Stability(value=Stable) static CfnFlowOutput.EncryptionProperty.Builder builder()
Copyright © 2022. All rights reserved.