You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::LexModelBuildingService::Types::GetUtterancesViewRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::GetUtterancesViewRequest
- Defined in:
- (unknown)
Overview
When passing GetUtterancesViewRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
bot_name: "BotName", # required
bot_versions: ["Version"], # required
status_type: "Detected", # required, accepts Detected, Missed
}
Instance Attribute Summary collapse
-
#bot_name ⇒ String
The name of the bot for which utterance information should be returned.
-
#bot_versions ⇒ Array<String>
An array of bot versions for which utterance information should be returned.
-
#status_type ⇒ String
To return utterances that were recognized and handled, use
Detected
.
Instance Attribute Details
#bot_name ⇒ String
The name of the bot for which utterance information should be returned.
#bot_versions ⇒ Array<String>
An array of bot versions for which utterance information should be returned. The limit is 5 versions per request.
#status_type ⇒ String
To return utterances that were recognized and handled, use Detected
.
To return utterances that were not recognized, use Missed
.
Possible values:
- Detected
- Missed