Class: Aws::LexModelBuildingService::Types::DeleteUtterancesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::DeleteUtterancesRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
Note:
When making an API call, you may pass DeleteUtterancesRequest data as a hash:
{
bot_name: "BotName", # required
user_id: "UserId", # required
}
Instance Attribute Summary collapse
-
#bot_name ⇒ String
The name of the bot that stored the utterances.
-
#user_id ⇒ String
The unique identifier for the user that made the utterances.
Instance Attribute Details
#bot_name ⇒ String
The name of the bot that stored the utterances.
793 794 795 796 797 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 793 class DeleteUtterancesRequest < Struct.new( :bot_name, :user_id) include Aws::Structure end |
#user_id ⇒ String
The unique identifier for the user that made the utterances. This is the user ID that was sent in the [PostContent] or [PostText] operation request that contained the utterance.
[1]: docs.aws.amazon.com/lex/latest/dg/API_runtime_PostContent.html [2]: docs.aws.amazon.com/lex/latest/dg/API_runtime_PostText.html
793 794 795 796 797 |
# File 'lib/aws-sdk-lexmodelbuildingservice/types.rb', line 793 class DeleteUtterancesRequest < Struct.new( :bot_name, :user_id) include Aws::Structure end |