interface CfnEncoderConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IVS.Mixins.CfnEncoderConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsivs/mixins#CfnEncoderConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ivs.mixins.CfnEncoderConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_ivs.mixins.CfnEncoderConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ivs » mixins » CfnEncoderConfigurationMixinProps |
Properties for CfnEncoderConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ivs_mixins } from '@aws-cdk/mixins-preview/aws-ivs';
const cfnEncoderConfigurationMixinProps: ivs_mixins.CfnEncoderConfigurationMixinProps = {
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
video: {
bitrate: 123,
framerate: 123,
height: 123,
width: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | Encoder cnfiguration name. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| video? | IResolvable | Video | Video configuration. |
name?
Type:
string
(optional)
Encoder cnfiguration name.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .
video?
Type:
IResolvable | Video
(optional)
Video configuration.
Default: video resolution 1280x720, bitrate 2500 kbps, 30 fps. See the Video property type for more information.

.NET
Go
Java
Python
TypeScript