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