class SrtEncryptionType
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.SrtEncryptionType |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#SrtEncryptionType |
Java | software.amazon.awscdk.services.medialive.alpha.SrtEncryptionType |
Python | aws_cdk.aws_medialive_alpha.SrtEncryptionType |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป SrtEncryptionType |
SRT output encryption type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
const srtEncryptionType = medialive_alpha.SrtEncryptionType.AES128;
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static AES128 | Srt | AES-128 encryption. |
| static AES192 | Srt | AES-192 encryption. |
| static AES256 | Srt | AES-256 encryption. |
value
Type:
string
The underlying string value passed to CloudFormation.
static AES128
Type:
Srt
AES-128 encryption.
static AES192
Type:
Srt
AES-192 encryption.
static AES256
Type:
Srt
AES-256 encryption.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): SrtEncryptionType
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (