Interface CfnChannel.ArchiveCdnSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannel.ArchiveCdnSettingsProperty.Jsii$Proxy
Enclosing class:
CfnChannel

@Stability(Stable) public static interface CfnChannel.ArchiveCdnSettingsProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.medialive.*;
 ArchiveCdnSettingsProperty archiveCdnSettingsProperty = ArchiveCdnSettingsProperty.builder()
         .archiveS3Settings(ArchiveS3SettingsProperty.builder()
                 .cannedAcl("cannedAcl")
                 .build())
         .build();
 

See Also: