interface SrtEncryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnRouterOutputPropsMixin.SrtEncryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnRouterOutputPropsMixin_SrtEncryptionConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnRouterOutputPropsMixin.SrtEncryptionConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterOutputPropsMixin.SrtEncryptionConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnRouterOutputPropsMixin » SrtEncryptionConfigurationProperty |
Contains the configuration settings for encrypting SRT streams, including the encryption key details and encryption parameters.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const srtEncryptionConfigurationProperty: mediaconnect_mixins.CfnRouterOutputPropsMixin.SrtEncryptionConfigurationProperty = {
encryptionKey: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| encryption | IResolvable | Secrets | The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN. |
encryptionKey?
Type:
IResolvable | Secrets
(optional)
The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.

.NET
Go
Java
Python
TypeScript