Interface CfnChannelPropsMixin.ArchiveGroupSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannelPropsMixin.ArchiveGroupSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnChannelPropsMixin
@Stability(Stable)
public static interface CfnChannelPropsMixin.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.cfnpropertymixins.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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnChannelPropsMixin.ArchiveGroupSettingsPropertystatic final classAn implementation forCfnChannelPropsMixin.ArchiveGroupSettingsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectSettings to configure the destination of an Archive output.default ObjectA directory and base file name where archive files should be written.default NumberThe 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.Returns union: either
IResolvableorCfnChannelPropsMixin.ArchiveCdnSettingsProperty- See Also:
-
getDestination
A directory and base file name where archive files should be written.Returns union: either
IResolvableorCfnChannelPropsMixin.OutputLocationRefProperty- See Also:
-
getRolloverInterval
The number of seconds to write to an archive file before closing and starting a new one.- See Also:
-
builder
-