Interface StatusSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StatusSummary.Builder,StatusSummary>,SdkBuilder<StatusSummary.Builder,StatusSummary>,SdkPojo
- Enclosing class:
- StatusSummary
public static interface StatusSummary.Builder extends SdkPojo, CopyableBuilder<StatusSummary.Builder,StatusSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StatusSummary.BuilderlastUpdatedAt(Instant lastUpdatedAt)The datetime stamp when the status was last updated.StatusSummary.Builderstatus(String status)The current status.StatusSummary.Builderstatus(Status status)The current status.StatusSummary.BuilderstatusDetails(Map<String,String> statusDetails)Details about the status.StatusSummary.BuilderstatusMessage(String statusMessage)When applicable, returns an informational message relevant to the current status and status type of the status summary object.StatusSummary.BuilderstatusType(String statusType)The type of a status summary.StatusSummary.BuilderstatusType(StatusType statusType)The type of a status summary.-
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
-
lastUpdatedAt
StatusSummary.Builder lastUpdatedAt(Instant lastUpdatedAt)
The datetime stamp when the status was last updated.
- Parameters:
lastUpdatedAt- The datetime stamp when the status was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
StatusSummary.Builder status(String status)
The current status.
-
status
StatusSummary.Builder status(Status status)
The current status.
-
statusDetails
StatusSummary.Builder statusDetails(Map<String,String> statusDetails)
Details about the status.
- Parameters:
statusDetails- Details about the status.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statusMessage
StatusSummary.Builder statusMessage(String statusMessage)
When applicable, returns an informational message relevant to the current status and status type of the status summary object. We don't recommend implementing parsing logic around this value since the messages returned can vary in format.
- Parameters:
statusMessage- When applicable, returns an informational message relevant to the current status and status type of the status summary object. We don't recommend implementing parsing logic around this value since the messages returned can vary in format.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
statusType
StatusSummary.Builder statusType(String statusType)
The type of a status summary.
- Parameters:
statusType- The type of a status summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StatusType,StatusType
-
statusType
StatusSummary.Builder statusType(StatusType statusType)
The type of a status summary.
- Parameters:
statusType- The type of a status summary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StatusType,StatusType
-
-