interface RenditionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IVS.CfnRecordingConfigurationPropsMixin.RenditionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsivs#CfnRecordingConfigurationPropsMixin_RenditionConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ivs.CfnRecordingConfigurationPropsMixin.RenditionConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_ivs.CfnRecordingConfigurationPropsMixin.RenditionConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ivs » CfnRecordingConfigurationPropsMixin » RenditionConfigurationProperty |
The RenditionConfiguration property type describes which renditions should be recorded for a stream.
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 renditionConfigurationProperty: ivs.CfnRecordingConfigurationPropsMixin.RenditionConfigurationProperty = {
renditions: ['renditions'],
renditionSelection: 'renditionSelection',
};
Properties
| Name | Type | Description |
|---|---|---|
| rendition | string | The set of renditions are recorded for a stream. |
| renditions? | string[] | A list of which renditions are recorded for a stream, if renditionSelection is CUSTOM ; |
renditionSelection?
Type:
string
(optional, default: "ALL")
The set of renditions are recorded for a stream.
For BASIC channels, the CUSTOM value has no effect. If CUSTOM is specified, a set of renditions can be specified in the renditions field. Default: ALL .
renditions?
Type:
string[]
(optional)
A list of which renditions are recorded for a stream, if renditionSelection is CUSTOM ;
otherwise, this field is irrelevant. The selected renditions are recorded if they are available during the stream. If a selected rendition is unavailable, the best available rendition is recorded. For details on the resolution dimensions of each rendition, see Auto-Record to Amazon S3 .

.NET
Go
Java
Python
TypeScript