interface InputSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.InputSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_InputSpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.InputSpecificationProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.InputSpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » InputSpecificationProperty |
The input specification for this channel.
It specifies the key characteristics of the inputs for this channel: the maximum bitrate, the resolution, and the codec.
This entity is at the top level in the channel.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const inputSpecificationProperty: medialive_mixins.CfnChannelPropsMixin.InputSpecificationProperty = {
codec: 'codec',
maximumBitrate: 'maximumBitrate',
resolution: 'resolution',
};
Properties
| Name | Type | Description |
|---|---|---|
| codec? | string | The codec to include in the input specification for this channel. |
| maximum | string | The maximum input bitrate for any input attached to this channel. |
| resolution? | string | The resolution for any input attached to this channel. |
codec?
Type:
string
(optional)
The codec to include in the input specification for this channel.
maximumBitrate?
Type:
string
(optional)
The maximum input bitrate for any input attached to this channel.
resolution?
Type:
string
(optional)
The resolution for any input attached to this channel.

.NET
Go
Java
Python
TypeScript