interface CfnEncoderConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IVS.CfnEncoderConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsivs#CfnEncoderConfigurationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ivs.CfnEncoderConfigurationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ivs.CfnEncoderConfigurationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ivs » 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 { aws_ivs as ivs } from '@aws-cdk/cfn-property-mixins';
const cfnEncoderConfigurationMixinProps: ivs.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