class KeyType
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.KeyType |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#KeyType |
Java | software.amazon.awscdk.services.mediaconnect.alpha.KeyType |
Python | aws_cdk.aws_mediaconnect_alpha.KeyType |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป KeyType |
Key types used across AWS Elemental MediaConnect.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
const keyType = mediaconnect_alpha.KeyType.of('value');
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The key type string value. |
| static SRT_PASSWORD | Key | Option for SRT Password. |
| static STATIC_KEY | Key | Option for Static Key. |
value
Type:
string
The key type string value.
static SRT_PASSWORD
Type:
Key
Option for SRT Password.
static STATIC_KEY
Type:
Key
Option for Static Key.
Methods
| Name | Description |
|---|---|
| to | Returns the string value. |
| static of(value) | Use a custom key type value. |
toString()
public toString(): string
Returns
string
Returns the string value.
static of(value)
public static of(value: string): KeyType
Parameters
- value
stringโ The key type string value.
Returns
Use a custom key type value.

.NET
Go
Java
Python
TypeScript (