Class: Aws::Ivschat::Types::DeleteMessageRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ivschat/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#idString

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

Returns:

  • (String)


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

#reasonString

Reason for deleting the message.

Returns:

  • (String)


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_identifierString

Identifier of the room where the message should be deleted. Currently this must be an ARN.

Returns:

  • (String)


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