Class: Aws::LexModelBuildingService::Types::GetUtterancesViewRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::GetUtterancesViewRequest
- Defined in:
- gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
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.
2381 2382 2383 2384 2385 2386 2387 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2381 class GetUtterancesViewRequest < Struct.new( :bot_name, :bot_versions, :status_type) SENSITIVE = [] include Aws::Structure end |
#bot_versions ⇒ Array<String>
An array of bot versions for which utterance information should be returned. The limit is 5 versions per request.
2381 2382 2383 2384 2385 2386 2387 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2381 class GetUtterancesViewRequest < Struct.new( :bot_name, :bot_versions, :status_type) SENSITIVE = [] include Aws::Structure end |
#status_type ⇒ String
To return utterances that were recognized and handled, use
Detected
. To return utterances that were not recognized, use
Missed
.
2381 2382 2383 2384 2385 2386 2387 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2381 class GetUtterancesViewRequest < Struct.new( :bot_name, :bot_versions, :status_type) SENSITIVE = [] include Aws::Structure end |