Interface OperationSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OperationSummary.Builder,OperationSummary>,SdkBuilder<OperationSummary.Builder,OperationSummary>,SdkPojo
- Enclosing class:
- OperationSummary
public static interface OperationSummary.Builder extends SdkPojo, CopyableBuilder<OperationSummary.Builder,OperationSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OperationSummary.Builderid(String id)The ID for an operation.OperationSummary.Builderstatus(String status)The status of the operation.OperationSummary.Builderstatus(OperationStatus status)The status of the operation.-
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
-
id
OperationSummary.Builder id(String id)
The ID for an operation.
- Parameters:
id- The ID for an operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
OperationSummary.Builder status(String status)
The status of the operation. Values include the following:
-
SUBMITTED: This is the initial state immediately after you submit a request.
-
PENDING: Cloud Map is performing the operation.
-
SUCCESS: The operation succeeded.
-
FAIL: The operation failed. For the failure reason, see
ErrorMessage.
- Parameters:
status- The status of the operation. Values include the following:-
SUBMITTED: This is the initial state immediately after you submit a request.
-
PENDING: Cloud Map is performing the operation.
-
SUCCESS: The operation succeeded.
-
FAIL: The operation failed. For the failure reason, see
ErrorMessage.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OperationStatus,OperationStatus
-
-
status
OperationSummary.Builder status(OperationStatus status)
The status of the operation. Values include the following:
-
SUBMITTED: This is the initial state immediately after you submit a request.
-
PENDING: Cloud Map is performing the operation.
-
SUCCESS: The operation succeeded.
-
FAIL: The operation failed. For the failure reason, see
ErrorMessage.
- Parameters:
status- The status of the operation. Values include the following:-
SUBMITTED: This is the initial state immediately after you submit a request.
-
PENDING: Cloud Map is performing the operation.
-
SUCCESS: The operation succeeded.
-
FAIL: The operation failed. For the failure reason, see
ErrorMessage.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OperationStatus,OperationStatus
-
-
-