Interface MssManifest.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MssManifest.Builder,MssManifest>,SdkBuilder<MssManifest.Builder,MssManifest>,SdkPojo
- Enclosing class:
- MssManifest
public static interface MssManifest.Builder extends SdkPojo, CopyableBuilder<MssManifest.Builder,MssManifest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description MssManifest.BuildermanifestName(String manifestName)An optional string to include in the name of the manifest.default MssManifest.BuilderstreamSelection(Consumer<StreamSelection.Builder> streamSelection)Sets the value of the StreamSelection property for this object.MssManifest.BuilderstreamSelection(StreamSelection streamSelection)Sets the value of the StreamSelection property for this object.-
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
-
manifestName
MssManifest.Builder manifestName(String manifestName)
An optional string to include in the name of the manifest.- Parameters:
manifestName- An optional string to include in the name of the manifest.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
streamSelection
MssManifest.Builder streamSelection(StreamSelection streamSelection)
Sets the value of the StreamSelection property for this object.- Parameters:
streamSelection- The new value for the StreamSelection property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
streamSelection
default MssManifest.Builder streamSelection(Consumer<StreamSelection.Builder> streamSelection)
Sets the value of the StreamSelection property for this object. This is a convenience method that creates an instance of theStreamSelection.Builderavoiding the need to create one manually viaStreamSelection.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostreamSelection(StreamSelection).- Parameters:
streamSelection- a consumer that will call methods onStreamSelection.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
streamSelection(StreamSelection)
-
-