aws-cdk-lib.aws_medialive.CfnChannel.ArchiveGroupSettingsProperty

interface ArchiveGroupSettingsProperty

LanguageType name
.NETAmazon.CDK.AWS.MediaLive.CfnChannel.ArchiveGroupSettingsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannel_ArchiveGroupSettingsProperty
Javasoftware.amazon.awscdk.services.medialive.CfnChannel.ArchiveGroupSettingsProperty
Pythonaws_cdk.aws_medialive.CfnChannel.ArchiveGroupSettingsProperty
TypeScript 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

NameTypeDescription
archiveCdnSettings?IResolvable | ArchiveCdnSettingsPropertySettings to configure the destination of an Archive output.
destination?IResolvable | OutputLocationRefPropertyA directory and base file name where archive files should be written.
rolloverInterval?numberThe number of seconds to write to an archive file before closing and starting a new one.

archiveCdnSettings?

Type: IResolvable | ArchiveCdnSettingsProperty (optional)

Settings to configure the destination of an Archive output.


destination?

Type: IResolvable | OutputLocationRefProperty (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.