interface ArchiveCdnSettingsProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.MediaLive.CfnChannel.ArchiveCdnSettingsProperty | 
  Java | software.amazon.awscdk.services.medialive.CfnChannel.ArchiveCdnSettingsProperty | 
  Python | aws_cdk.aws_medialive.CfnChannel.ArchiveCdnSettingsProperty | 
  TypeScript  | @aws-cdk/aws-medialive » CfnChannel » ArchiveCdnSettingsProperty | 
Settings to configure the destination of an Archive output.
The parent of this entity is ArchiveGroupSettings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive from '@aws-cdk/aws-medialive';
const archiveCdnSettingsProperty: medialive.CfnChannel.ArchiveCdnSettingsProperty = {
  archiveS3Settings: {
    cannedAcl: 'cannedAcl',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| archive | IResolvable | Archive | Sets up Amazon S3 as the destination for this Archive output. | 
archiveS3Settings?
Type:
IResolvable | Archive
(optional)
Sets up Amazon S3 as the destination for this Archive output.

 .NET
 Java
 Python
 TypeScript