Class: Aws::LexModelsV2::Types::AnalyticsIntentStageFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelsV2::Types::AnalyticsIntentStageFilter
- Defined in:
- gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb
Overview
Contains fields describing a condition by which to filter the intent
stages. The expression may be understood as name operator
values. For example:
IntentName CO Book– The intent name contains the string "Book."BotVersion EQ 2– The bot version is equal to two.
The operators that each filter supports are listed below:
BotAlias–EQ.BotVersion–EQ.LocaleId–EQ.Modality–EQ.Channel–EQ.SessionId–EQ.OriginatingRequestId–EQ.IntentName–EQ,CO.IntentStageName–EQ,CO.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The category by which to filter the intent stages.
-
#operator ⇒ String
The operation by which to filter the category.
-
#values ⇒ Array<String>
An array containing the values of the category by which to apply the operator to filter the results.
Instance Attribute Details
#name ⇒ String
The category by which to filter the intent stages. 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.SessionId– The identifier of the session with the bot.OriginatingRequestId– The identifier of the first request in a session.IntentName– The name of the intent.IntentStageName– The stage in the intent.
657 658 659 660 661 662 663 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 657 class AnalyticsIntentStageFilter < Struct.new( :name, :operator, :values) SENSITIVE = [] include Aws::Structure end |
#operator ⇒ String
The operation by which to filter the category. The following operations are possible:
CO– ContainsEQ– EqualsGT– Greater thanLT– Less than
The operators that each filter supports are listed below:
BotAlias–EQ.BotVersion–EQ.LocaleId–EQ.Modality–EQ.Channel–EQ.SessionId–EQ.OriginatingRequestId–EQ.IntentName–EQ,CO.IntentStageName–EQ,CO.
657 658 659 660 661 662 663 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 657 class AnalyticsIntentStageFilter < Struct.new( :name, :operator, :values) SENSITIVE = [] include Aws::Structure end |
#values ⇒ Array<String>
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 EQ or CO. If you provide multiple values, you
filter for results that equal/contain any of the values. For
example, if the name, operator, and values fields are
Modality, EQ, and [Speech, Text], the operation filters for
results where the modality was either Speech or Text.
657 658 659 660 661 662 663 |
# File 'gems/aws-sdk-lexmodelsv2/lib/aws-sdk-lexmodelsv2/types.rb', line 657 class AnalyticsIntentStageFilter < Struct.new( :name, :operator, :values) SENSITIVE = [] include Aws::Structure end |