interface CfnRecordingConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IVS.Mixins.CfnRecordingConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsivs/mixins#CfnRecordingConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ivs.mixins.CfnRecordingConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_ivs.mixins.CfnRecordingConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ivs » mixins » CfnRecordingConfigurationMixinProps |
Properties for CfnRecordingConfigurationPropsMixin.
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 cfnRecordingConfigurationMixinProps: ivs_mixins.CfnRecordingConfigurationMixinProps = {
destinationConfiguration: {
s3: {
bucketName: 'bucketName',
},
},
name: 'name',
recordingReconnectWindowSeconds: 123,
renditionConfiguration: {
renditions: ['renditions'],
renditionSelection: 'renditionSelection',
},
tags: [{
key: 'key',
value: 'value',
}],
thumbnailConfiguration: {
recordingMode: 'recordingMode',
resolution: 'resolution',
storage: ['storage'],
targetIntervalSeconds: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | IResolvable | Destination | A destination configuration describes an S3 bucket where recorded video will be stored. |
| name? | string | Recording-configuration name. |
| recording | number | If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together. |
| rendition | IResolvable | Rendition | A rendition configuration describes which renditions should be recorded for a stream. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| thumbnail | IResolvable | Thumbnail | A thumbnail configuration enables/disables the recording of thumbnails for a live session and controls the interval at which thumbnails are generated for the live session. |
destinationConfiguration?
Type:
IResolvable | Destination
(optional)
A destination configuration describes an S3 bucket where recorded video will be stored.
See the DestinationConfiguration property type for more information.
name?
Type:
string
(optional)
Recording-configuration name.
The value does not need to be unique.
recordingReconnectWindowSeconds?
Type:
number
(optional, default: 0)
If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together.
Default : 0
renditionConfiguration?
Type:
IResolvable | Rendition
(optional)
A rendition configuration describes which renditions should be recorded for a stream.
See the RenditionConfiguration property type for more information.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .
thumbnailConfiguration?
Type:
IResolvable | Thumbnail
(optional)
A thumbnail configuration enables/disables the recording of thumbnails for a live session and controls the interval at which thumbnails are generated for the live session.
See the ThumbnailConfiguration property type for more information.

.NET
Go
Java
Python
TypeScript