Interface TimePeriod.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<TimePeriod.Builder,,TimePeriod> SdkBuilder<TimePeriod.Builder,,TimePeriod> SdkPojo
- Enclosing class:
TimePeriod
@Mutable
@NotThreadSafe
public static interface TimePeriod.Builder
extends SdkPojo, CopyableBuilder<TimePeriod.Builder,TimePeriod>
-
Method Summary
Modifier and TypeMethodDescriptionendTimeExclusive(Instant endTimeExclusive) The end time of the period, exclusive.startTimeInclusive(Instant startTimeInclusive) The start time of the period, inclusive.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
startTimeInclusive
The start time of the period, inclusive. Events at or after this time are included.
- Parameters:
startTimeInclusive- The start time of the period, inclusive. Events at or after this time are included.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTimeExclusive
The end time of the period, exclusive. Events before this time are included.
- Parameters:
endTimeExclusive- The end time of the period, exclusive. Events before this time are included.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-