interface InputSpecificationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.MediaLive.CfnChannel.InputSpecificationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_InputSpecificationProperty |
![]() | software.amazon.awscdk.services.medialive.CfnChannel.InputSpecificationProperty |
![]() | aws_cdk.aws_medialive.CfnChannel.InputSpecificationProperty |
![]() | aws-cdk-lib » 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 { aws_medialive as medialive } from 'aws-cdk-lib';
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.