Interface DatasetContentSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DatasetContentSummary.Builder,DatasetContentSummary>,SdkBuilder<DatasetContentSummary.Builder,DatasetContentSummary>,SdkPojo
- Enclosing class:
- DatasetContentSummary
public static interface DatasetContentSummary.Builder extends SdkPojo, CopyableBuilder<DatasetContentSummary.Builder,DatasetContentSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DatasetContentSummary.BuildercompletionTime(Instant completionTime)The time the dataset content status was updated to SUCCEEDED or FAILED.DatasetContentSummary.BuildercreationTime(Instant creationTime)The actual time the creation of the dataset contents was started.DatasetContentSummary.BuilderscheduleTime(Instant scheduleTime)The time the creation of the dataset contents was scheduled to start.default DatasetContentSummary.Builderstatus(Consumer<DatasetContentStatus.Builder> status)The status of the dataset contents.DatasetContentSummary.Builderstatus(DatasetContentStatus status)The status of the dataset contents.DatasetContentSummary.Builderversion(String version)The version of the dataset contents.-
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
-
version
DatasetContentSummary.Builder version(String version)
The version of the dataset contents.
- Parameters:
version- The version of the dataset contents.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
DatasetContentSummary.Builder status(DatasetContentStatus status)
The status of the dataset contents.
- Parameters:
status- The status of the dataset contents.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
default DatasetContentSummary.Builder status(Consumer<DatasetContentStatus.Builder> status)
The status of the dataset contents.
This is a convenience method that creates an instance of theDatasetContentStatus.Builderavoiding the need to create one manually viaDatasetContentStatus.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tostatus(DatasetContentStatus).- Parameters:
status- a consumer that will call methods onDatasetContentStatus.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
status(DatasetContentStatus)
-
creationTime
DatasetContentSummary.Builder creationTime(Instant creationTime)
The actual time the creation of the dataset contents was started.
- Parameters:
creationTime- The actual time the creation of the dataset contents was started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scheduleTime
DatasetContentSummary.Builder scheduleTime(Instant scheduleTime)
The time the creation of the dataset contents was scheduled to start.
- Parameters:
scheduleTime- The time the creation of the dataset contents was scheduled to start.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
completionTime
DatasetContentSummary.Builder completionTime(Instant completionTime)
The time the dataset content status was updated to SUCCEEDED or FAILED.
- Parameters:
completionTime- The time the dataset content status was updated to SUCCEEDED or FAILED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-