Interface InstanceStatusDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<InstanceStatusDetails.Builder,InstanceStatusDetails>,SdkBuilder<InstanceStatusDetails.Builder,InstanceStatusDetails>,SdkPojo
- Enclosing class:
- InstanceStatusDetails
public static interface InstanceStatusDetails.Builder extends SdkPojo, CopyableBuilder<InstanceStatusDetails.Builder,InstanceStatusDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InstanceStatusDetails.BuilderimpairedSince(Instant impairedSince)The time when a status check failed.InstanceStatusDetails.Buildername(String name)The type of instance status.InstanceStatusDetails.Buildername(StatusName name)The type of instance status.InstanceStatusDetails.Builderstatus(String status)The status.InstanceStatusDetails.Builderstatus(StatusType status)The status.-
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
-
impairedSince
InstanceStatusDetails.Builder impairedSince(Instant impairedSince)
The time when a status check failed. For an instance that was launched and impaired, this is the time when the instance was launched.
- Parameters:
impairedSince- The time when a status check failed. For an instance that was launched and impaired, this is the time when the instance was launched.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
InstanceStatusDetails.Builder name(String name)
The type of instance status.
- Parameters:
name- The type of instance status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StatusName,StatusName
-
name
InstanceStatusDetails.Builder name(StatusName name)
The type of instance status.
- Parameters:
name- The type of instance status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StatusName,StatusName
-
status
InstanceStatusDetails.Builder status(String status)
The status.
- Parameters:
status- The status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StatusType,StatusType
-
status
InstanceStatusDetails.Builder status(StatusType status)
The status.
- Parameters:
status- The status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StatusType,StatusType
-
-