Interface DataProcessingDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataProcessingDetails.Builder,DataProcessingDetails>,SdkBuilder<DataProcessingDetails.Builder,DataProcessingDetails>,SdkPojo
- Enclosing class:
- DataProcessingDetails
@Mutable @NotThreadSafe public static interface DataProcessingDetails.Builder extends SdkPojo, CopyableBuilder<DataProcessingDetails.Builder,DataProcessingDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataProcessingDetails.BuildercreationTime(Instant creationTime)The start time of the data processing sub-task of the job.DataProcessingDetails.BuilderlastModifiedTime(Instant lastModifiedTime)The latest update to the data processing sub-task of the job.DataProcessingDetails.Builderstatus(String status)The status of the data processing sub-task of the job.DataProcessingDetails.Builderstatus(JobStatusDetails status)The status of the data processing sub-task of the job.-
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
-
status
DataProcessingDetails.Builder status(String status)
The status of the data processing sub-task of the job.
- Parameters:
status- The status of the data processing sub-task of the job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JobStatusDetails,JobStatusDetails
-
status
DataProcessingDetails.Builder status(JobStatusDetails status)
The status of the data processing sub-task of the job.
- Parameters:
status- The status of the data processing sub-task of the job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
JobStatusDetails,JobStatusDetails
-
creationTime
DataProcessingDetails.Builder creationTime(Instant creationTime)
The start time of the data processing sub-task of the job.
- Parameters:
creationTime- The start time of the data processing sub-task of the job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastModifiedTime
DataProcessingDetails.Builder lastModifiedTime(Instant lastModifiedTime)
The latest update to the data processing sub-task of the job.
- Parameters:
lastModifiedTime- The latest update to the data processing sub-task of the job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-