Interface OperationEntry.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<OperationEntry.Builder,OperationEntry>,SdkBuilder<OperationEntry.Builder,OperationEntry>,SdkPojo
- Enclosing class:
- OperationEntry
@Mutable @NotThreadSafe public static interface OperationEntry.Builder extends SdkPojo, CopyableBuilder<OperationEntry.Builder,OperationEntry>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description OperationEntry.BuilderoperationId(String operationId)The unique identifier for the operation.OperationEntry.BuilderoperationType(String operationType)The type of operation.OperationEntry.BuilderoperationType(OperationType operationType)The type of 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
-
operationType
OperationEntry.Builder operationType(String operationType)
The type of operation.
- Parameters:
operationType- The type of operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OperationType,OperationType
-
operationType
OperationEntry.Builder operationType(OperationType operationType)
The type of operation.
- Parameters:
operationType- The type of operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
OperationType,OperationType
-
operationId
OperationEntry.Builder operationId(String operationId)
The unique identifier for the operation.
- Parameters:
operationId- The unique identifier for the operation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-