interface InputSpecificationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.MediaLive.CfnChannel.InputSpecificationProperty | 
|  Java | software.amazon.awscdk.services.medialive.CfnChannel.InputSpecificationProperty | 
|  Python | aws_cdk.aws_medialive.CfnChannel.InputSpecificationProperty | 
|  TypeScript | @aws-cdk/aws-medialive»CfnChannel»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 * as medialive from '@aws-cdk/aws-medialive';
const inputSpecificationProperty: medialive.CfnChannel.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.
