interface VbrRateControlProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.VbrRateControlProps |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#VbrRateControlProps |
Java | software.amazon.awscdk.services.medialive.alpha.VbrRateControlProps |
Python | aws_cdk.aws_medialive_alpha.VbrRateControlProps |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป VbrRateControlProps |
Properties for VBR rate control.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
import * as cdk from 'aws-cdk-lib';
declare const bitrate: cdk.Bitrate;
const vbrRateControlProps: medialive_alpha.VbrRateControlProps = {
bitrate: bitrate,
maxBitrate: bitrate,
};
Properties
| Name | Type | Description |
|---|---|---|
| bitrate | Bitrate | The average bitrate. |
| max | Bitrate | The maximum bitrate. |
bitrate
Type:
Bitrate
The average bitrate.
maxBitrate
Type:
Bitrate
The maximum bitrate.

.NET
Go
Java
Python
TypeScript (