Interface CapacityAllocation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CapacityAllocation.Builder,CapacityAllocation>,SdkBuilder<CapacityAllocation.Builder,CapacityAllocation>,SdkPojo
- Enclosing class:
- CapacityAllocation
public static interface CapacityAllocation.Builder extends SdkPojo, CopyableBuilder<CapacityAllocation.Builder,CapacityAllocation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CapacityAllocation.BuilderrequestCompletionTime(Instant requestCompletionTime)The time when the capacity allocation request was completed.CapacityAllocation.BuilderrequestTime(Instant requestTime)The time when the capacity allocation was requested.CapacityAllocation.Builderstatus(String status)The status of the capacity allocation.CapacityAllocation.Builderstatus(CapacityAllocationStatus status)The status of the capacity allocation.CapacityAllocation.BuilderstatusMessage(String statusMessage)The status message of the capacity allocation.-
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
-
status
CapacityAllocation.Builder status(String status)
The status of the capacity allocation.
- Parameters:
status- The status of the capacity allocation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CapacityAllocationStatus,CapacityAllocationStatus
-
status
CapacityAllocation.Builder status(CapacityAllocationStatus status)
The status of the capacity allocation.
- Parameters:
status- The status of the capacity allocation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
CapacityAllocationStatus,CapacityAllocationStatus
-
statusMessage
CapacityAllocation.Builder statusMessage(String statusMessage)
The status message of the capacity allocation.
- Parameters:
statusMessage- The status message of the capacity allocation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
requestTime
CapacityAllocation.Builder requestTime(Instant requestTime)
The time when the capacity allocation was requested.
- Parameters:
requestTime- The time when the capacity allocation was requested.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
requestCompletionTime
CapacityAllocation.Builder requestCompletionTime(Instant requestCompletionTime)
The time when the capacity allocation request was completed.
- Parameters:
requestCompletionTime- The time when the capacity allocation request was completed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-