Class: Aws::Ivschat::Types::DeleteMessageRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Ivschat::Types::DeleteMessageRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ivschat/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
ID of the message to be deleted.
-
#reason ⇒ String
Reason for deleting the message.
-
#room_identifier ⇒ String
Identifier of the room where the message should be deleted.
Instance Attribute Details
#id ⇒ String
ID of the message to be deleted. This is the ‘Id` field in the received message (see [ Message (Subscribe)] in the Chat Messaging API).
[1]: docs.aws.amazon.com/ivs/latest/chatmsgapireference/actions-message-subscribe.html
357 358 359 360 361 362 363 |
# File 'lib/aws-sdk-ivschat/types.rb', line 357 class DeleteMessageRequest < Struct.new( :room_identifier, :id, :reason) SENSITIVE = [] include Aws::Structure end |
#reason ⇒ String
Reason for deleting the message.
357 358 359 360 361 362 363 |
# File 'lib/aws-sdk-ivschat/types.rb', line 357 class DeleteMessageRequest < Struct.new( :room_identifier, :id, :reason) SENSITIVE = [] include Aws::Structure end |
#room_identifier ⇒ String
Identifier of the room where the message should be deleted. Currently this must be an ARN.
357 358 359 360 361 362 363 |
# File 'lib/aws-sdk-ivschat/types.rb', line 357 class DeleteMessageRequest < Struct.new( :room_identifier, :id, :reason) SENSITIVE = [] include Aws::Structure end |