Interface KeywordMatchConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<KeywordMatchConfiguration.Builder,KeywordMatchConfiguration>,SdkBuilder<KeywordMatchConfiguration.Builder,KeywordMatchConfiguration>,SdkPojo
- Enclosing class:
- KeywordMatchConfiguration
public static interface KeywordMatchConfiguration.Builder extends SdkPojo, CopyableBuilder<KeywordMatchConfiguration.Builder,KeywordMatchConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KeywordMatchConfiguration.Builderkeywords(String... keywords)The keywords or phrases that you want to match.KeywordMatchConfiguration.Builderkeywords(Collection<String> keywords)The keywords or phrases that you want to match.KeywordMatchConfiguration.Buildernegate(Boolean negate)Matches keywords or phrases on their presence or absence.KeywordMatchConfiguration.BuilderruleName(String ruleName)The name of the keyword match rule.-
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
-
ruleName
KeywordMatchConfiguration.Builder ruleName(String ruleName)
The name of the keyword match rule.
- Parameters:
ruleName- The name of the keyword match rule.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keywords
KeywordMatchConfiguration.Builder keywords(Collection<String> keywords)
The keywords or phrases that you want to match.
- Parameters:
keywords- The keywords or phrases that you want to match.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
keywords
KeywordMatchConfiguration.Builder keywords(String... keywords)
The keywords or phrases that you want to match.
- Parameters:
keywords- The keywords or phrases that you want to match.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
negate
KeywordMatchConfiguration.Builder negate(Boolean negate)
Matches keywords or phrases on their presence or absence. If set to
TRUE, the rule matches when all the specified keywords or phrases are absent. Default:FALSE.- Parameters:
negate- Matches keywords or phrases on their presence or absence. If set toTRUE, the rule matches when all the specified keywords or phrases are absent. Default:FALSE.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-