interface SrtDecryptionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.SrtDecryptionProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#SrtDecryptionProps |
Java | software.amazon.awscdk.services.medialive.alpha.SrtDecryptionProps |
Python | aws_cdk.aws_medialive_alpha.SrtDecryptionProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป SrtDecryptionProps |
Properties for SRT decryption.
Example
declare const stack: Stack;
declare const passphrase: secretsmanager.ISecret;
const sg = new medialive.InputSecurityGroup(stack, 'SrtSg', {
allowlistRules: ['203.0.113.0/24'],
});
new medialive.Input(stack, 'SrtListenerInput', {
inputName: 'srt-listener',
input: medialive.InputConfiguration.srtListener({
inputSecurityGroups: [sg],
minimumLatency: Duration.millis(500),
streamId: 'my-stream-id',
decryption: {
algorithm: medialive.SrtDecryptionAlgorithm.AES256,
passphraseSecret: passphrase,
},
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| algorithm? | Srt | The encryption algorithm. |
| passphrase | ISecret | The Secrets Manager secret containing the passphrase used to decrypt the content. |
algorithm?
Type:
Srt
(optional, default: no algorithm)
The encryption algorithm.
passphraseSecret?
Type:
ISecret
(optional, default: no passphrase)
The Secrets Manager secret containing the passphrase used to decrypt the content.

.NET
Go
Java
Python
TypeScript (