Interface SearchStatus.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SearchStatus.Builder,SearchStatus>,SdkBuilder<SearchStatus.Builder,SearchStatus>,SdkPojo
- Enclosing class:
- SearchStatus
public static interface SearchStatus.Builder extends SdkPojo, CopyableBuilder<SearchStatus.Builder,SearchStatus>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchStatus.BuildercompletionTimestamp(Instant completionTimestamp)The timestamp of when the search completed (if finished).SearchStatus.BuildererrorMessage(String errorMessage)An error message if the search failed.SearchStatus.Builderstate(String state)The current state of the search job.SearchStatus.Builderstate(SearchState state)The current state of the search job.SearchStatus.BuildersubmissionTimestamp(Instant submissionTimestamp)The timestamp of when the search was submitted.-
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
-
completionTimestamp
SearchStatus.Builder completionTimestamp(Instant completionTimestamp)
The timestamp of when the search completed (if finished).
- Parameters:
completionTimestamp- The timestamp of when the search completed (if finished).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorMessage
SearchStatus.Builder errorMessage(String errorMessage)
An error message if the search failed.
- Parameters:
errorMessage- An error message if the search failed.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
state
SearchStatus.Builder state(String state)
The current state of the search job.
- Parameters:
state- The current state of the search job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SearchState,SearchState
-
state
SearchStatus.Builder state(SearchState state)
The current state of the search job.
- Parameters:
state- The current state of the search job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SearchState,SearchState
-
submissionTimestamp
SearchStatus.Builder submissionTimestamp(Instant submissionTimestamp)
The timestamp of when the search was submitted.
- Parameters:
submissionTimestamp- The timestamp of when the search was submitted.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-