Class: Aws::LexModelBuildingService::Types::UtteranceList
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::UtteranceList
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Provides a list of utterances that have been made to a specific version of your bot. The list contains a maximum of 100 utterances.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bot_version ⇒ String
The version of the bot that processed the list.
-
#utterances ⇒ Array<Types::UtteranceData>
One or more UtteranceData objects that contain information about the utterances that have been made to a bot.
Instance Attribute Details
#bot_version ⇒ String
The version of the bot that processed the list.
4542 4543 4544 4545 4546 4547 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 4542 class UtteranceList < Struct.new( :bot_version, :utterances) SENSITIVE = [] include Aws::Structure end |
#utterances ⇒ Array<Types::UtteranceData>
One or more UtteranceData objects that contain information about the utterances that have been made to a bot. The maximum number of object is 100.
4542 4543 4544 4545 4546 4547 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 4542 class UtteranceList < Struct.new( :bot_version, :utterances) SENSITIVE = [] include Aws::Structure end |