class InputCodec
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.InputCodec |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#InputCodec |
Java | software.amazon.awscdk.services.medialive.alpha.InputCodec |
Python | aws_cdk.aws_medialive_alpha.InputCodec |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป InputCodec |
The codec for the input specification.
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 inputCodec = medialive_alpha.InputCodec.AVC;
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The underlying string value passed to CloudFormation. |
| static AVC | Input | AVC (H.264). |
| static HEVC | Input | HEVC (H.265). |
| static MPEG2 | Input | MPEG2. |
value
Type:
string
The underlying string value passed to CloudFormation.
static AVC
Type:
Input
AVC (H.264).
static HEVC
Type:
Input
HEVC (H.265).
static MPEG2
Type:
Input
MPEG2.
Methods
| Name | Description |
|---|---|
| static of(value) | A value not yet modelled by AWS CDK. |
static of(value)
public static of(value: string): InputCodec
Parameters
- value
string
Returns
A value not yet modelled by AWS CDK.

.NET
Go
Java
Python
TypeScript (