interface SrtDecryptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterInput.SrtDecryptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterInput_SrtDecryptionConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterInput.SrtDecryptionConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterInput.SrtDecryptionConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterInput » SrtDecryptionConfigurationProperty |
Contains the configuration settings for decrypting SRT streams, including the encryption key details and decryption parameters.
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 srtDecryptionConfigurationProperty: mediaconnect.CfnRouterInput.SrtDecryptionConfigurationProperty = {
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
The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.

.NET
Go
Java
Python
TypeScript