Class: Aws::LexModelBuildingService::Types::Message
- Inherits:
-
Struct
- Object
- Struct
- Aws::LexModelBuildingService::Types::Message
- Defined in:
- gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb
Overview
The message object that provides the message text and its type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#content ⇒ String
The text of the message.
-
#content_type ⇒ String
The content type of the message string.
-
#group_number ⇒ Integer
Identifies the message group that the message belongs to.
Instance Attribute Details
#content ⇒ String
The text of the message.
2674 2675 2676 2677 2678 2679 2680 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2674 class Message < Struct.new( :content_type, :content, :group_number) SENSITIVE = [] include Aws::Structure end |
#content_type ⇒ String
The content type of the message string.
2674 2675 2676 2677 2678 2679 2680 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2674 class Message < Struct.new( :content_type, :content, :group_number) SENSITIVE = [] include Aws::Structure end |
#group_number ⇒ Integer
Identifies the message group that the message belongs to. When a group is assigned to a message, Amazon Lex returns one message from each group in the response.
2674 2675 2676 2677 2678 2679 2680 |
# File 'gems/aws-sdk-lexmodelbuildingservice/lib/aws-sdk-lexmodelbuildingservice/types.rb', line 2674 class Message < Struct.new( :content_type, :content, :group_number) SENSITIVE = [] include Aws::Structure end |