Interface BillInterval.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<BillInterval.Builder,BillInterval>,SdkBuilder<BillInterval.Builder,BillInterval>,SdkPojo
- Enclosing class:
- BillInterval
public static interface BillInterval.Builder extends SdkPojo, CopyableBuilder<BillInterval.Builder,BillInterval>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BillInterval.Builderend(Instant end)The end date and time of the interval.BillInterval.Builderstart(Instant start)The start date and time of the interval.-
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
-
start
BillInterval.Builder start(Instant start)
The start date and time of the interval.
- Parameters:
start- The start date and time of the interval.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
end
BillInterval.Builder end(Instant end)
The end date and time of the interval.
- Parameters:
end- The end date and time of the interval.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-