Class: AWS::SQS::Queue::SentMessage

Inherits:
Object
  • Object
show all
Defined in:
lib/aws/sqs/queue.rb

Overview

Represents a message sent using #send_message.

Instance Attribute Summary collapse

Instance Attribute Details

#md5String

Returns an MD5 digest of the message body string. You can use this to verify that SQS received your message correctly.

Returns:

  • (String)

    Returns an MD5 digest of the message body string. You can use this to verify that SQS received your message correctly.



72
73
74
# File 'lib/aws/sqs/queue.rb', line 72

def md5
  @md5
end

#message_idString Also known as: id

Returns the message ID.

Returns:

  • (String)

    Returns the message ID.



65
66
67
# File 'lib/aws/sqs/queue.rb', line 65

def message_id
  @message_id
end