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.



77
78
79
# File 'lib/aws/sqs/queue.rb', line 77

def md5
  @md5
end

#message_idString Also known as: id

Returns the message ID.

Returns:

  • (String)

    Returns the message ID.



70
71
72
# File 'lib/aws/sqs/queue.rb', line 70

def message_id
  @message_id
end