Interface StepTimeline.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<StepTimeline.Builder,StepTimeline>
,SdkBuilder<StepTimeline.Builder,StepTimeline>
,SdkPojo
- Enclosing class:
- StepTimeline
public static interface StepTimeline.Builder extends SdkPojo, CopyableBuilder<StepTimeline.Builder,StepTimeline>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StepTimeline.Builder
creationDateTime(Instant creationDateTime)
The date and time when the cluster step was created.StepTimeline.Builder
endDateTime(Instant endDateTime)
The date and time when the cluster step execution completed or failed.StepTimeline.Builder
startDateTime(Instant startDateTime)
The date and time when the cluster step execution started.-
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
-
creationDateTime
StepTimeline.Builder creationDateTime(Instant creationDateTime)
The date and time when the cluster step was created.
- Parameters:
creationDateTime
- The date and time when the cluster step was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
startDateTime
StepTimeline.Builder startDateTime(Instant startDateTime)
The date and time when the cluster step execution started.
- Parameters:
startDateTime
- The date and time when the cluster step execution started.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endDateTime
StepTimeline.Builder endDateTime(Instant endDateTime)
The date and time when the cluster step execution completed or failed.
- Parameters:
endDateTime
- The date and time when the cluster step execution completed or failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-