Interface AnalyticsPathFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AnalyticsPathFilter.Builder,AnalyticsPathFilter>,SdkBuilder<AnalyticsPathFilter.Builder,AnalyticsPathFilter>,SdkPojo
- Enclosing class:
- AnalyticsPathFilter
public static interface AnalyticsPathFilter.Builder extends SdkPojo, CopyableBuilder<AnalyticsPathFilter.Builder,AnalyticsPathFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnalyticsPathFilter.Buildername(String name)The category by which to filter the intent paths.AnalyticsPathFilter.Buildername(AnalyticsCommonFilterName name)The category by which to filter the intent paths.AnalyticsPathFilter.Builderoperator(String operator)The operation by which to filter the category.AnalyticsPathFilter.Builderoperator(AnalyticsFilterOperator operator)The operation by which to filter the category.AnalyticsPathFilter.Buildervalues(String... values)An array containing the values of the category by which to apply the operator to filter the results.AnalyticsPathFilter.Buildervalues(Collection<String> values)An array containing the values of the category by which to apply the operator to filter the results.-
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
-
name
AnalyticsPathFilter.Builder name(String name)
The category by which to filter the intent paths. The descriptions for each option are as follows:
-
BotAlias– The name of the bot alias. -
BotVersion– The version of the bot. -
LocaleId– The locale of the bot. -
Modality– The modality of the session with the bot (audio, DTMF, or text). -
Channel– The channel that the bot is integrated with.
- Parameters:
name- The category by which to filter the intent paths. The descriptions for each option are as follows:-
BotAlias– The name of the bot alias. -
BotVersion– The version of the bot. -
LocaleId– The locale of the bot. -
Modality– The modality of the session with the bot (audio, DTMF, or text). -
Channel– The channel that the bot is integrated with.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalyticsCommonFilterName,AnalyticsCommonFilterName
-
-
name
AnalyticsPathFilter.Builder name(AnalyticsCommonFilterName name)
The category by which to filter the intent paths. The descriptions for each option are as follows:
-
BotAlias– The name of the bot alias. -
BotVersion– The version of the bot. -
LocaleId– The locale of the bot. -
Modality– The modality of the session with the bot (audio, DTMF, or text). -
Channel– The channel that the bot is integrated with.
- Parameters:
name- The category by which to filter the intent paths. The descriptions for each option are as follows:-
BotAlias– The name of the bot alias. -
BotVersion– The version of the bot. -
LocaleId– The locale of the bot. -
Modality– The modality of the session with the bot (audio, DTMF, or text). -
Channel– The channel that the bot is integrated with.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalyticsCommonFilterName,AnalyticsCommonFilterName
-
-
operator
AnalyticsPathFilter.Builder operator(String operator)
The operation by which to filter the category. The following operations are possible:
-
CO– Contains -
EQ– Equals -
GT– Greater than -
LT– Less than
The operators that each filter supports are listed below:
-
BotAlias–EQ. -
BotVersion–EQ. -
LocaleId–EQ. -
Modality–EQ. -
Channel–EQ.
- Parameters:
operator- The operation by which to filter the category. The following operations are possible:-
CO– Contains -
EQ– Equals -
GT– Greater than -
LT– Less than
The operators that each filter supports are listed below:
-
BotAlias–EQ. -
BotVersion–EQ. -
LocaleId–EQ. -
Modality–EQ. -
Channel–EQ.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalyticsFilterOperator,AnalyticsFilterOperator
-
-
operator
AnalyticsPathFilter.Builder operator(AnalyticsFilterOperator operator)
The operation by which to filter the category. The following operations are possible:
-
CO– Contains -
EQ– Equals -
GT– Greater than -
LT– Less than
The operators that each filter supports are listed below:
-
BotAlias–EQ. -
BotVersion–EQ. -
LocaleId–EQ. -
Modality–EQ. -
Channel–EQ.
- Parameters:
operator- The operation by which to filter the category. The following operations are possible:-
CO– Contains -
EQ– Equals -
GT– Greater than -
LT– Less than
The operators that each filter supports are listed below:
-
BotAlias–EQ. -
BotVersion–EQ. -
LocaleId–EQ. -
Modality–EQ. -
Channel–EQ.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalyticsFilterOperator,AnalyticsFilterOperator
-
-
values
AnalyticsPathFilter.Builder values(Collection<String> values)
An array containing the values of the category by which to apply the operator to filter the results. You can provide multiple values if the operator is
EQorCO. If you provide multiple values, you filter for results that equal/contain any of the values. For example, if thename,operator, andvaluesfields areModality,EQ, and[Speech, Text], the operation filters for results where the modality was eitherSpeechorText.- Parameters:
values- An array containing the values of the category by which to apply the operator to filter the results. You can provide multiple values if the operator isEQorCO. If you provide multiple values, you filter for results that equal/contain any of the values. For example, if thename,operator, andvaluesfields areModality,EQ, and[Speech, Text], the operation filters for results where the modality was eitherSpeechorText.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
values
AnalyticsPathFilter.Builder values(String... values)
An array containing the values of the category by which to apply the operator to filter the results. You can provide multiple values if the operator is
EQorCO. If you provide multiple values, you filter for results that equal/contain any of the values. For example, if thename,operator, andvaluesfields areModality,EQ, and[Speech, Text], the operation filters for results where the modality was eitherSpeechorText.- Parameters:
values- An array containing the values of the category by which to apply the operator to filter the results. You can provide multiple values if the operator isEQorCO. If you provide multiple values, you filter for results that equal/contain any of the values. For example, if thename,operator, andvaluesfields areModality,EQ, and[Speech, Text], the operation filters for results where the modality was eitherSpeechorText.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-