Class: Aws::SQS::Types::ListDeadLetterSourceQueuesResult

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb

Overview

A list of your dead letter source queues.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

Pagination token to include in the next request. Token value is null if there are no additional results to request, or if you did not set MaxResults in the request.

Returns:

  • (String)


1170
1171
1172
1173
1174
1175
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 1170

class ListDeadLetterSourceQueuesResult < Struct.new(
  :queue_urls,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end

#queue_urlsArray<String>

A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead-letter queue.

Returns:

  • (Array<String>)


1170
1171
1172
1173
1174
1175
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 1170

class ListDeadLetterSourceQueuesResult < Struct.new(
  :queue_urls,
  :next_token)
  SENSITIVE = []
  include Aws::Structure
end