Interface FilterTimestamp.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FilterTimestamp.Builder,FilterTimestamp>,SdkBuilder<FilterTimestamp.Builder,FilterTimestamp>,SdkPojo
- Enclosing class:
- FilterTimestamp
public static interface FilterTimestamp.Builder extends SdkPojo, CopyableBuilder<FilterTimestamp.Builder,FilterTimestamp>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FilterTimestamp.BuilderafterTimestamp(Instant afterTimestamp)Include results after this timestamp.FilterTimestamp.BuilderbeforeTimestamp(Instant beforeTimestamp)Include results before this timestamp.-
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
-
afterTimestamp
FilterTimestamp.Builder afterTimestamp(Instant afterTimestamp)
Include results after this timestamp.
- Parameters:
afterTimestamp- Include results after this timestamp.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
beforeTimestamp
FilterTimestamp.Builder beforeTimestamp(Instant beforeTimestamp)
Include results before this timestamp.
- Parameters:
beforeTimestamp- Include results before this timestamp.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-