Interface CfnChannel.ArchiveGroupSettingsProperty

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

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