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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannel.ArchiveGroupSettingsProperty
static final class
An implementation forCfnChannel.ArchiveGroupSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Settings to configure the destination of an Archive output.default Object
A directory and base file name where archive files should be written.default Number
The number of seconds to write to an archive file before closing and starting a new one.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArchiveCdnSettings
Settings to configure the destination of an Archive output.- See Also:
-
getDestination
A directory and base file name where archive files should be written.- See Also:
-
getRolloverInterval
The number of seconds to write to an archive file before closing and starting a new one.- See Also:
-
builder
-