Interface SearchContactsTimeRange.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SearchContactsTimeRange.Builder,SearchContactsTimeRange>,SdkBuilder<SearchContactsTimeRange.Builder,SearchContactsTimeRange>,SdkPojo
- Enclosing class:
- SearchContactsTimeRange
public static interface SearchContactsTimeRange.Builder extends SdkPojo, CopyableBuilder<SearchContactsTimeRange.Builder,SearchContactsTimeRange>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchContactsTimeRange.BuilderendTime(Instant endTime)The end time of the time range.SearchContactsTimeRange.BuilderstartTime(Instant startTime)The start time of the time range.SearchContactsTimeRange.Buildertype(String type)The type of timestamp to search.SearchContactsTimeRange.Buildertype(SearchContactsTimeRangeType type)The type of timestamp to search.-
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
-
type
SearchContactsTimeRange.Builder type(String type)
The type of timestamp to search.
- Parameters:
type- The type of timestamp to search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SearchContactsTimeRangeType,SearchContactsTimeRangeType
-
type
SearchContactsTimeRange.Builder type(SearchContactsTimeRangeType type)
The type of timestamp to search.
- Parameters:
type- The type of timestamp to search.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SearchContactsTimeRangeType,SearchContactsTimeRangeType
-
startTime
SearchContactsTimeRange.Builder startTime(Instant startTime)
The start time of the time range.
- Parameters:
startTime- The start time of the time range.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
endTime
SearchContactsTimeRange.Builder endTime(Instant endTime)
The end time of the time range.
- Parameters:
endTime- The end time of the time range.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-