aws-sdk-core 2.0.48 → 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (197) hide show
  1. checksums.yaml +4 -4
  2. data/apis/autoscaling/2011-01-01/api-2.json +636 -33
  3. data/apis/cloudhsm/2014-05-30/api-2.json +3 -6
  4. data/apis/ec2/2014-10-01/api-2.json +10267 -0
  5. data/apis/ec2/2014-10-01/paginators-1.json +125 -0
  6. data/apis/ec2/2014-10-01/resources-1.json +2289 -0
  7. data/apis/ec2/2014-10-01/waiters-2.json +453 -0
  8. data/apis/ec2/2015-03-01/api-2.json +11245 -0
  9. data/apis/ec2/2015-03-01/paginators-1.json +125 -0
  10. data/apis/ec2/2015-03-01/resources-1.json +2479 -0
  11. data/apis/ec2/2015-03-01/waiters-2.json +458 -0
  12. data/apis/ec2/2015-04-15/api-2.json +182 -2
  13. data/apis/ecs/2014-11-13/api-2.json +316 -7
  14. data/apis/ecs/2014-11-13/paginators-1.json +40 -0
  15. data/apis/ecs/2014-11-13/waiters-2.json +93 -0
  16. data/apis/redshift/2012-12-01/waiters-2.json +19 -0
  17. data/apis/s3/2006-03-01/api-2.json +1 -2
  18. data/apis/sqs/2012-11-05/api-2.json +5 -6
  19. data/ca-bundle.crt +3554 -0
  20. data/lib/aws-sdk-core.rb +127 -44
  21. data/lib/aws-sdk-core/api/builder.rb +95 -0
  22. data/lib/aws-sdk-core/api/customizations.rb +152 -0
  23. data/lib/aws-sdk-core/api/docs/builder.rb +220 -0
  24. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +109 -0
  25. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +66 -0
  26. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +107 -0
  27. data/lib/aws-sdk-core/api/docs/param_formatter.rb +163 -0
  28. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +22 -0
  29. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +91 -0
  30. data/lib/aws-sdk-core/api/docs/utils.rb +133 -0
  31. data/lib/aws-sdk-core/api/shape_map.rb +140 -0
  32. data/lib/aws-sdk-core/assume_role_credentials.rb +9 -6
  33. data/lib/aws-sdk-core/client.rb +9 -6
  34. data/lib/aws-sdk-core/client_stubs.rb +127 -133
  35. data/lib/aws-sdk-core/client_waiters.rb +1 -1
  36. data/lib/aws-sdk-core/credential_provider.rb +44 -0
  37. data/lib/aws-sdk-core/credential_provider_chain.rb +3 -2
  38. data/lib/aws-sdk-core/credentials.rb +5 -0
  39. data/lib/aws-sdk-core/deprecations.rb +69 -0
  40. data/lib/aws-sdk-core/dynamodb.rb +12 -0
  41. data/lib/aws-sdk-core/eager_loader.rb +31 -0
  42. data/lib/aws-sdk-core/ecs.rb +2 -0
  43. data/lib/aws-sdk-core/empty_structure.rb +1 -82
  44. data/lib/aws-sdk-core/endpoint_provider.rb +1 -1
  45. data/lib/aws-sdk-core/instance_profile_credentials.rb +9 -10
  46. data/lib/aws-sdk-core/json.rb +56 -0
  47. data/lib/aws-sdk-core/json/builder.rb +33 -34
  48. data/lib/aws-sdk-core/json/error_handler.rb +2 -2
  49. data/lib/aws-sdk-core/json/handler.rb +67 -0
  50. data/lib/aws-sdk-core/json/json_engine.rb +15 -0
  51. data/lib/aws-sdk-core/json/oj_engine.rb +15 -0
  52. data/lib/aws-sdk-core/json/parser.rb +30 -38
  53. data/lib/aws-sdk-core/pageable_response.rb +9 -12
  54. data/lib/aws-sdk-core/pager.rb +69 -0
  55. data/lib/aws-sdk-core/param_converter.rb +203 -0
  56. data/lib/aws-sdk-core/param_validator.rb +148 -0
  57. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +21 -18
  58. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +9 -1
  59. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +2 -3
  60. data/lib/aws-sdk-core/plugins/param_converter.rb +27 -0
  61. data/lib/aws-sdk-core/plugins/param_validator.rb +28 -0
  62. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +3 -7
  63. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +1 -2
  64. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +1 -1
  65. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +1 -1
  66. data/lib/aws-sdk-core/plugins/request_signer.rb +5 -5
  67. data/lib/aws-sdk-core/plugins/response_paging.rb +20 -11
  68. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +1 -1
  69. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +1 -2
  70. data/lib/aws-sdk-core/plugins/stub_responses.rb +25 -27
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +29 -34
  72. data/lib/aws-sdk-core/query/handler.rb +32 -18
  73. data/lib/aws-sdk-core/query/param_builder.rb +45 -53
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +3 -15
  75. data/lib/aws-sdk-core/rest/handler.rb +22 -0
  76. data/lib/aws-sdk-core/rest/request/body.rb +58 -0
  77. data/lib/aws-sdk-core/rest/request/builder.rb +50 -0
  78. data/lib/aws-sdk-core/rest/request/endpoint.rb +70 -0
  79. data/lib/aws-sdk-core/rest/request/headers.rb +48 -0
  80. data/lib/aws-sdk-core/rest/response/body.rb +43 -0
  81. data/lib/aws-sdk-core/rest/response/headers.rb +60 -0
  82. data/lib/aws-sdk-core/rest/response/parser.rb +47 -0
  83. data/lib/aws-sdk-core/rest/response/status_code.rb +24 -0
  84. data/lib/aws-sdk-core/shared_credentials.rb +11 -6
  85. data/lib/aws-sdk-core/signers/base.rb +1 -1
  86. data/lib/aws-sdk-core/signers/s3.rb +2 -3
  87. data/lib/aws-sdk-core/signers/v2.rb +7 -4
  88. data/lib/aws-sdk-core/signers/v4.rb +11 -22
  89. data/lib/aws-sdk-core/structure.rb +26 -145
  90. data/lib/aws-sdk-core/stubbing/data_applicator.rb +46 -0
  91. data/lib/aws-sdk-core/stubbing/empty_stub.rb +53 -0
  92. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +49 -0
  93. data/lib/aws-sdk-core/stubbing/protocols/json.rb +40 -0
  94. data/lib/aws-sdk-core/stubbing/protocols/query.rb +40 -0
  95. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +67 -0
  96. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +25 -0
  97. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +38 -0
  98. data/lib/aws-sdk-core/stubbing/stub_data.rb +34 -0
  99. data/lib/aws-sdk-core/version.rb +1 -1
  100. data/lib/aws-sdk-core/xml/builder.rb +58 -52
  101. data/lib/aws-sdk-core/xml/default_map.rb +10 -0
  102. data/lib/aws-sdk-core/xml/doc_builder.rb +86 -0
  103. data/lib/aws-sdk-core/xml/error_handler.rb +7 -2
  104. data/lib/aws-sdk-core/xml/parser.rb +4 -4
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +75 -70
  106. data/lib/aws-sdk-core/xml/parser/stack.rb +4 -4
  107. data/lib/seahorse.rb +0 -11
  108. data/lib/seahorse/client/base.rb +3 -12
  109. data/lib/seahorse/client/http/request.rb +9 -5
  110. data/lib/seahorse/client/plugins/endpoint.rb +5 -56
  111. data/lib/seahorse/client/plugins/restful_bindings.rb +38 -31
  112. data/lib/seahorse/client/request_context.rb +2 -2
  113. data/lib/seahorse/client/response.rb +6 -5
  114. data/lib/seahorse/model/api.rb +18 -61
  115. data/lib/seahorse/model/operation.rb +24 -54
  116. data/lib/seahorse/model/shapes.rb +120 -364
  117. data/lib/seahorse/util.rb +2 -6
  118. metadata +56 -109
  119. data/apis/autoscaling/2011-01-01/docs-2.json +0 -1246
  120. data/apis/cloudformation/2010-05-15/docs-2.json +0 -725
  121. data/apis/cloudfront/2014-11-06/docs-2.json +0 -1125
  122. data/apis/cloudhsm/2014-05-30/docs-2.json +0 -472
  123. data/apis/cloudsearch/2013-01-01/docs-2.json +0 -865
  124. data/apis/cloudsearchdomain/2013-01-01/docs-2.json +0 -311
  125. data/apis/cloudtrail/2013-11-01/docs-2.json +0 -328
  126. data/apis/codedeploy/2014-10-06/docs-2.json +0 -1261
  127. data/apis/cognito-identity/2014-06-30/docs-2.json +0 -506
  128. data/apis/cognito-sync/2014-06-30/docs-2.json +0 -582
  129. data/apis/config/2014-10-17/docs-2.json +0 -513
  130. data/apis/config/2014-11-12/docs-2.json +0 -514
  131. data/apis/datapipeline/2012-10-29/docs-2.json +0 -607
  132. data/apis/directconnect/2012-10-25/docs-2.json +0 -494
  133. data/apis/ds/2015-04-16/docs-2.json +0 -753
  134. data/apis/dynamodb/2011-12-05/api-2.json +0 -949
  135. data/apis/dynamodb/2011-12-05/docs-2.json +0 -606
  136. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  137. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  138. data/apis/dynamodb/2012-08-10/docs-2.json +0 -977
  139. data/apis/ec2/2015-04-15/docs-2.json +0 -5368
  140. data/apis/ecs/2014-11-13/docs-2.json +0 -791
  141. data/apis/elasticache/2015-02-02/docs-2.json +0 -1390
  142. data/apis/elasticbeanstalk/2010-12-01/docs-2.json +0 -1114
  143. data/apis/elasticfilesystem/2015-02-01/docs-2.json +0 -414
  144. data/apis/elasticloadbalancing/2012-06-01/docs-2.json +0 -1078
  145. data/apis/elasticmapreduce/2009-03-31/docs-2.json +0 -969
  146. data/apis/elastictranscoder/2012-09-25/docs-2.json +0 -1152
  147. data/apis/email/2010-12-01/docs-2.json +0 -441
  148. data/apis/glacier/2012-06-01/docs-2.json +0 -575
  149. data/apis/iam/2010-05-08/docs-2.json +0 -2138
  150. data/apis/importexport/2010-06-01/docs-2.json +0 -432
  151. data/apis/kinesis/2013-12-02/docs-2.json +0 -424
  152. data/apis/kms/2014-11-01/docs-2.json +0 -628
  153. data/apis/lambda/2014-11-11/docs-2.json +0 -303
  154. data/apis/lambda/2015-03-31/docs-2.json +0 -490
  155. data/apis/logs/2014-03-28/docs-2.json +0 -599
  156. data/apis/machinelearning/2014-12-12/docs-2.json +0 -1034
  157. data/apis/monitoring/2010-08-01/docs-2.json +0 -514
  158. data/apis/opsworks/2013-02-18/docs-2.json +0 -1592
  159. data/apis/rds/2014-10-31/docs-2.json +0 -2074
  160. data/apis/redshift/2012-12-01/docs-2.json +0 -1890
  161. data/apis/route53/2013-04-01/docs-2.json +0 -1159
  162. data/apis/route53domains/2014-05-15/docs-2.json +0 -620
  163. data/apis/s3/2006-03-01/docs-2.json +0 -2213
  164. data/apis/sdb/2009-04-15/docs-2.json +0 -339
  165. data/apis/sns/2010-03-31/docs-2.json +0 -564
  166. data/apis/sqs/2012-11-05/docs-2.json +0 -503
  167. data/apis/ssm/2014-11-06/docs-2.json +0 -440
  168. data/apis/storagegateway/2013-06-30/docs-2.json +0 -1331
  169. data/apis/sts/2011-06-15/docs-2.json +0 -351
  170. data/apis/support/2013-04-15/docs-2.json +0 -680
  171. data/apis/swf/2012-01-25/docs-2.json +0 -1569
  172. data/apis/workspaces/2015-04-08/docs-2.json +0 -457
  173. data/lib/aws-sdk-core/api/customizer.rb +0 -75
  174. data/lib/aws-sdk-core/api/docstrings.rb +0 -38
  175. data/lib/aws-sdk-core/api/documenter.rb +0 -241
  176. data/lib/aws-sdk-core/api/operation_documenter.rb +0 -173
  177. data/lib/aws-sdk-core/api/operation_example.rb +0 -133
  178. data/lib/aws-sdk-core/api/service_customizations.rb +0 -140
  179. data/lib/aws-sdk-core/client_paging.rb +0 -31
  180. data/lib/aws-sdk-core/json/rest_handler.rb +0 -20
  181. data/lib/aws-sdk-core/json/rpc_body_handler.rb +0 -38
  182. data/lib/aws-sdk-core/json/rpc_headers_handler.rb +0 -34
  183. data/lib/aws-sdk-core/json/simple_body_handler.rb +0 -34
  184. data/lib/aws-sdk-core/paging/null_pager.rb +0 -20
  185. data/lib/aws-sdk-core/paging/null_provider.rb +0 -13
  186. data/lib/aws-sdk-core/paging/pager.rb +0 -70
  187. data/lib/aws-sdk-core/paging/provider.rb +0 -22
  188. data/lib/aws-sdk-core/rest_body_handler.rb +0 -111
  189. data/lib/aws-sdk-core/signers/handler.rb +0 -18
  190. data/lib/aws-sdk-core/xml/rest_handler.rb +0 -20
  191. data/lib/seahorse/client/param_converter.rb +0 -207
  192. data/lib/seahorse/client/param_validator.rb +0 -139
  193. data/lib/seahorse/client/plugins/json_simple.rb +0 -33
  194. data/lib/seahorse/client/plugins/param_conversion.rb +0 -29
  195. data/lib/seahorse/client/plugins/param_validation.rb +0 -30
  196. data/lib/seahorse/client/xml/builder.rb +0 -91
  197. data/lib/seahorse/model/shape_map.rb +0 -47
