interface CdiInputSpecificationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.CdiInputSpecificationProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#CdiInputSpecificationProps |
Java | software.amazon.awscdk.services.medialive.alpha.CdiInputSpecificationProps |
Python | aws_cdk.aws_medialive_alpha.CdiInputSpecificationProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป CdiInputSpecificationProps |
Implements
Standard
Properties for a CDI 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';
declare const cdiInputResolution: medialive_alpha.CdiInputResolution;
declare const inputCodec: medialive_alpha.InputCodec;
declare const inputMaximumBitrate: medialive_alpha.InputMaximumBitrate;
declare const inputResolution: medialive_alpha.InputResolution;
const cdiInputSpecificationProps: medialive_alpha.CdiInputSpecificationProps = {
cdiResolution: cdiInputResolution,
codec: inputCodec,
maximumBitrate: inputMaximumBitrate,
resolution: inputResolution,
};
Properties
| Name | Type | Description |
|---|---|---|
| cdi | Cdi | The maximum resolution of the most demanding CDI input. |
| codec? | Input | The codec of the input. |
| maximum | Input | The maximum bitrate of the input. |
| resolution? | Input | The resolution of the input. |
cdiResolution?
Type:
Cdi
(optional, default: CdiInputResolution.HD)
The maximum resolution of the most demanding CDI input.
codec?
Type:
Input
(optional, default: InputCodec.AVC)
The codec of the input.
This should match the codec of your source content, not the output codec.
maximumBitrate?
Type:
Input
(optional, default: InputMaximumBitrate.MAX_20_MBPS)
The maximum bitrate of the input.
resolution?
Type:
Input
(optional, default: InputResolution.HD)
The resolution of the input.

.NET
Go
Java
Python
TypeScript (