Interface TimestampFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TimestampFilter.Builder,TimestampFilter>,SdkBuilder<TimestampFilter.Builder,TimestampFilter>,SdkPojo
- Enclosing class:
- TimestampFilter
public static interface TimestampFilter.Builder extends SdkPojo, CopyableBuilder<TimestampFilter.Builder,TimestampFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimestampFilter.BuilderrecordedAfter(Instant recordedAfter)The timestamp after which statistics should be included in the results.TimestampFilter.BuilderrecordedBefore(Instant recordedBefore)The timestamp before which statistics should be included in the results.-
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, sdkFields
-
-
-
-
Method Detail
-
recordedBefore
TimestampFilter.Builder recordedBefore(Instant recordedBefore)
The timestamp before which statistics should be included in the results.
- Parameters:
recordedBefore- The timestamp before which statistics should be included in the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recordedAfter
TimestampFilter.Builder recordedAfter(Instant recordedAfter)
The timestamp after which statistics should be included in the results.
- Parameters:
recordedAfter- The timestamp after which statistics should be included in the results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-