Interface KeywordInformation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<KeywordInformation.Builder,KeywordInformation>,SdkBuilder<KeywordInformation.Builder,KeywordInformation>,SdkPojo
- Enclosing class:
- KeywordInformation
public static interface KeywordInformation.Builder extends SdkPojo, CopyableBuilder<KeywordInformation.Builder,KeywordInformation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KeywordInformation.Builderkeyword(String keyword)The keyword as a string.KeywordInformation.BuilderkeywordAction(String keywordAction)The action to perform for the keyword.KeywordInformation.BuilderkeywordAction(KeywordAction keywordAction)The action to perform for the keyword.KeywordInformation.BuilderkeywordMessage(String keywordMessage)A custom message that can be used with the keyword.-
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
-
keyword
KeywordInformation.Builder keyword(String keyword)
The keyword as a string.
- Parameters:
keyword- The keyword as a string.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keywordMessage
KeywordInformation.Builder keywordMessage(String keywordMessage)
A custom message that can be used with the keyword.
- Parameters:
keywordMessage- A custom message that can be used with the keyword.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keywordAction
KeywordInformation.Builder keywordAction(String keywordAction)
The action to perform for the keyword.
- Parameters:
keywordAction- The action to perform for the keyword.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
KeywordAction,KeywordAction
-
keywordAction
KeywordInformation.Builder keywordAction(KeywordAction keywordAction)
The action to perform for the keyword.
- Parameters:
keywordAction- The action to perform for the keyword.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
KeywordAction,KeywordAction
-
-