interface ArchiveGroupSettingsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.MediaLive.CfnChannel.ArchiveGroupSettingsProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_ArchiveGroupSettingsProperty |
![]() | software.amazon.awscdk.services.medialive.CfnChannel.ArchiveGroupSettingsProperty |
![]() | aws_cdk.aws_medialive.CfnChannel.ArchiveGroupSettingsProperty |
![]() | aws-cdk-lib » aws_medialive » CfnChannel » 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 { aws_medialive as medialive } from 'aws-cdk-lib';
const archiveGroupSettingsProperty: medialive.CfnChannel.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.