aws-cdk-lib.aws_medialive.CfnChannel.InputSpecificationProperty

interface InputSpecificationProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaLive.CfnChannel.InputSpecificationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_InputSpecificationProperty
Javasoftware.amazon.awscdk.services.medialive.CfnChannel.InputSpecificationProperty
Pythonaws_cdk.aws_medialive.CfnChannel.InputSpecificationProperty
TypeScript 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

NameTypeDescription
codec?stringThe codec to include in the input specification for this channel.
maximumBitrate?stringThe maximum input bitrate for any input attached to this channel.
resolution?stringThe 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.