interface EncryptionProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.MediaConnect.CfnFlowOutput.EncryptionProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnFlowOutput_EncryptionProperty |
![]() | software.amazon.awscdk.services.mediaconnect.CfnFlowOutput.EncryptionProperty |
![]() | aws_cdk.aws_mediaconnect.CfnFlowOutput.EncryptionProperty |
![]() | aws-cdk-lib » aws_mediaconnect » CfnFlowOutput » EncryptionProperty |
Information about the encryption of the flow.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediaconnect as mediaconnect } from 'aws-cdk-lib';
const encryptionProperty: mediaconnect.CfnFlowOutput.EncryptionProperty = {
roleArn: 'roleArn',
secretArn: 'secretArn',
// the properties below are optional
algorithm: 'algorithm',
keyType: 'keyType',
};
Properties
Name | Type | Description |
---|---|---|
role | string | The Amazon Resource Name (ARN) of the role that you created during setup (when you set up MediaConnect as a trusted entity). |
secret | string | The ARN of the secret that you created in AWS Secrets Manager to store the encryption key. |
algorithm? | string | The type of algorithm that is used for static key encryption (such as aes128, aes192, or aes256). |
key | string | The type of key that is used for the encryption. |
roleArn
Type:
string
The Amazon Resource Name (ARN) of the role that you created during setup (when you set up MediaConnect as a trusted entity).
secretArn
Type:
string
The ARN of the secret that you created in AWS Secrets Manager to store the encryption key.
algorithm?
Type:
string
(optional)
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.
keyType?
Type:
string
(optional, default: "static-key")
The type of key that is used for the encryption.
If you don't specify a keyType
value, the service uses the default setting ( static-key
). Valid key types are: static-key
, speke
, and srt-password
.