@@ -1,503 +0,0 @@
1
- {
2
- "operations": {
3
- "AddPermission": "<p>Adds a permission to a queue for a specific <a href=\"http://docs.aws.amazon.com/general/latest/gr/glos-chap.html#P\">principal</a>. This allows for sharing access to the queue.</p> <p>When you create a queue, you have full control access rights for the queue. Only you (as owner of the queue) can grant or deny permissions to the queue. For more information about these permissions, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/acp-overview.html\">Shared Queues</a> in the <i>Amazon SQS Developer Guide</i>.</p> <note> <p><code>AddPermission</code> writes an Amazon SQS-generated policy. If you want to write your own policy, use <a>SetQueueAttributes</a> to upload your policy. For more information about writing your own policy, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/AccessPolicyLanguage.html\">Using The Access Policy Language</a> in the <i>Amazon SQS Developer Guide</i>.</p> </note> <note>Some API actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this: </note> <p><code>&amp;Attribute.1=this</code></p> <p><code>&amp;Attribute.2=that</code></p>",
4
- "ChangeMessageVisibility": "<p>Changes the visibility timeout of a specified message in a queue to a new value. The maximum allowed timeout value you can set the value to is 12 hours. This means you can't extend the timeout of a message in an existing queue to more than a total visibility timeout of 12 hours. (For more information visibility timeout, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/AboutVT.html\">Visibility Timeout</a> in the <i>Amazon SQS Developer Guide</i>.)</p> <p>For example, let's say you have a message and its default message visibility timeout is 30 minutes. You could call <code>ChangeMessageVisiblity</code> with a value of two hours and the effective timeout would be two hours and 30 minutes. When that time comes near you could again extend the time out by calling ChangeMessageVisiblity, but this time the maximum allowed timeout would be 9 hours and 30 minutes.</p> <note><p>There is a 120,000 limit for the number of inflight messages per queue. Messages are inflight after they have been received from the queue by a consuming component, but have not yet been deleted from the queue. If you reach the 120,000 limit, you will receive an OverLimit error message from Amazon SQS. To help avoid reaching the limit, you should delete the messages from the queue after they have been processed. You can also increase the number of queues you use to process the messages. </p></note> <important>If you attempt to set the <code>VisibilityTimeout</code> to an amount more than the maximum time left, Amazon SQS returns an error. It will not automatically recalculate and increase the timeout to the maximum time remaining.</important> <important>Unlike with a queue, when you change the visibility timeout for a specific message, that timeout value is applied immediately but is not saved in memory for that message. If you don't delete a message after it is received, the visibility timeout for the message the next time it is received reverts to the original timeout value, not the value you set with the <code>ChangeMessageVisibility</code> action.</important>",
5
- "ChangeMessageVisibilityBatch": "<p>Changes the visibility timeout of multiple messages. This is a batch version of <a>ChangeMessageVisibility</a>. The result of the action on each message is reported individually in the response. You can send up to 10 <a>ChangeMessageVisibility</a> requests with each <code>ChangeMessageVisibilityBatch</code> action.</p> <important>Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of 200.</important> <note>Some API actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this: </note> <p><code>&amp;Attribute.1=this</code></p> <p><code>&amp;Attribute.2=that</code></p>",
6
- "CreateQueue": "<p>Creates a new queue, or returns the URL of an existing one. When you request <code>CreateQueue</code>, you provide a name for the queue. To successfully create a new queue, you must provide a name that is unique within the scope of your own queues.</p> <note> <p>If you delete a queue, you must wait at least 60 seconds before creating a queue with the same name.</p> </note> <p>You may pass one or more attributes in the request. If you do not provide a value for any attribute, the queue will have the default value for that attribute. Permitted attributes are the same that can be set using <a>SetQueueAttributes</a>.</p> <note><p>Use <a>GetQueueUrl</a> to get a queue's URL. <a>GetQueueUrl</a> requires only the <code>QueueName</code> parameter.</p></note> <p>If you provide the name of an existing queue, along with the exact names and values of all the queue's attributes, <code>CreateQueue</code> returns the queue URL for the existing queue. If the queue name, attribute names, or attribute values do not match an existing queue, <code>CreateQueue</code> returns an error.</p> <note>Some API actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this: </note> <p><code>&amp;Attribute.1=this</code></p> <p><code>&amp;Attribute.2=that</code></p>",
7
- "DeleteMessage": "<p> Deletes the specified message from the specified queue. You specify the message by using the message's <code>receipt handle</code> and not the <code>message ID</code> you received when you sent the message. Even if the message is locked by another reader due to the visibility timeout setting, it is still deleted from the queue. If you leave a message in the queue for longer than the queue's configured retention period, Amazon SQS automatically deletes it. </p> <note> <p> The receipt handle is associated with a specific instance of receiving the message. If you receive a message more than once, the receipt handle you get each time you receive the message is different. When you request <code>DeleteMessage</code>, if you don't provide the most recently received receipt handle for the message, the request will still succeed, but the message might not be deleted. </p> </note> <important> <p> It is possible you will receive a message even after you have deleted it. This might happen on rare occasions if one of the servers storing a copy of the message is unavailable when you request to delete the message. The copy remains on the server and might be returned to you again on a subsequent receive request. You should create your system to be idempotent so that receiving a particular message more than once is not a problem. </p> </important>",
8
- "DeleteMessageBatch": "<p>Deletes up to ten messages from the specified queue. This is a batch version of <a>DeleteMessage</a>. The result of the delete action on each message is reported individually in the response.</p> <important> <p> Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of 200. </p> </important> <note>Some API actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this: </note> <p><code>&amp;Attribute.1=this</code></p> <p><code>&amp;Attribute.2=that</code></p>",
9
- "DeleteQueue": "<p> Deletes the queue specified by the <b>queue URL</b>, regardless of whether the queue is empty. If the specified queue does not exist, Amazon SQS returns a successful response. </p> <important> <p> Use <code>DeleteQueue</code> with care; once you delete your queue, any messages in the queue are no longer available. </p> </important> <p> When you delete a queue, the deletion process takes up to 60 seconds. Requests you send involving that queue during the 60 seconds might succeed. For example, a <a>SendMessage</a> request might succeed, but after the 60 seconds, the queue and that message you sent no longer exist. Also, when you delete a queue, you must wait at least 60 seconds before creating a queue with the same name. </p> <p> We reserve the right to delete queues that have had no activity for more than 30 days. For more information, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/SQSConcepts.html\">How Amazon SQS Queues Work</a> in the <i>Amazon SQS Developer Guide</i>. </p>",
10
- "GetQueueAttributes": "<p>Gets attributes for the specified queue. The following attributes are supported: <ul> <li> <code>All</code> - returns all values.</li> <li> <code>ApproximateNumberOfMessages</code> - returns the approximate number of visible messages in a queue. For more information, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/ApproximateNumber.html\">Resources Required to Process Messages</a> in the <i>Amazon SQS Developer Guide</i>.</li> <li> <code>ApproximateNumberOfMessagesNotVisible</code> - returns the approximate number of messages that are not timed-out and not deleted. For more information, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/ApproximateNumber.html\">Resources Required to Process Messages</a> in the <i>Amazon SQS Developer Guide</i>.</li> <li> <code>VisibilityTimeout</code> - returns the visibility timeout for the queue. For more information about visibility timeout, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/AboutVT.html\">Visibility Timeout</a> in the <i>Amazon SQS Developer Guide</i>.</li> <li> <code>CreatedTimestamp</code> - returns the time when the queue was created (epoch time in seconds).</li> <li> <code>LastModifiedTimestamp</code> - returns the time when the queue was last changed (epoch time in seconds).</li> <li> <code>Policy</code> - returns the queue's policy.</li> <li> <code>MaximumMessageSize</code> - returns the limit of how many bytes a message can contain before Amazon SQS rejects it.</li> <li> <code>MessageRetentionPeriod</code> - returns the number of seconds Amazon SQS retains a message.</li> <li> <code>QueueArn</code> - returns the queue's Amazon resource name (ARN).</li> <li> <code>ApproximateNumberOfMessagesDelayed</code> - returns the approximate number of messages that are pending to be added to the queue.</li> <li> <code>DelaySeconds</code> - returns the default delay on the queue in seconds.</li> <li> <code>ReceiveMessageWaitTimeSeconds</code> - returns the time for which a ReceiveMessage call will wait for a message to arrive.</li> <li> <code>RedrivePolicy</code> - returns the parameters for dead letter queue functionality of the source queue. For more information about RedrivePolicy and dead letter queues, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/SQSDeadLetterQueue.html\">Using Amazon SQS Dead Letter Queues</a> in the <i>Amazon SQS Developer Guide</i>.</li> </ul> </p> <note>Going forward, new attributes might be added. If you are writing code that calls this action, we recommend that you structure your code so that it can handle new attributes gracefully.</note> <note>Some API actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this: </note> <p><code>&amp;Attribute.1=this</code></p> <p><code>&amp;Attribute.2=that</code></p>",
11
- "GetQueueUrl": "<p> Returns the URL of an existing queue. This action provides a simple way to retrieve the URL of an Amazon SQS queue. </p> <p> To access a queue that belongs to another AWS account, use the <code>QueueOwnerAWSAccountId</code> parameter to specify the account ID of the queue's owner. The queue's owner must grant you permission to access the queue. For more information about shared queue access, see <a>AddPermission</a> or go to <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/acp-overview.html\">Shared Queues</a> in the <i>Amazon SQS Developer Guide</i>. </p>",
12
- "ListDeadLetterSourceQueues": "<p>Returns a list of your queues that have the RedrivePolicy queue attribute configured with a dead letter queue.</p> <p>For more information about using dead letter queues, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/SQSDeadLetterQueue.html\">Using Amazon SQS Dead Letter Queues</a>.</p>",
13
- "ListQueues": "<p>Returns a list of your queues. The maximum number of queues that can be returned is 1000. If you specify a value for the optional <code>QueueNamePrefix</code> parameter, only queues with a name beginning with the specified value are returned.</p>",
14
- "PurgeQueue": "<p>Deletes the messages in a queue specified by the <b>queue URL</b>.</p> <important>When you use the <code>PurgeQueue</code> API, the deleted messages in the queue cannot be retrieved.</important> <p>When you purge a queue, the message deletion process takes up to 60 seconds. All messages sent to the queue before calling <code>PurgeQueue</code> will be deleted; messages sent to the queue while it is being purged may be deleted. While the queue is being purged, messages sent to the queue before <code>PurgeQueue</code> was called may be received, but will be deleted within the next minute.</p>",
15
- "ReceiveMessage": "<p> Retrieves one or more messages, with a maximum limit of 10 messages, from the specified queue. Long poll support is enabled by using the <code>WaitTimeSeconds</code> parameter. For more information, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-long-polling.html\">Amazon SQS Long Poll</a> in the <i>Amazon SQS Developer Guide</i>. </p> <p> Short poll is the default behavior where a weighted random set of machines is sampled on a <code>ReceiveMessage</code> call. This means only the messages on the sampled machines are returned. If the number of messages in the queue is small (less than 1000), it is likely you will get fewer messages than you requested per <code>ReceiveMessage</code> call. If the number of messages in the queue is extremely small, you might not receive any messages in a particular <code>ReceiveMessage</code> response; in which case you should repeat the request. </p> <p> For each message returned, the response includes the following: </p> <ul> <li> <p> Message body </p> </li> <li> <p> MD5 digest of the message body. For information about MD5, go to <a href=\"http://www.faqs.org/rfcs/rfc1321.html\">http://www.faqs.org/rfcs/rfc1321.html</a>. </p> </li> <li> <p> Message ID you received when you sent the message to the queue. </p> </li> <li> <p> Receipt handle. </p> </li> <li> <p> Message attributes. </p> </li> <li> <p> MD5 digest of the message attributes. </p> </li> </ul> <p> The receipt handle is the identifier you must provide when deleting the message. For more information, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/ImportantIdentifiers.html\">Queue and Message Identifiers</a> in the <i>Amazon SQS Developer Guide</i>. </p> <p> You can provide the <code>VisibilityTimeout</code> parameter in your request, which will be applied to the messages that Amazon SQS returns in the response. If you do not include the parameter, the overall visibility timeout for the queue is used for the returned messages. For more information, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/AboutVT.html\">Visibility Timeout</a> in the <i>Amazon SQS Developer Guide</i>. </p> <note> <p> Going forward, new attributes might be added. If you are writing code that calls this action, we recommend that you structure your code so that it can handle new attributes gracefully. </p> </note>",
16
- "RemovePermission": "<p>Revokes any permissions in the queue policy that matches the specified <code>Label</code> parameter. Only the owner of the queue can remove permissions.</p>",
17
- "SendMessage": "<p> Delivers a message to the specified queue. With Amazon SQS, you now have the ability to send large payload messages that are up to 256KB (262,144 bytes) in size. To send large payloads, you must use an AWS SDK that supports SigV4 signing. To verify whether SigV4 is supported for an AWS SDK, check the SDK release notes. </p> <important> <p> The following list shows the characters (in Unicode) allowed in your message, according to the W3C XML specification. For more information, go to <a href=\"http://www.w3.org/TR/REC-xml/#charsets\">http://www.w3.org/TR/REC-xml/#charsets</a> If you send any characters not included in the list, your request will be rejected. </p> <p> #x9 | #xA | #xD | [#x20 to #xD7FF] | [#xE000 to #xFFFD] | [#x10000 to #x10FFFF] </p> </important>",
18
- "SendMessageBatch": "<p>Delivers up to ten messages to the specified queue. This is a batch version of <a>SendMessage</a>. The result of the send action on each message is reported individually in the response. The maximum allowed individual message size is 256 KB (262,144 bytes).</p> <p>The maximum total payload size (i.e., the sum of all a batch's individual message lengths) is also 256 KB (262,144 bytes).</p> <p>If the <code>DelaySeconds</code> parameter is not specified for an entry, the default for the queue is used.</p> <important>The following list shows the characters (in Unicode) that are allowed in your message, according to the W3C XML specification. For more information, go to <a href=\"http://www.faqs.org/rfcs/rfc1321.html\">http://www.faqs.org/rfcs/rfc1321.html</a>. If you send any characters that are not included in the list, your request will be rejected. <p>#x9 | #xA | #xD | [#x20 to #xD7FF] | [#xE000 to #xFFFD] | [#x10000 to #x10FFFF]</p> </important> <important> Because the batch request can result in a combination of successful and unsuccessful actions, you should check for batch errors even when the call returns an HTTP status code of 200. </important> <note>Some API actions take lists of parameters. These lists are specified using the <code>param.n</code> notation. Values of <code>n</code> are integers starting from 1. For example, a parameter list with two elements looks like this: </note> <p><code>&amp;Attribute.1=this</code></p> <p><code>&amp;Attribute.2=that</code></p>",
19
- "SetQueueAttributes": "<p>Sets the value of one or more queue attributes. When you change a queue's attributes, the change can take up to 60 seconds for most of the attributes to propagate throughout the SQS system. Changes made to the <code>MessageRetentionPeriod</code> attribute can take up to 15 minutes.</p> <note>Going forward, new attributes might be added. If you are writing code that calls this action, we recommend that you structure your code so that it can handle new attributes gracefully.</note>"
20
- },
21
- "service": "<p>Welcome to the <i>Amazon Simple Queue Service API Reference</i>. This section describes who should read this guide, how the guide is organized, and other resources related to the Amazon Simple Queue Service (Amazon SQS).</p> <p>Amazon SQS offers reliable and scalable hosted queues for storing messages as they travel between computers. By using Amazon SQS, you can move data between distributed components of your applications that perform different tasks without losing messages or requiring each component to be always available.</p> <p>Helpful Links: <ul> <li><a href=\"http://queue.amazonaws.com/doc/2012-11-05/QueueService.wsdl\">Current WSDL (2012-11-05)</a></li> <li><a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/MakingRequestsArticle.html\">Making API Requests</a></li> <li><a href=\"http://aws.amazon.com/sqs/\">Amazon SQS product page</a></li> <li><a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/SQSMessageAttributes.html\">Using Amazon SQS Message Attributes</a></li> <li><a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/SQSDeadLetterQueue.html\">Using Amazon SQS Dead Letter Queues</a></li> <li><a href=\"http://docs.aws.amazon.com/general/latest/gr/rande.html#sqs_region\">Regions and Endpoints</a></li> </ul> </p> <p>We also provide SDKs that enable you to access Amazon SQS from your preferred programming language. The SDKs contain functionality that automatically takes care of tasks such as:</p> <p> <ul> <li>Cryptographically signing your service requests</li> <li>Retrying requests</li> <li>Handling error responses</li> </ul> </p> <p>For a list of available SDKs, go to <a href=\"http://aws.amazon.com/tools/\">Tools for Amazon Web Services</a>.</p>",
22
- "shapes": {
23
- "AWSAccountIdList": {
24
- "base": null,
25
- "refs": {
26
- "AddPermissionRequest$AWSAccountIds": "<p>The AWS account number of the <a href=\"http://docs.aws.amazon.com/general/latest/gr/glos-chap.html#P\">principal</a> who will be given permission. The principal must have an AWS account, but does not need to be signed up for Amazon SQS. For information about locating the AWS account identification, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/AWSCredentials.html\">Your AWS Identifiers</a> in the <i>Amazon SQS Developer Guide</i>.</p>"
27
- }
28
- },
29
- "ActionNameList": {
30
- "base": null,
31
- "refs": {
32
- "AddPermissionRequest$Actions": "<p>The action the client wants to allow for the specified principal. The following are valid values: <code>* | SendMessage | ReceiveMessage | DeleteMessage | ChangeMessageVisibility | GetQueueAttributes | GetQueueUrl</code>. For more information about these actions, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/acp-overview.html#PermissionTypes\">Understanding Permissions</a> in the <i>Amazon SQS Developer Guide</i>.</p> <p>Specifying <code>SendMessage</code>, <code>DeleteMessage</code>, or <code>ChangeMessageVisibility</code> for the <code>ActionName.n</code> also grants permissions for the corresponding batch versions of those actions: <code>SendMessageBatch</code>, <code>DeleteMessageBatch</code>, and <code>ChangeMessageVisibilityBatch</code>.</p>"
33
- }
34
- },
35
- "AddPermissionRequest": {
36
- "base": null,
37
- "refs": {
38
- }
39
- },
40
- "AttributeMap": {
41
- "base": null,
42
- "refs": {
43
- "CreateQueueRequest$Attributes": "<p>A map of attributes with their corresponding values.</p> <p>The following lists the names, descriptions, and values of the special request parameters the <code>CreateQueue</code> action uses:</p> <p> <ul> <li> <code>DelaySeconds</code> - The time in seconds that the delivery of all messages in the queue will be delayed. An integer from 0 to 900 (15 minutes). The default for this attribute is 0 (zero).</li> <li> <code>MaximumMessageSize</code> - The limit of how many bytes a message can contain before Amazon SQS rejects it. An integer from 1024 bytes (1 KiB) up to 262144 bytes (256 KiB). The default for this attribute is 262144 (256 KiB).</li> <li> <code>MessageRetentionPeriod</code> - The number of seconds Amazon SQS retains a message. Integer representing seconds, from 60 (1 minute) to 1209600 (14 days). The default for this attribute is 345600 (4 days).</li> <li> <code>Policy</code> - The queue's policy. A valid AWS policy. For more information about policy structure, see <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/PoliciesOverview.html\">Overview of AWS IAM Policies</a> in the <i>Amazon IAM User Guide</i>.</li> <li> <code>ReceiveMessageWaitTimeSeconds</code> - The time for which a <a>ReceiveMessage</a> call will wait for a message to arrive. An integer from 0 to 20 (seconds). The default for this attribute is 0. </li> <li> <code>VisibilityTimeout</code> - The visibility timeout for the queue. An integer from 0 to 43200 (12 hours). The default for this attribute is 30. For more information about visibility timeout, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/AboutVT.html\">Visibility Timeout</a> in the <i>Amazon SQS Developer Guide</i>.</li> </ul> </p>",
44
- "GetQueueAttributesResult$Attributes": "<p>A map of attributes to the respective values.</p>",
45
- "Message$Attributes": "<p><code>SenderId</code>, <code>SentTimestamp</code>, <code>ApproximateReceiveCount</code>, and/or <code>ApproximateFirstReceiveTimestamp</code>. <code>SentTimestamp</code> and <code>ApproximateFirstReceiveTimestamp</code> are each returned as an integer representing the <a href=\"http://en.wikipedia.org/wiki/Unix_time\">epoch time</a> in milliseconds.</p>",
46
- "SetQueueAttributesRequest$Attributes": "<p>A map of attributes to set.</p> <p>The following lists the names, descriptions, and values of the special request parameters the <code>SetQueueAttributes</code> action uses:</p> <p> <ul> <li> <code>DelaySeconds</code> - The time in seconds that the delivery of all messages in the queue will be delayed. An integer from 0 to 900 (15 minutes). The default for this attribute is 0 (zero).</li> <li> <code>MaximumMessageSize</code> - The limit of how many bytes a message can contain before Amazon SQS rejects it. An integer from 1024 bytes (1 KiB) up to 262144 bytes (256 KiB). The default for this attribute is 262144 (256 KiB).</li> <li> <code>MessageRetentionPeriod</code> - The number of seconds Amazon SQS retains a message. Integer representing seconds, from 60 (1 minute) to 1209600 (14 days). The default for this attribute is 345600 (4 days).</li> <li> <code>Policy</code> - The queue's policy. A valid AWS policy. For more information about policy structure, see <a href=\"http://docs.aws.amazon.com/IAM/latest/UserGuide/PoliciesOverview.html\">Overview of AWS IAM Policies</a> in the <i>Amazon IAM User Guide</i>.</li> <li> <code>ReceiveMessageWaitTimeSeconds</code> - The time for which a ReceiveMessage call will wait for a message to arrive. An integer from 0 to 20 (seconds). The default for this attribute is 0. </li> <li> <code>VisibilityTimeout</code> - The visibility timeout for the queue. An integer from 0 to 43200 (12 hours). The default for this attribute is 30. For more information about visibility timeout, see Visibility Timeout in the <i>Amazon SQS Developer Guide</i>.</li> <li> <code>RedrivePolicy</code> - The parameters for dead letter queue functionality of the source queue. For more information about RedrivePolicy and dead letter queues, see Using Amazon SQS Dead Letter Queues in the <i>Amazon SQS Developer Guide</i>.</li> </ul> </p>"
47
- }
48
- },
49
- "AttributeNameList": {
50
- "base": null,
51
- "refs": {
52
- "GetQueueAttributesRequest$AttributeNames": "<p>A list of attributes to retrieve information for. </p>",
53
- "ReceiveMessageRequest$AttributeNames": "<p>A list of attributes that need to be returned along with each message. </p> <p> The following lists the names and descriptions of the attributes that can be returned: </p> <ul> <li> <code>All</code> - returns all values.</li> <li> <code>ApproximateFirstReceiveTimestamp</code> - returns the time when the message was first received from the queue (epoch time in milliseconds).</li> <li> <code>ApproximateReceiveCount</code> - returns the number of times a message has been received from the queue but not deleted.</li> <li> <code>SenderId</code> - returns the AWS account number (or the IP address, if anonymous access is allowed) of the sender.</li> <li> <code>SentTimestamp</code> - returns the time when the message was sent to the queue (epoch time in milliseconds).</li> </ul>"
54
- }
55
- },
56
- "BatchEntryIdsNotDistinct": {
57
- "base": "<p>Two or more batch entries have the same <code>Id</code> in the request.</p>",
58
- "refs": {
59
- }
60
- },
61
- "BatchRequestTooLong": {
62
- "base": "<p>The length of all the messages put together is more than the limit.</p>",
63
- "refs": {
64
- }
65
- },
66
- "BatchResultErrorEntry": {
67
- "base": "<p>This is used in the responses of batch API to give a detailed description of the result of an action on each entry in the request.</p>",
68
- "refs": {
69
- "BatchResultErrorEntryList$member": null
70
- }
71
- },
72
- "BatchResultErrorEntryList": {
73
- "base": null,
74
- "refs": {
75
- "ChangeMessageVisibilityBatchResult$Failed": "<p>A list of <a>BatchResultErrorEntry</a> items.</p>",
76
- "DeleteMessageBatchResult$Failed": "<p>A list of <a>BatchResultErrorEntry</a> items.</p>",
77
- "SendMessageBatchResult$Failed": "<p>A list of <a>BatchResultErrorEntry</a> items with the error detail about each message that could not be enqueued.</p>"
78
- }
79
- },
80
- "Binary": {
81
- "base": null,
82
- "refs": {
83
- "BinaryList$member": null,
84
- "MessageAttributeValue$BinaryValue": "<p>Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.</p>"
85
- }
86
- },
87
- "BinaryList": {
88
- "base": null,
89
- "refs": {
90
- "MessageAttributeValue$BinaryListValues": "<p>Not implemented. Reserved for future use.</p>"
91
- }
92
- },
93
- "Boolean": {
94
- "base": null,
95
- "refs": {
96
- "BatchResultErrorEntry$SenderFault": "<p>Whether the error happened due to the sender's fault.</p>"
97
- }
98
- },
99
- "ChangeMessageVisibilityBatchRequest": {
100
- "base": null,
101
- "refs": {
102
- }
103
- },
104
- "ChangeMessageVisibilityBatchRequestEntry": {
105
- "base": "<p>Encloses a receipt handle and an entry id for each message in <a>ChangeMessageVisibilityBatch</a>. </p> <important> <p>All of the following parameters are list parameters that must be prefixed with <code>ChangeMessageVisibilityBatchRequestEntry.n</code>, where <code>n</code> is an integer value starting with 1. For example, a parameter list for this action might look like this:</p> </important> <p><code>&amp;ChangeMessageVisibilityBatchRequestEntry.1.Id=change_visibility_msg_2</code></p> <p><code>&amp;ChangeMessageVisibilityBatchRequestEntry.1.ReceiptHandle=<replaceable>Your_Receipt_Handle</replaceable></code></p> <p><code>&amp;ChangeMessageVisibilityBatchRequestEntry.1.VisibilityTimeout=45</code></p>",
106
- "refs": {
107
- "ChangeMessageVisibilityBatchRequestEntryList$member": null
108
- }
109
- },
110
- "ChangeMessageVisibilityBatchRequestEntryList": {
111
- "base": null,
112
- "refs": {
113
- "ChangeMessageVisibilityBatchRequest$Entries": "<p>A list of receipt handles of the messages for which the visibility timeout must be changed.</p>"
114
- }
115
- },
116
- "ChangeMessageVisibilityBatchResult": {
117
- "base": "<p> For each message in the batch, the response contains a <a>ChangeMessageVisibilityBatchResultEntry</a> tag if the message succeeds or a <a>BatchResultErrorEntry</a> tag if the message fails. </p>",
118
- "refs": {
119
- }
120
- },
121
- "ChangeMessageVisibilityBatchResultEntry": {
122
- "base": "<p>Encloses the id of an entry in <a>ChangeMessageVisibilityBatch</a>.</p>",
123
- "refs": {
124
- "ChangeMessageVisibilityBatchResultEntryList$member": null
125
- }
126
- },
127
- "ChangeMessageVisibilityBatchResultEntryList": {
128
- "base": null,
129
- "refs": {
130
- "ChangeMessageVisibilityBatchResult$Successful": "<p>A list of <a>ChangeMessageVisibilityBatchResultEntry</a> items.</p>"
131
- }
132
- },
133
- "ChangeMessageVisibilityRequest": {
134
- "base": null,
135
- "refs": {
136
- }
137
- },
138
- "CreateQueueRequest": {
139
- "base": null,
140
- "refs": {
141
- }
142
- },
143
- "CreateQueueResult": {
144
- "base": "<p>Returns the QueueUrl element of the created queue.</p>",
145
- "refs": {
146
- }
147
- },
148
- "DeleteMessageBatchRequest": {
149
- "base": null,
150
- "refs": {
151
- }
152
- },
153
- "DeleteMessageBatchRequestEntry": {
154
- "base": "<p>Encloses a receipt handle and an identifier for it.</p>",
155
- "refs": {
156
- "DeleteMessageBatchRequestEntryList$member": null
157
- }
158
- },
159
- "DeleteMessageBatchRequestEntryList": {
160
- "base": null,
161
- "refs": {
162
- "DeleteMessageBatchRequest$Entries": "<p>A list of receipt handles for the messages to be deleted.</p>"
163
- }
164
- },
165
- "DeleteMessageBatchResult": {
166
- "base": "<p> For each message in the batch, the response contains a <a>DeleteMessageBatchResultEntry</a> tag if the message is deleted or a <a>BatchResultErrorEntry</a> tag if the message cannot be deleted. </p>",
167
- "refs": {
168
- }
169
- },
170
- "DeleteMessageBatchResultEntry": {
171
- "base": "<p>Encloses the id an entry in <a>DeleteMessageBatch</a>.</p>",
172
- "refs": {
173
- "DeleteMessageBatchResultEntryList$member": null
174
- }
175
- },
176
- "DeleteMessageBatchResultEntryList": {
177
- "base": null,
178
- "refs": {
179
- "DeleteMessageBatchResult$Successful": "<p>A list of <a>DeleteMessageBatchResultEntry</a> items.</p>"
180
- }
181
- },
182
- "DeleteMessageRequest": {
183
- "base": null,
184
- "refs": {
185
- }
186
- },
187
- "DeleteQueueRequest": {
188
- "base": null,
189
- "refs": {
190
- }
191
- },
192
- "EmptyBatchRequest": {
193
- "base": "<p>Batch request does not contain an entry.</p>",
194
- "refs": {
195
- }
196
- },
197
- "GetQueueAttributesRequest": {
198
- "base": null,
199
- "refs": {
200
- }
201
- },
202
- "GetQueueAttributesResult": {
203
- "base": "A list of returned queue attributes.",
204
- "refs": {
205
- }
206
- },
207
- "GetQueueUrlRequest": {
208
- "base": null,
209
- "refs": {
210
- }
211
- },
212
- "GetQueueUrlResult": {
213
- "base": "<p>For more information, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/UnderstandingResponses.html\">Responses</a> in the <i>Amazon SQS Developer Guide</i>.</p>",
214
- "refs": {
215
- }
216
- },
217
- "Integer": {
218
- "base": null,
219
- "refs": {
220
- "ChangeMessageVisibilityBatchRequestEntry$VisibilityTimeout": "<p>The new value (in seconds) for the message's visibility timeout.</p>",
221
- "ChangeMessageVisibilityRequest$VisibilityTimeout": "<p>The new value (in seconds - from 0 to 43200 - maximum 12 hours) for the message's visibility timeout.</p>",
222
- "ReceiveMessageRequest$MaxNumberOfMessages": "<p>The maximum number of messages to return. Amazon SQS never returns more messages than this value but may return fewer. Values can be from 1 to 10. Default is 1.</p> <p>All of the messages are not necessarily returned.</p>",
223
- "ReceiveMessageRequest$VisibilityTimeout": "<p>The duration (in seconds) that the received messages are hidden from subsequent retrieve requests after being retrieved by a <code>ReceiveMessage</code> request.</p>",
224
- "ReceiveMessageRequest$WaitTimeSeconds": "<p>The duration (in seconds) for which the call will wait for a message to arrive in the queue before returning. If a message is available, the call will return sooner than WaitTimeSeconds.</p>",
225
- "SendMessageBatchRequestEntry$DelaySeconds": "<p>The number of seconds for which the message has to be delayed.</p>",
226
- "SendMessageRequest$DelaySeconds": "<p> The number of seconds (0 to 900 - 15 minutes) to delay a specific message. Messages with a positive <code>DelaySeconds</code> value become available for processing after the delay time is finished. If you don't specify a value, the default value for the queue applies. </p>"
227
- }
228
- },
229
- "InvalidAttributeName": {
230
- "base": "<p>The attribute referred to does not exist.</p>",
231
- "refs": {
232
- }
233
- },
234
- "InvalidBatchEntryId": {
235
- "base": "<p>The <code>Id</code> of a batch entry in a batch request does not abide by the specification.</p>",
236
- "refs": {
237
- }
238
- },
239
- "InvalidIdFormat": {
240
- "base": "<p>The receipt handle is not valid for the current version.</p>",
241
- "refs": {
242
- }
243
- },
244
- "InvalidMessageContents": {
245
- "base": "<p>The message contains characters outside the allowed set.</p>",
246
- "refs": {
247
- }
248
- },
249
- "ListDeadLetterSourceQueuesRequest": {
250
- "base": null,
251
- "refs": {
252
- }
253
- },
254
- "ListDeadLetterSourceQueuesResult": {
255
- "base": "A list of your dead letter source queues.",
256
- "refs": {
257
- }
258
- },
259
- "ListQueuesRequest": {
260
- "base": null,
261
- "refs": {
262
- }
263
- },
264
- "ListQueuesResult": {
265
- "base": "A list of your queues.",
266
- "refs": {
267
- }
268
- },
269
- "Message": {
270
- "base": "<p>An Amazon SQS message.</p>",
271
- "refs": {
272
- "MessageList$member": null
273
- }
274
- },
275
- "MessageAttributeMap": {
276
- "base": null,
277
- "refs": {
278
- "Message$MessageAttributes": "<p>Each message attribute consists of a Name, Type, and Value. For more information, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/SQSMessageAttributes.html#SQSMessageAttributesNTV\">Message Attribute Items</a>.</p>",
279
- "SendMessageBatchRequestEntry$MessageAttributes": "<p>Each message attribute consists of a Name, Type, and Value. For more information, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/SQSMessageAttributes.html#SQSMessageAttributesNTV\">Message Attribute Items</a>.</p>",
280
- "SendMessageRequest$MessageAttributes": "<p>Each message attribute consists of a Name, Type, and Value. For more information, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/SQSMessageAttributes.html#SQSMessageAttributesNTV\">Message Attribute Items</a>.</p>"
281
- }
282
- },
283
- "MessageAttributeName": {
284
- "base": null,
285
- "refs": {
286
- "MessageAttributeNameList$member": null
287
- }
288
- },
289
- "MessageAttributeNameList": {
290
- "base": null,
291
- "refs": {
292
- "ReceiveMessageRequest$MessageAttributeNames": "<p>The name of the message attribute, where <i>N</i> is the index. The message attribute name can contain the following characters: A-Z, a-z, 0-9, underscore (_), hyphen (-), and period (.). The name must not start or end with a period, and it should not have successive periods. The name is case sensitive and must be unique among all attribute names for the message. The name can be up to 256 characters long. The name cannot start with \"AWS.\" or \"Amazon.\" (or any variations in casing), because these prefixes are reserved for use by Amazon Web Services.</p> <p>When using <code>ReceiveMessage</code>, you can send a list of attribute names to receive, or you can return all of the attributes by specifying \"All\" or \".*\" in your request. You can also use \"foo.*\" to return all message attributes starting with the \"foo\" prefix.</p>"
293
- }
294
- },
295
- "MessageAttributeValue": {
296
- "base": "<p>The user-specified message attribute value. For string data types, the value attribute has the same restrictions on the content as the message body. For more information, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_SendMessage.html\">SendMessage</a>.</p> <p>Name, type, and value must not be empty or null. In addition, the message body should not be empty or null. All parts of the message attribute, including name, type, and value, are included in the message size restriction, which is currently 256 KB (262,144 bytes).</p>",
297
- "refs": {
298
- "MessageAttributeMap$value": null
299
- }
300
- },
301
- "MessageList": {
302
- "base": null,
303
- "refs": {
304
- "ReceiveMessageResult$Messages": "<p>A list of messages.</p>"
305
- }
306
- },
307
- "MessageNotInflight": {
308
- "base": "<p>The message referred to is not in flight.</p>",
309
- "refs": {
310
- }
311
- },
312
- "OverLimit": {
313
- "base": "<p>The action that you requested would violate a limit. For example, ReceiveMessage returns this error if the maximum number of messages inflight has already been reached. <a>AddPermission</a> returns this error if the maximum number of permissions for the queue has already been reached. </p>",
314
- "refs": {
315
- }
316
- },
317
- "PurgeQueueInProgress": {
318
- "base": "<p>Indicates that the specified queue previously received a <code>PurgeQueue</code> request within the last 60 seconds, the time it can take to delete the messages in the queue.</p>",
319
- "refs": {
320
- }
321
- },
322
- "PurgeQueueRequest": {
323
- "base": null,
324
- "refs": {
325
- }
326
- },
327
- "QueueAttributeName": {
328
- "base": null,
329
- "refs": {
330
- "AttributeMap$key": "<p>The name of a queue attribute.</p>",
331
- "AttributeNameList$member": null
332
- }
333
- },
334
- "QueueDeletedRecently": {
335
- "base": "<p>You must wait 60 seconds after deleting a queue before you can create another with the same name.</p>",
336
- "refs": {
337
- }
338
- },
339
- "QueueDoesNotExist": {
340
- "base": "<p>The queue referred to does not exist.</p>",
341
- "refs": {
342
- }
343
- },
344
- "QueueNameExists": {
345
- "base": "<p>A queue already exists with this name. Amazon SQS returns this error only if the request includes attributes whose values differ from those of the existing queue.</p>",
346
- "refs": {
347
- }
348
- },
349
- "QueueUrlList": {
350
- "base": null,
351
- "refs": {
352
- "ListDeadLetterSourceQueuesResult$queueUrls": "A list of source queue URLs that have the RedrivePolicy queue attribute configured with a dead letter queue.",
353
- "ListQueuesResult$QueueUrls": "<p>A list of queue URLs, up to 1000 entries.</p>"
354
- }
355
- },
356
- "ReceiptHandleIsInvalid": {
357
- "base": "<p>The receipt handle provided is not valid.</p>",
358
- "refs": {
359
- }
360
- },
361
- "ReceiveMessageRequest": {
362
- "base": null,
363
- "refs": {
364
- }
365
- },
366
- "ReceiveMessageResult": {
367
- "base": "A list of received messages.",
368
- "refs": {
369
- }
370
- },
371
- "RemovePermissionRequest": {
372
- "base": null,
373
- "refs": {
374
- }
375
- },
376
- "SendMessageBatchRequest": {
377
- "base": null,
378
- "refs": {
379
- }
380
- },
381
- "SendMessageBatchRequestEntry": {
382
- "base": "<p>Contains the details of a single Amazon SQS message along with a <code>Id</code>. </p>",
383
- "refs": {
384
- "SendMessageBatchRequestEntryList$member": null
385
- }
386
- },
387
- "SendMessageBatchRequestEntryList": {
388
- "base": null,
389
- "refs": {
390
- "SendMessageBatchRequest$Entries": "<p>A list of <a>SendMessageBatchRequestEntry</a> items.</p>"
391
- }
392
- },
393
- "SendMessageBatchResult": {
394
- "base": "<p>For each message in the batch, the response contains a <a>SendMessageBatchResultEntry</a> tag if the message succeeds or a <a>BatchResultErrorEntry</a> tag if the message fails.</p>",
395
- "refs": {
396
- }
397
- },
398
- "SendMessageBatchResultEntry": {
399
- "base": "<p>Encloses a message ID for successfully enqueued message of a <a>SendMessageBatch</a>.</p>",
400
- "refs": {
401
- "SendMessageBatchResultEntryList$member": null
402
- }
403
- },
404
- "SendMessageBatchResultEntryList": {
405
- "base": null,
406
- "refs": {
407
- "SendMessageBatchResult$Successful": "<p>A list of <a>SendMessageBatchResultEntry</a> items.</p>"
408
- }
409
- },
410
- "SendMessageRequest": {
411
- "base": null,
412
- "refs": {
413
- }
414
- },
415
- "SendMessageResult": {
416
- "base": "<p>The MD5OfMessageBody and MessageId elements.</p>",
417
- "refs": {
418
- }
419
- },
420
- "SetQueueAttributesRequest": {
421
- "base": null,
422
- "refs": {
423
- }
424
- },
425
- "String": {
426
- "base": null,
427
- "refs": {
428
- "AWSAccountIdList$member": null,
429
- "ActionNameList$member": null,
430
- "AddPermissionRequest$QueueUrl": "<p>The URL of the Amazon SQS queue to take action on.</p>",
431
- "AddPermissionRequest$Label": "<p>The unique identification of the permission you're setting (e.g., <code>AliceSendMessage</code>). Constraints: Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.</p>",
432
- "AttributeMap$value": "<p>The value of a queue attribute.</p>",
433
- "BatchResultErrorEntry$Id": "<p>The id of an entry in a batch request.</p>",
434
- "BatchResultErrorEntry$Code": "<p>An error code representing why the action failed on this entry.</p>",
435
- "BatchResultErrorEntry$Message": "<p>A message explaining why the action failed on this entry.</p>",
436
- "ChangeMessageVisibilityBatchRequest$QueueUrl": "<p>The URL of the Amazon SQS queue to take action on.</p>",
437
- "ChangeMessageVisibilityBatchRequestEntry$Id": "<p>An identifier for this particular receipt handle. This is used to communicate the result. Note that the <code>Id</code>s of a batch request need to be unique within the request.</p>",
438
- "ChangeMessageVisibilityBatchRequestEntry$ReceiptHandle": "<p>A receipt handle.</p>",
439
- "ChangeMessageVisibilityBatchResultEntry$Id": "<p>Represents a message whose visibility timeout has been changed successfully.</p>",
440
- "ChangeMessageVisibilityRequest$QueueUrl": "<p>The URL of the Amazon SQS queue to take action on.</p>",
441
- "ChangeMessageVisibilityRequest$ReceiptHandle": "<p>The receipt handle associated with the message whose visibility timeout should be changed. This parameter is returned by the <a>ReceiveMessage</a> action.</p>",
442
- "CreateQueueRequest$QueueName": "<p>The name for the queue to be created.</p>",
443
- "CreateQueueResult$QueueUrl": "<p>The URL for the created Amazon SQS queue.</p>",
444
- "DeleteMessageBatchRequest$QueueUrl": "<p>The URL of the Amazon SQS queue to take action on.</p>",
445
- "DeleteMessageBatchRequestEntry$Id": "<p>An identifier for this particular receipt handle. This is used to communicate the result. Note that the <code>Id</code>s of a batch request need to be unique within the request.</p>",
446
- "DeleteMessageBatchRequestEntry$ReceiptHandle": "<p>A receipt handle.</p>",
447
- "DeleteMessageBatchResultEntry$Id": "<p>Represents a successfully deleted message.</p>",
448
- "DeleteMessageRequest$QueueUrl": "<p>The URL of the Amazon SQS queue to take action on.</p>",
449
- "DeleteMessageRequest$ReceiptHandle": "<p>The receipt handle associated with the message to delete.</p>",
450
- "DeleteQueueRequest$QueueUrl": "<p>The URL of the Amazon SQS queue to take action on.</p>",
451
- "GetQueueAttributesRequest$QueueUrl": "<p>The URL of the Amazon SQS queue to take action on.</p>",
452
- "GetQueueUrlRequest$QueueName": "<p>The name of the queue whose URL must be fetched. Maximum 80 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed.</p>",
453
- "GetQueueUrlRequest$QueueOwnerAWSAccountId": "<p>The AWS account ID of the account that created the queue.</p>",
454
- "GetQueueUrlResult$QueueUrl": "<p>The URL for the queue.</p>",
455
- "ListDeadLetterSourceQueuesRequest$QueueUrl": "The queue URL of a dead letter queue.",
456
- "ListQueuesRequest$QueueNamePrefix": "<p>A string to use for filtering the list results. Only those queues whose name begins with the specified string are returned.</p>",
457
- "Message$MessageId": "<p>A unique identifier for the message. Message IDs are considered unique across all AWS accounts for an extended period of time.</p>",
458
- "Message$ReceiptHandle": "<p>An identifier associated with the act of receiving the message. A new receipt handle is returned every time you receive a message. When deleting a message, you provide the last received receipt handle to delete the message.</p>",
459
- "Message$MD5OfBody": "<p>An MD5 digest of the non-URL-encoded message body string.</p>",
460
- "Message$Body": "<p>The message's contents (not URL-encoded).</p>",
461
- "Message$MD5OfMessageAttributes": "<p>An MD5 digest of the non-URL-encoded message attribute string. This can be used to verify that Amazon SQS received the message correctly. Amazon SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to <a href=\"http://www.faqs.org/rfcs/rfc1321.html\">http://www.faqs.org/rfcs/rfc1321.html</a>.</p>",
462
- "MessageAttributeMap$key": null,
463
- "MessageAttributeValue$StringValue": "<p>Strings are Unicode with UTF8 binary encoding. For a list of code values, see <a href=\"http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters\">http://en.wikipedia.org/wiki/ASCII#ASCII_printable_characters</a>.</p>",
464
- "MessageAttributeValue$DataType": "<p>Amazon SQS supports the following logical data types: String, Number, and Binary. In addition, you can append your own custom labels. For more information, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/SQSMessageAttributes.html#SQSMessageAttributes.DataTypes\">Message Attribute Data Types</a>.</p>",
465
- "PurgeQueueRequest$QueueUrl": "<p>The queue URL of the queue to delete the messages from when using the <code>PurgeQueue</code> API.</p>",
466
- "QueueUrlList$member": null,
467
- "ReceiveMessageRequest$QueueUrl": "<p>The URL of the Amazon SQS queue to take action on.</p>",
468
- "RemovePermissionRequest$QueueUrl": "<p>The URL of the Amazon SQS queue to take action on.</p>",
469
- "RemovePermissionRequest$Label": "<p>The identification of the permission to remove. This is the label added with the <a>AddPermission</a> action.</p>",
470
- "SendMessageBatchRequest$QueueUrl": "<p>The URL of the Amazon SQS queue to take action on.</p>",
471
- "SendMessageBatchRequestEntry$Id": "<p>An identifier for the message in this batch. This is used to communicate the result. Note that the <code>Id</code>s of a batch request need to be unique within the request.</p>",
472
- "SendMessageBatchRequestEntry$MessageBody": "<p>Body of the message.</p>",
473
- "SendMessageBatchResultEntry$Id": "<p>An identifier for the message in this batch.</p>",
474
- "SendMessageBatchResultEntry$MessageId": "<p>An identifier for the message.</p>",
475
- "SendMessageBatchResultEntry$MD5OfMessageBody": "<p>An MD5 digest of the non-URL-encoded message body string. This can be used to verify that Amazon SQS received the message correctly. Amazon SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to <a href=\"http://www.faqs.org/rfcs/rfc1321.html\">http://www.faqs.org/rfcs/rfc1321.html</a>.</p>",
476
- "SendMessageBatchResultEntry$MD5OfMessageAttributes": "<p>An MD5 digest of the non-URL-encoded message attribute string. This can be used to verify that Amazon SQS received the message batch correctly. Amazon SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to <a href=\"http://www.faqs.org/rfcs/rfc1321.html\">http://www.faqs.org/rfcs/rfc1321.html</a>.</p>",
477
- "SendMessageRequest$QueueUrl": "<p>The URL of the Amazon SQS queue to take action on.</p>",
478
- "SendMessageRequest$MessageBody": "<p>The message to send. String maximum 256 KB in size. For a list of allowed characters, see the preceding important note.</p>",
479
- "SendMessageResult$MD5OfMessageBody": "<p>An MD5 digest of the non-URL-encoded message body string. This can be used to verify that Amazon SQS received the message correctly. Amazon SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to <a href=\"http://www.faqs.org/rfcs/rfc1321.html\">http://www.faqs.org/rfcs/rfc1321.html</a>.</p>",
480
- "SendMessageResult$MD5OfMessageAttributes": "<p>An MD5 digest of the non-URL-encoded message attribute string. This can be used to verify that Amazon SQS received the message correctly. Amazon SQS first URL decodes the message before creating the MD5 digest. For information about MD5, go to <a href=\"http://www.faqs.org/rfcs/rfc1321.html\">http://www.faqs.org/rfcs/rfc1321.html</a>.</p>",
481
- "SendMessageResult$MessageId": "<p> An element containing the message ID of the message sent to the queue. For more information, see <a href=\"http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/ImportantIdentifiers.html\">Queue and Message Identifiers</a> in the <i>Amazon SQS Developer Guide</i>. </p>",
482
- "SetQueueAttributesRequest$QueueUrl": "<p>The URL of the Amazon SQS queue to take action on.</p>",
483
- "StringList$member": null
484
- }
485
- },
486
- "StringList": {
487
- "base": null,
488
- "refs": {
489
- "MessageAttributeValue$StringListValues": "<p>Not implemented. Reserved for future use.</p>"
490
- }
491
- },
492
- "TooManyEntriesInBatchRequest": {
493
- "base": "<p>Batch request contains more number of entries than permissible.</p>",
494
- "refs": {
495
- }
496
- },
497
- "UnsupportedOperation": {
498
- "base": "<p>Error code 400. Unsupported operation.</p>",
499
- "refs": {
500
- }
501
- }
502
- }
503
- }