Interface UsageAmount.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UsageAmount.Builder,UsageAmount>,SdkBuilder<UsageAmount.Builder,UsageAmount>,SdkPojo
- Enclosing class:
- UsageAmount
public static interface UsageAmount.Builder extends SdkPojo, CopyableBuilder<UsageAmount.Builder,UsageAmount>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UsageAmount.Builderamount(Double amount)The usage amount for the period.UsageAmount.BuilderstartHour(Instant startHour)The start hour of the usage period.-
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
-
startHour
UsageAmount.Builder startHour(Instant startHour)
The start hour of the usage period.
- Parameters:
startHour- The start hour of the usage period.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
amount
UsageAmount.Builder amount(Double amount)
The usage amount for the period.
- Parameters:
amount- The usage amount for the period.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-