Interface ClusterTimeline.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ClusterTimeline.Builder,ClusterTimeline>,SdkBuilder<ClusterTimeline.Builder,ClusterTimeline>,SdkPojo
- Enclosing class:
- ClusterTimeline
public static interface ClusterTimeline.Builder extends SdkPojo, CopyableBuilder<ClusterTimeline.Builder,ClusterTimeline>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClusterTimeline.BuildercreationDateTime(Instant creationDateTime)The creation date and time of the cluster.ClusterTimeline.BuilderendDateTime(Instant endDateTime)The date and time when the cluster was terminated.ClusterTimeline.BuilderreadyDateTime(Instant readyDateTime)The date and time when the cluster was ready to run steps.-
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
-
creationDateTime
ClusterTimeline.Builder creationDateTime(Instant creationDateTime)
The creation date and time of the cluster.
- Parameters:
creationDateTime- The creation date and time of the cluster.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
readyDateTime
ClusterTimeline.Builder readyDateTime(Instant readyDateTime)
The date and time when the cluster was ready to run steps.
- Parameters:
readyDateTime- The date and time when the cluster was ready to run steps.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endDateTime
ClusterTimeline.Builder endDateTime(Instant endDateTime)
The date and time when the cluster was terminated.
- Parameters:
endDateTime- The date and time when the cluster was terminated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-