class EncryptionAlgorithm
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.EncryptionAlgorithm |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#EncryptionAlgorithm |
Java | software.amazon.awscdk.services.mediaconnect.alpha.EncryptionAlgorithm |
Python | aws_cdk.aws_mediaconnect_alpha.EncryptionAlgorithm |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป EncryptionAlgorithm |
Encryption Algorithms used in AWS Elemental MediaConnect.
Example
declare const stack: Stack;
declare const flow: Flow;
declare const role: iam.IRole;
declare const secret: secretsmanager.ISecret;
const entitlement = new FlowEntitlement(stack, 'MyEntitlement', {
flow: flow,
description: 'Grant partner access to live feed',
subscribers: ['111122223333'],
encryption: {
role,
secret,
algorithm: EncryptionAlgorithm.AES256,
},
});
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The encryption algorithm string value. |
| static AES128 | Encryption | Option for AES128. |
| static AES192 | Encryption | Option for AES192. |
| static AES256 | Encryption | Option for AES256. |
value
Type:
string
The encryption algorithm string value.
static AES128
Type:
Encryption
Option for AES128.
static AES192
Type:
Encryption
Option for AES192.
static AES256
Type:
Encryption
Option for AES256.
Methods
| Name | Description |
|---|---|
| to | Returns the string value. |
| static of(value) | Use a custom encryption algorithm value. |
toString()
public toString(): string
Returns
string
Returns the string value.
static of(value)
public static of(value: string): EncryptionAlgorithm
Parameters
- value
stringโ The encryption algorithm string value.
Returns
Use a custom encryption algorithm value.

.NET
Go
Java
Python
TypeScript (