Interface LastUpdate.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LastUpdate.Builder,LastUpdate>,SdkBuilder<LastUpdate.Builder,LastUpdate>,SdkPojo
- Enclosing class:
- LastUpdate
public static interface LastUpdate.Builder extends SdkPojo, CopyableBuilder<LastUpdate.Builder,LastUpdate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LastUpdate.Builderstatus(String status)The status of the last update.LastUpdate.Builderstatus(LastUpdateStatus status)The status of the last update.LastUpdate.BuilderstatusMessage(String statusMessage)Error message describing the last account settings update status, visible only if an error occurred.LastUpdate.BuildertargetQueryTCU(Integer targetQueryTCU)The number of TimeStream Compute Units (TCUs) requested in the last account settings update.-
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
-
targetQueryTCU
LastUpdate.Builder targetQueryTCU(Integer targetQueryTCU)
The number of TimeStream Compute Units (TCUs) requested in the last account settings update.
- Parameters:
targetQueryTCU- The number of TimeStream Compute Units (TCUs) requested in the last account settings update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
LastUpdate.Builder status(String status)
The status of the last update. Can be either
PENDING,FAILED, orSUCCEEDED.- Parameters:
status- The status of the last update. Can be eitherPENDING,FAILED, orSUCCEEDED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LastUpdateStatus,LastUpdateStatus
-
status
LastUpdate.Builder status(LastUpdateStatus status)
The status of the last update. Can be either
PENDING,FAILED, orSUCCEEDED.- Parameters:
status- The status of the last update. Can be eitherPENDING,FAILED, orSUCCEEDED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
LastUpdateStatus,LastUpdateStatus
-
statusMessage
LastUpdate.Builder statusMessage(String statusMessage)
Error message describing the last account settings update status, visible only if an error occurred.
- Parameters:
statusMessage- Error message describing the last account settings update status, visible only if an error occurred.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-