Interface ClickFeedback.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ClickFeedback.Builder,ClickFeedback>,SdkBuilder<ClickFeedback.Builder,ClickFeedback>,SdkPojo
- Enclosing class:
- ClickFeedback
public static interface ClickFeedback.Builder extends SdkPojo, CopyableBuilder<ClickFeedback.Builder,ClickFeedback>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClickFeedback.BuilderclickTime(Instant clickTime)The Unix timestamp when the result was clicked.ClickFeedback.BuilderresultId(String resultId)The identifier of the search result that was clicked.-
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
-
resultId
ClickFeedback.Builder resultId(String resultId)
The identifier of the search result that was clicked.
- Parameters:
resultId- The identifier of the search result that was clicked.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
clickTime
ClickFeedback.Builder clickTime(Instant clickTime)
The Unix timestamp when the result was clicked.
- Parameters:
clickTime- The Unix timestamp when the result was clicked.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-