Class: Aws::SQS::Message

Inherits:
Object
  • Object
show all
Extended by:
Deprecations
Defined in:
lib/aws-sdk-sqs/message.rb

Defined Under Namespace

Classes: Collection

Read-Only Attributes collapse

Actions collapse

Associations collapse

Instance Method Summary collapse

Constructor Details

#initialize(queue_url, receipt_handle, options = {}) ⇒ Message #initialize(options = {}) ⇒ Message

Returns a new instance of Message.

Overloads:

  • #initialize(queue_url, receipt_handle, options = {}) ⇒ Message

    Parameters:

    • queue_url (String)
    • receipt_handle (String)

    Options Hash (options):

  • #initialize(options = {}) ⇒ Message

    Options Hash (options):

    • :queue_url (required, String)
    • :receipt_handle (required, String)
    • :client (Client)


21
22
23
24
25
26
27
# File 'lib/aws-sdk-sqs/message.rb', line 21

def initialize(*args)
  options = Hash === args.last ? args.pop.dup : {}
  @queue_url = extract_queue_url(args, options)
  @receipt_handle = extract_receipt_handle(args, options)
  @data = options.delete(:data)
  @client = options.delete(:client) || Client.new(options)
end

Instance Method Details

#attributesHash<String,String>

A map of the attributes requested in ‘ ReceiveMessage ` to their respective values. Supported attributes:

  • ‘ApproximateReceiveCount`

  • ‘ApproximateFirstReceiveTimestamp`

  • ‘MessageDeduplicationId`

  • ‘MessageGroupId`

  • ‘SenderId`

  • ‘SentTimestamp`

  • ‘SequenceNumber`

‘ApproximateFirstReceiveTimestamp` and `SentTimestamp` are each returned as an integer representing the [epoch time] in milliseconds.

[1]: en.wikipedia.org/wiki/Unix_time

Returns:

  • (Hash<String,String>)


85
86
87
# File 'lib/aws-sdk-sqs/message.rb', line 85

def attributes
  data[:attributes]
end

#bodyString

The message’s contents (not URL-encoded).

Returns:

  • (String)


56
57
58
# File 'lib/aws-sdk-sqs/message.rb', line 56

def body
  data[:body]
end

#change_visibility(options = {}) ⇒ EmptyStructure

Examples:

Request syntax with placeholder values


message.change_visibility({
  visibility_timeout: 1, # required
})

Parameters:

  • options (Hash) (defaults to: {})

    ({})

Options Hash (options):

  • :visibility_timeout (required, Integer)

    The new value for the message’s visibility timeout (in seconds). Values values: ‘0` to `43200`. Maximum: 12 hours.

Returns:

  • (EmptyStructure)


156
157
158
159
160
161
162
163
# File 'lib/aws-sdk-sqs/message.rb', line 156

def change_visibility(options = {})
  options = options.merge(
    queue_url: @queue_url,
    receipt_handle: @receipt_handle
  )
  resp = @client.change_message_visibility(options)
  resp.data
end

#clientClient

Returns:



117
118
119
# File 'lib/aws-sdk-sqs/message.rb', line 117

def client
  @client
end

#dataTypes::Message

Returns the data for this Aws::SQS::Message.

Returns:

Raises:

  • (NotImplementedError)

    Raises when #data_loaded? is ‘false`.



132
133
134
135
# File 'lib/aws-sdk-sqs/message.rb', line 132

def data
  load unless @data
  @data
end

#data_loaded?Boolean

Returns ‘true` if this resource is loaded. Accessing attributes or #data on an unloaded resource will trigger a call to #load.

Returns:

  • (Boolean)

    Returns ‘true` if this resource is loaded. Accessing attributes or #data on an unloaded resource will trigger a call to #load.



140
141
142
# File 'lib/aws-sdk-sqs/message.rb', line 140

def data_loaded?
  !!@data
end

#delete(options = {}) ⇒ EmptyStructure

Examples:

Request syntax with placeholder values


message.delete()

Parameters:

  • options (Hash) (defaults to: {})

    ({})

Returns:

  • (EmptyStructure)


170
171
172
173
174
175
176
177
# File 'lib/aws-sdk-sqs/message.rb', line 170

def delete(options = {})
  options = options.merge(
    queue_url: @queue_url,
    receipt_handle: @receipt_handle
  )
  resp = @client.delete_message(options)
  resp.data
end

#identifiersObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Deprecated.


191
192
193
194
195
196
# File 'lib/aws-sdk-sqs/message.rb', line 191

def identifiers
  {
    queue_url: @queue_url,
    receipt_handle: @receipt_handle
  }
end

#loadObject Also known as: reload

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Raises:

  • (NotImplementedError)


123
124
125
126
# File 'lib/aws-sdk-sqs/message.rb', line 123

def load
  msg = "#load is not implemented, data only available via enumeration"
  raise NotImplementedError, msg
end

#md5_of_bodyString

An MD5 digest of the non-URL-encoded message body string.

Returns:

  • (String)


50
51
52
# File 'lib/aws-sdk-sqs/message.rb', line 50

def md5_of_body
  data[:md5_of_body]
end

#md5_of_message_attributesString

An MD5 digest of the non-URL-encoded message attribute string. You can use this attribute to verify that Amazon SQS received the message correctly. Amazon SQS URL-decodes the message before creating the MD5 digest. For information about MD5, see [RFC1321].

[1]: www.ietf.org/rfc/rfc1321.txt

Returns:

  • (String)


98
99
100
# File 'lib/aws-sdk-sqs/message.rb', line 98

def md5_of_message_attributes
  data[:md5_of_message_attributes]
end

#message_attributesHash<String,Types::MessageAttributeValue>

Each message attribute consists of a ‘Name`, `Type`, and `Value`. For more information, see [Amazon SQS Message Attributes] in the *Amazon Simple Queue Service Developer Guide*.

[1]: docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-message-attributes.html

Returns:



110
111
112
# File 'lib/aws-sdk-sqs/message.rb', line 110

def message_attributes
  data[:message_attributes]
end

#message_idString

A unique identifier for the message. A ‘MessageId`is considered unique across all AWS accounts for an extended period of time.

Returns:

  • (String)


44
45
46
# File 'lib/aws-sdk-sqs/message.rb', line 44

def message_id
  data[:message_id]
end

#queueQueue

Returns:



182
183
184
185
186
187
# File 'lib/aws-sdk-sqs/message.rb', line 182

def queue
  Queue.new(
    url: @queue_url,
    client: @client
  )
end

#queue_urlString

Returns:

  • (String)


32
33
34
# File 'lib/aws-sdk-sqs/message.rb', line 32

def queue_url
  @queue_url
end

#receipt_handleString

Returns:

  • (String)


37
38
39
# File 'lib/aws-sdk-sqs/message.rb', line 37

def receipt_handle
  @receipt_handle
end