You are viewing documentation for version 1 of the AWS SDK for Ruby. Version 2 documentation can be found here.

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.



86
87
88
# File 'lib/aws/sqs/queue.rb', line 86

def md5
  @md5
end

#message_idString Also known as: id

Returns the message ID.

Returns:

  • (String)

    Returns the message ID.



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

def message_id
  @message_id
end

#request_idString

Returns the request ID.

Returns:

  • (String)

    Returns the request ID.



81
82
83
# File 'lib/aws/sqs/queue.rb', line 81

def request_id
  @request_id
end