interface EncodingConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnFlow.EncodingConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnFlow_EncodingConfigProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnFlow.EncodingConfigProperty |
Python | aws_cdk.aws_mediaconnect.CfnFlow.EncodingConfigProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnFlow » EncodingConfigProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediaconnect as mediaconnect } from 'aws-cdk-lib';
const encodingConfigProperty: mediaconnect.CfnFlow.EncodingConfigProperty = {
encodingProfile: 'encodingProfile',
videoMaxBitrate: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| encoding | string | The encoding profile to use when transcoding the NDI source to a Transport Stream. |
| video | number | The maximum video bitrate to use when transcoding the NDI source to a Transport Stream. |
encodingProfile?
Type:
string
(optional)
The encoding profile to use when transcoding the NDI source to a Transport Stream.
You can change this value while a flow is running.
videoMaxBitrate?
Type:
number
(optional)
The maximum video bitrate to use when transcoding the NDI source to a Transport Stream.
This parameter enables you to override the default video bitrate within the encoding profile's supported range. The supported range is 10,000,000 - 50,000,000 bits per second (bps). If you do not specify a value, MediaConnect uses the default value of 20,000,000 bps.

.NET
Go
Java
Python
TypeScript