Class: AWS::SQS::Queue::SentMessage
- Inherits:
-
Object
- Object
- AWS::SQS::Queue::SentMessage
- Defined in:
- lib/aws/sqs/queue.rb
Overview
Represents a message sent using #send_message.
Instance Attribute Summary collapse
-
#md5 ⇒ String
Returns an MD5 digest of the message body string.
-
#message_id ⇒ String
(also: #id)
Returns the message ID.
Instance Attribute Details
#md5 ⇒ 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_id ⇒ String Also known as: id
Returns the message ID.
65 66 67 |
# File 'lib/aws/sqs/queue.rb', line 65 def @message_id end |