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