class SrtDecryptionAlgorithm
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.SrtDecryptionAlgorithm |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#SrtDecryptionAlgorithm |
Java | software.amazon.awscdk.services.medialive.alpha.SrtDecryptionAlgorithm |
Python | aws_cdk.aws_medialive_alpha.SrtDecryptionAlgorithm |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป SrtDecryptionAlgorithm |
The encryption algorithm 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 |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static AES128 | Srt | AES-128. |
| static AES192 | Srt | AES-192. |
| static AES256 | Srt | AES-256. |
value
Type:
string
The underlying string value passed to CloudFormation.
static AES128
Type:
Srt
AES-128.
static AES192
Type:
Srt
AES-192.
static AES256
Type:
Srt
AES-256.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): SrtDecryptionAlgorithm
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (