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