Interface ArchiveGroupSettings.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ArchiveGroupSettings.Builder,ArchiveGroupSettings>,SdkBuilder<ArchiveGroupSettings.Builder,ArchiveGroupSettings>,SdkPojo
- Enclosing class:
- ArchiveGroupSettings
public static interface ArchiveGroupSettings.Builder extends SdkPojo, CopyableBuilder<ArchiveGroupSettings.Builder,ArchiveGroupSettings>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ArchiveGroupSettings.BuilderarchiveCdnSettings(Consumer<ArchiveCdnSettings.Builder> archiveCdnSettings)Parameters that control interactions with the CDN.ArchiveGroupSettings.BuilderarchiveCdnSettings(ArchiveCdnSettings archiveCdnSettings)Parameters that control interactions with the CDN.default ArchiveGroupSettings.Builderdestination(Consumer<OutputLocationRef.Builder> destination)A directory and base filename where archive files should be written.ArchiveGroupSettings.Builderdestination(OutputLocationRef destination)A directory and base filename where archive files should be written.ArchiveGroupSettings.BuilderrolloverInterval(Integer rolloverInterval)Number of seconds to write to archive file before closing and starting a new one.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
archiveCdnSettings
ArchiveGroupSettings.Builder archiveCdnSettings(ArchiveCdnSettings archiveCdnSettings)
Parameters that control interactions with the CDN.- Parameters:
archiveCdnSettings- Parameters that control interactions with the CDN.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
archiveCdnSettings
default ArchiveGroupSettings.Builder archiveCdnSettings(Consumer<ArchiveCdnSettings.Builder> archiveCdnSettings)
Parameters that control interactions with the CDN. This is a convenience method that creates an instance of theArchiveCdnSettings.Builderavoiding the need to create one manually viaArchiveCdnSettings.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toarchiveCdnSettings(ArchiveCdnSettings).- Parameters:
archiveCdnSettings- a consumer that will call methods onArchiveCdnSettings.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
archiveCdnSettings(ArchiveCdnSettings)
-
destination
ArchiveGroupSettings.Builder destination(OutputLocationRef destination)
A directory and base filename where archive files should be written.- Parameters:
destination- A directory and base filename where archive files should be written.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
destination
default ArchiveGroupSettings.Builder destination(Consumer<OutputLocationRef.Builder> destination)
A directory and base filename where archive files should be written. This is a convenience method that creates an instance of theOutputLocationRef.Builderavoiding the need to create one manually viaOutputLocationRef.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todestination(OutputLocationRef).- Parameters:
destination- a consumer that will call methods onOutputLocationRef.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
destination(OutputLocationRef)
-
rolloverInterval
ArchiveGroupSettings.Builder rolloverInterval(Integer rolloverInterval)
Number of seconds to write to archive file before closing and starting a new one.- Parameters:
rolloverInterval- Number of seconds to write to archive file before closing and starting a new one.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-