interface StandardInputSpecificationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.StandardInputSpecificationProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#StandardInputSpecificationProps |
Java | software.amazon.awscdk.services.medialive.alpha.StandardInputSpecificationProps |
Python | aws_cdk.aws_medialive_alpha.StandardInputSpecificationProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป StandardInputSpecificationProps |
Properties shared by all input specifications.
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 inputCodec: medialive_alpha.InputCodec;
declare const inputMaximumBitrate: medialive_alpha.InputMaximumBitrate;
declare const inputResolution: medialive_alpha.InputResolution;
const standardInputSpecificationProps: medialive_alpha.StandardInputSpecificationProps = {
codec: inputCodec,
maximumBitrate: inputMaximumBitrate,
resolution: inputResolution,
};
Properties
| Name | Type | Description |
|---|---|---|
| codec? | Input | The codec of the input. |
| maximum | Input | The maximum bitrate of the input. |
| resolution? | Input | The resolution of the 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 (