Interface MssPackage.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MssPackage.Builder,MssPackage>,SdkBuilder<MssPackage.Builder,MssPackage>,SdkPojo
- Enclosing class:
- MssPackage
public static interface MssPackage.Builder extends SdkPojo, CopyableBuilder<MssPackage.Builder,MssPackage>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default MssPackage.Builderencryption(Consumer<MssEncryption.Builder> encryption)Sets the value of the Encryption property for this object.MssPackage.Builderencryption(MssEncryption encryption)Sets the value of the Encryption property for this object.MssPackage.BuildermssManifests(Collection<MssManifest> mssManifests)A list of MSS manifest configurations.MssPackage.BuildermssManifests(Consumer<MssManifest.Builder>... mssManifests)A list of MSS manifest configurations.MssPackage.BuildermssManifests(MssManifest... mssManifests)A list of MSS manifest configurations.MssPackage.BuildersegmentDurationSeconds(Integer segmentDurationSeconds)The duration (in seconds) of each segment.-
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, sdkFields
-
-
-
-
Method Detail
-
encryption
MssPackage.Builder encryption(MssEncryption encryption)
Sets the value of the Encryption property for this object.- Parameters:
encryption- The new value for the Encryption property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
encryption
default MssPackage.Builder encryption(Consumer<MssEncryption.Builder> encryption)
Sets the value of the Encryption property for this object. This is a convenience method that creates an instance of theMssEncryption.Builderavoiding the need to create one manually viaMssEncryption.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toencryption(MssEncryption).- Parameters:
encryption- a consumer that will call methods onMssEncryption.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
encryption(MssEncryption)
-
mssManifests
MssPackage.Builder mssManifests(Collection<MssManifest> mssManifests)
A list of MSS manifest configurations.- Parameters:
mssManifests- A list of MSS manifest configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mssManifests
MssPackage.Builder mssManifests(MssManifest... mssManifests)
A list of MSS manifest configurations.- Parameters:
mssManifests- A list of MSS manifest configurations.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mssManifests
MssPackage.Builder mssManifests(Consumer<MssManifest.Builder>... mssManifests)
A list of MSS manifest configurations. This is a convenience method that creates an instance of theMssManifest.Builderavoiding the need to create one manually viaMssManifest.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#mssManifests(List.) - Parameters:
mssManifests- a consumer that will call methods onMssManifest.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#mssManifests(java.util.Collection)
-
segmentDurationSeconds
MssPackage.Builder segmentDurationSeconds(Integer segmentDurationSeconds)
The duration (in seconds) of each segment.- Parameters:
segmentDurationSeconds- The duration (in seconds) of each segment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-