interface ArchiveGroupSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPropsMixin.ArchiveGroupSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPropsMixin_ArchiveGroupSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPropsMixin.ArchiveGroupSettingsProperty |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPropsMixin.ArchiveGroupSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPropsMixin » ArchiveGroupSettingsProperty |
The settings for an archive output group.
The parent of this entity is OutputGroupSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const archiveGroupSettingsProperty: medialive_mixins.CfnChannelPropsMixin.ArchiveGroupSettingsProperty = {
archiveCdnSettings: {
archiveS3Settings: {
cannedAcl: 'cannedAcl',
},
},
destination: {
destinationRefId: 'destinationRefId',
},
rolloverInterval: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| archive | IResolvable | Archive | Settings to configure the destination of an Archive output. |
| destination? | IResolvable | Output | A directory and base file name where archive files should be written. |
| rollover | number | The number of seconds to write to an archive file before closing and starting a new one. |
archiveCdnSettings?
Type:
IResolvable | Archive
(optional)
Settings to configure the destination of an Archive output.
destination?
Type:
IResolvable | Output
(optional)
A directory and base file name where archive files should be written.
rolloverInterval?
Type:
number
(optional)
The number of seconds to write to an archive file before closing and starting a new one.

.NET
Go
Java
Python
TypeScript