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,339 +0,0 @@
1
- {
2
- "operations": {
3
- "BatchDeleteAttributes": "<p> Performs multiple DeleteAttributes operations in a single call, which reduces round trips and latencies. This enables Amazon SimpleDB to optimize requests, which generally yields better throughput. </p> <p> The following limitations are enforced for this operation: <ul> <li>1 MB request size</li> <li>25 item limit per BatchDeleteAttributes operation</li> </ul> </p>",
4
- "BatchPutAttributes": "<p> The <code>BatchPutAttributes</code> operation creates or replaces attributes within one or more items. By using this operation, the client can perform multiple <a>PutAttribute</a> operation with a single call. This helps yield savings in round trips and latencies, enabling Amazon SimpleDB to optimize requests and generally produce better throughput. </p> <p> The client may specify the item name with the <code>Item.X.ItemName</code> parameter. The client may specify new attributes using a combination of the <code>Item.X.Attribute.Y.Name</code> and <code>Item.X.Attribute.Y.Value</code> parameters. The client may specify the first attribute for the first item using the parameters <code>Item.0.Attribute.0.Name</code> and <code>Item.0.Attribute.0.Value</code>, and for the second attribute for the first item by the parameters <code>Item.0.Attribute.1.Name</code> and <code>Item.0.Attribute.1.Value</code>, and so on. </p> <p> Attributes are uniquely identified within an item by their name/value combination. For example, a single item can have the attributes <code>{ \"first_name\", \"first_value\" }</code> and <code>{ \"first_name\", \"second_value\" }</code>. However, it cannot have two attribute instances where both the <code>Item.X.Attribute.Y.Name</code> and <code>Item.X.Attribute.Y.Value</code> are the same. </p> <p> Optionally, the requester can supply the <code>Replace</code> parameter for each individual value. Setting this value to <code>true</code> will cause the new attribute values to replace the existing attribute values. For example, if an item <code>I</code> has the attributes <code>{ 'a', '1' }, { 'b', '2'}</code> and <code>{ 'b', '3' }</code> and the requester does a BatchPutAttributes of <code>{'I', 'b', '4' }</code> with the Replace parameter set to true, the final attributes of the item will be <code>{ 'a', '1' }</code> and <code>{ 'b', '4' }</code>, replacing the previous values of the 'b' attribute with the new value. </p> <important> This operation is vulnerable to exceeding the maximum URL size when making a REST request using the HTTP GET method. This operation does not support conditions using <code>Expected.X.Name</code>, <code>Expected.X.Value</code>, or <code>Expected.X.Exists</code>. </important> <p> You can execute multiple <code>BatchPutAttributes</code> operations and other operations in parallel. However, large numbers of concurrent <code>BatchPutAttributes</code> calls can result in Service Unavailable (503) responses. </p> <p> The following limitations are enforced for this operation: <ul> <li>256 attribute name-value pairs per item</li> <li>1 MB request size</li> <li>1 billion attributes per domain</li> <li>10 GB of total user data storage per domain</li> <li>25 item limit per <code>BatchPutAttributes</code> operation</li> </ul> </p>",
5
- "CreateDomain": "<p> The <code>CreateDomain</code> operation creates a new domain. The domain name should be unique among the domains associated with the Access Key ID provided in the request. The <code>CreateDomain</code> operation may take 10 or more seconds to complete. </p> <p> The client can create up to 100 domains per account. </p> <p> If the client requires additional domains, go to <a href=\"http://aws.amazon.com/contact-us/simpledb-limit-request/\"> http://aws.amazon.com/contact-us/simpledb-limit-request/</a>. </p>",
6
- "DeleteAttributes": "<p> Deletes one or more attributes associated with an item. If all attributes of the item are deleted, the item is deleted. </p> <p> <code>DeleteAttributes</code> is an idempotent operation; running it multiple times on the same item or attribute does not result in an error response. </p> <p> Because Amazon SimpleDB makes multiple copies of item data and uses an eventual consistency update model, performing a <a>GetAttributes</a> or <a>Select</a> operation (read) immediately after a <code>DeleteAttributes</code> or <a>PutAttributes</a> operation (write) might not return updated item data. </p>",
7
- "DeleteDomain": "<p> The <code>DeleteDomain</code> operation deletes a domain. Any items (and their attributes) in the domain are deleted as well. The <code>DeleteDomain</code> operation might take 10 or more seconds to complete. </p>",
8
- "DomainMetadata": "<p> Returns information about the domain, including when the domain was created, the number of items and attributes in the domain, and the size of the attribute names and values. </p>",
9
- "GetAttributes": "<p> Returns all of the attributes associated with the specified item. Optionally, the attributes returned can be limited to one or more attributes by specifying an attribute name parameter. </p> <p> If the item does not exist on the replica that was accessed for this operation, an empty set is returned. The system does not return an error as it cannot guarantee the item does not exist on other replicas. </p>",
10
- "ListDomains": "<p> The <code>ListDomains</code> operation lists all domains associated with the Access Key ID. It returns domain names up to the limit set by <a href=\"#MaxNumberOfDomains\">MaxNumberOfDomains</a>. A <a href=\"#NextToken\">NextToken</a> is returned if there are more than <code>MaxNumberOfDomains</code> domains. Calling <code>ListDomains</code> successive times with the <code>NextToken</code> provided by the operation returns up to <code>MaxNumberOfDomains</code> more domain names with each successive operation call. </p>",
11
- "PutAttributes": "<p> The PutAttributes operation creates or replaces attributes in an item. The client may specify new attributes using a combination of the <code>Attribute.X.Name</code> and <code>Attribute.X.Value</code> parameters. The client specifies the first attribute by the parameters <code>Attribute.0.Name</code> and <code>Attribute.0.Value</code>, the second attribute by the parameters <code>Attribute.1.Name</code> and <code>Attribute.1.Value</code>, and so on. </p> <p> Attributes are uniquely identified in an item by their name/value combination. For example, a single item can have the attributes <code>{ \"first_name\", \"first_value\" }</code> and <code>{ \"first_name\", second_value\" }</code>. However, it cannot have two attribute instances where both the <code>Attribute.X.Name</code> and <code>Attribute.X.Value</code> are the same. </p> <p> Optionally, the requestor can supply the <code>Replace</code> parameter for each individual attribute. Setting this value to <code>true</code> causes the new attribute value to replace the existing attribute value(s). For example, if an item has the attributes <code>{ 'a', '1' }</code>, <code>{ 'b', '2'}</code> and <code>{ 'b', '3' }</code> and the requestor calls <code>PutAttributes</code> using the attributes <code>{ 'b', '4' }</code> with the <code>Replace</code> parameter set to true, the final attributes of the item are changed to <code>{ 'a', '1' }</code> and <code>{ 'b', '4' }</code>, which replaces the previous values of the 'b' attribute with the new value. </p> <p> You cannot specify an empty string as an attribute name. </p> <p> Because Amazon SimpleDB makes multiple copies of client data and uses an eventual consistency update model, an immediate <a>GetAttributes</a> or <a>Select</a> operation (read) immediately after a <a>PutAttributes</a> or <a>DeleteAttributes</a> operation (write) might not return the updated data. </p> <p> The following limitations are enforced for this operation: <ul> <li>256 total attribute name-value pairs per item</li> <li>One billion attributes per domain</li> <li>10 GB of total user data storage per domain</li> </ul> </p>",
12
- "Select": "<p> The <code>Select</code> operation returns a set of attributes for <code>ItemNames</code> that match the select expression. <code>Select</code> is similar to the standard SQL SELECT statement. </p> <p> The total size of the response cannot exceed 1 MB in total size. Amazon SimpleDB automatically adjusts the number of items returned per page to enforce this limit. For example, if the client asks to retrieve 2500 items, but each individual item is 10 kB in size, the system returns 100 items and an appropriate <code>NextToken</code> so the client can access the next page of results. </p> <p> For information on how to construct select expressions, see Using Select to Create Amazon SimpleDB Queries in the Developer Guide. </p>"
13
- },
14
- "service": "Amazon SimpleDB is a web service providing the core database functions of data indexing and querying in the cloud. By offloading the time and effort associated with building and operating a web-scale database, SimpleDB provides developers the freedom to focus on application development. <p> A traditional, clustered relational database requires a sizable upfront capital outlay, is complex to design, and often requires extensive and repetitive database administration. Amazon SimpleDB is dramatically simpler, requiring no schema, automatically indexing your data and providing a simple API for storage and access. This approach eliminates the administrative burden of data modeling, index maintenance, and performance tuning. Developers gain access to this functionality within Amazon's proven computing environment, are able to scale instantly, and pay only for what they use. </p> <p> Visit <a href=\"http://aws.amazon.com/simpledb/\">http://aws.amazon.com/simpledb/</a> for more information. </p>",
15
- "shapes": {
16
- "Attribute": {
17
- "base": "<p></p>",
18
- "refs": {
19
- "AttributeList$member": null
20
- }
21
- },
22
- "AttributeDoesNotExist": {
23
- "base": "<p>The specified attribute does not exist.</p>",
24
- "refs": {
25
- }
26
- },
27
- "AttributeList": {
28
- "base": null,
29
- "refs": {
30
- "DeletableItem$Attributes": null,
31
- "DeleteAttributesRequest$Attributes": "A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items.",
32
- "GetAttributesResult$Attributes": "The list of attributes returned by the operation.",
33
- "Item$Attributes": "A list of attributes."
34
- }
35
- },
36
- "AttributeNameList": {
37
- "base": null,
38
- "refs": {
39
- "GetAttributesRequest$AttributeNames": "The names of the attributes."
40
- }
41
- },
42
- "BatchDeleteAttributesRequest": {
43
- "base": null,
44
- "refs": {
45
- }
46
- },
47
- "BatchPutAttributesRequest": {
48
- "base": null,
49
- "refs": {
50
- }
51
- },
52
- "Boolean": {
53
- "base": null,
54
- "refs": {
55
- "GetAttributesRequest$ConsistentRead": "Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If <code>true</code>, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.",
56
- "ReplaceableAttribute$Replace": "A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is <code>false</code>.",
57
- "SelectRequest$ConsistentRead": "Determines whether or not strong consistency should be enforced when data is read from SimpleDB. If <code>true</code>, any data previously written to SimpleDB will be returned. Otherwise, results will be consistent eventually, and the client may not see data that was written immediately before your read.",
58
- "UpdateCondition$Exists": "<p>A value specifying whether or not the specified attribute must exist with the specified value in order for the update condition to be satisfied. Specify <code>true</code> if the attribute must exist for the update condition to be satisfied. Specify <code>false</code> if the attribute should not exist in order for the update condition to be satisfied.</p>"
59
- }
60
- },
61
- "CreateDomainRequest": {
62
- "base": null,
63
- "refs": {
64
- }
65
- },
66
- "DeletableItem": {
67
- "base": null,
68
- "refs": {
69
- "DeletableItemList$member": null
70
- }
71
- },
72
- "DeletableItemList": {
73
- "base": null,
74
- "refs": {
75
- "BatchDeleteAttributesRequest$Items": "A list of items on which to perform the operation."
76
- }
77
- },
78
- "DeleteAttributesRequest": {
79
- "base": null,
80
- "refs": {
81
- }
82
- },
83
- "DeleteDomainRequest": {
84
- "base": null,
85
- "refs": {
86
- }
87
- },
88
- "DomainMetadataRequest": {
89
- "base": null,
90
- "refs": {
91
- }
92
- },
93
- "DomainMetadataResult": {
94
- "base": null,
95
- "refs": {
96
- }
97
- },
98
- "DomainNameList": {
99
- "base": null,
100
- "refs": {
101
- "ListDomainsResult$DomainNames": "A list of domain names that match the expression."
102
- }
103
- },
104
- "DuplicateItemName": {
105
- "base": "<p>The item name was specified more than once. </p>",
106
- "refs": {
107
- }
108
- },
109
- "Float": {
110
- "base": null,
111
- "refs": {
112
- "AttributeDoesNotExist$BoxUsage": null,
113
- "DuplicateItemName$BoxUsage": null,
114
- "InvalidNextToken$BoxUsage": null,
115
- "InvalidNumberPredicates$BoxUsage": null,
116
- "InvalidNumberValueTests$BoxUsage": null,
117
- "InvalidParameterValue$BoxUsage": null,
118
- "InvalidQueryExpression$BoxUsage": null,
119
- "MissingParameter$BoxUsage": null,
120
- "NoSuchDomain$BoxUsage": null,
121
- "NumberDomainAttributesExceeded$BoxUsage": null,
122
- "NumberDomainBytesExceeded$BoxUsage": null,
123
- "NumberDomainsExceeded$BoxUsage": null,
124
- "NumberItemAttributesExceeded$BoxUsage": null,
125
- "NumberSubmittedAttributesExceeded$BoxUsage": null,
126
- "NumberSubmittedItemsExceeded$BoxUsage": null,
127
- "RequestTimeout$BoxUsage": null,
128
- "TooManyRequestedAttributes$BoxUsage": null
129
- }
130
- },
131
- "GetAttributesRequest": {
132
- "base": null,
133
- "refs": {
134
- }
135
- },
136
- "GetAttributesResult": {
137
- "base": null,
138
- "refs": {
139
- }
140
- },
141
- "Integer": {
142
- "base": null,
143
- "refs": {
144
- "DomainMetadataResult$ItemCount": "The number of all items in the domain.",
145
- "DomainMetadataResult$AttributeNameCount": "The number of unique attribute names in the domain.",
146
- "DomainMetadataResult$AttributeValueCount": "The number of all attribute name/value pairs in the domain.",
147
- "DomainMetadataResult$Timestamp": "The data and time when metadata was calculated, in Epoch (UNIX) seconds.",
148
- "ListDomainsRequest$MaxNumberOfDomains": "The maximum number of domain names you want returned. The range is 1 to 100. The default setting is 100."
149
- }
150
- },
151
- "InvalidNextToken": {
152
- "base": "<p>The specified NextToken is not valid. </p>",
153
- "refs": {
154
- }
155
- },
156
- "InvalidNumberPredicates": {
157
- "base": "<p>Too many predicates exist in the query expression.</p>",
158
- "refs": {
159
- }
160
- },
161
- "InvalidNumberValueTests": {
162
- "base": "<p>Too many predicates exist in the query expression.</p>",
163
- "refs": {
164
- }
165
- },
166
- "InvalidParameterValue": {
167
- "base": "<p>The value for a parameter is invalid.</p>",
168
- "refs": {
169
- }
170
- },
171
- "InvalidQueryExpression": {
172
- "base": "<p>The specified query expression syntax is not valid.</p>",
173
- "refs": {
174
- }
175
- },
176
- "Item": {
177
- "base": "<p></p>",
178
- "refs": {
179
- "ItemList$member": null
180
- }
181
- },
182
- "ItemList": {
183
- "base": null,
184
- "refs": {
185
- "SelectResult$Items": "A list of items that match the select expression."
186
- }
187
- },
188
- "ListDomainsRequest": {
189
- "base": null,
190
- "refs": {
191
- }
192
- },
193
- "ListDomainsResult": {
194
- "base": null,
195
- "refs": {
196
- }
197
- },
198
- "Long": {
199
- "base": null,
200
- "refs": {
201
- "DomainMetadataResult$ItemNamesSizeBytes": "The total size of all item names in the domain, in bytes.",
202
- "DomainMetadataResult$AttributeNamesSizeBytes": "The total size of all unique attribute names in the domain, in bytes.",
203
- "DomainMetadataResult$AttributeValuesSizeBytes": "The total size of all attribute values in the domain, in bytes."
204
- }
205
- },
206
- "MissingParameter": {
207
- "base": "<p>The request must contain the specified missing parameter.</p>",
208
- "refs": {
209
- }
210
- },
211
- "NoSuchDomain": {
212
- "base": "<p>The specified domain does not exist.</p>",
213
- "refs": {
214
- }
215
- },
216
- "NumberDomainAttributesExceeded": {
217
- "base": "<p>Too many attributes in this domain.</p>",
218
- "refs": {
219
- }
220
- },
221
- "NumberDomainBytesExceeded": {
222
- "base": "<p>Too many bytes in this domain.</p>",
223
- "refs": {
224
- }
225
- },
226
- "NumberDomainsExceeded": {
227
- "base": "<p>Too many domains exist per this account.</p>",
228
- "refs": {
229
- }
230
- },
231
- "NumberItemAttributesExceeded": {
232
- "base": "<p>Too many attributes in this item.</p>",
233
- "refs": {
234
- }
235
- },
236
- "NumberSubmittedAttributesExceeded": {
237
- "base": "<p>Too many attributes exist in a single call.</p>",
238
- "refs": {
239
- }
240
- },
241
- "NumberSubmittedItemsExceeded": {
242
- "base": "<p>Too many items exist in a single call.</p>",
243
- "refs": {
244
- }
245
- },
246
- "PutAttributesRequest": {
247
- "base": null,
248
- "refs": {
249
- }
250
- },
251
- "ReplaceableAttribute": {
252
- "base": "<p></p>",
253
- "refs": {
254
- "ReplaceableAttributeList$member": null
255
- }
256
- },
257
- "ReplaceableAttributeList": {
258
- "base": null,
259
- "refs": {
260
- "PutAttributesRequest$Attributes": "The list of attributes.",
261
- "ReplaceableItem$Attributes": "The list of attributes for a replaceable item."
262
- }
263
- },
264
- "ReplaceableItem": {
265
- "base": "<p></p>",
266
- "refs": {
267
- "ReplaceableItemList$member": null
268
- }
269
- },
270
- "ReplaceableItemList": {
271
- "base": null,
272
- "refs": {
273
- "BatchPutAttributesRequest$Items": "A list of items on which to perform the operation."
274
- }
275
- },
276
- "RequestTimeout": {
277
- "base": "<p>A timeout occurred when attempting to query the specified domain with specified query expression.</p>",
278
- "refs": {
279
- }
280
- },
281
- "SelectRequest": {
282
- "base": null,
283
- "refs": {
284
- }
285
- },
286
- "SelectResult": {
287
- "base": null,
288
- "refs": {
289
- }
290
- },
291
- "String": {
292
- "base": null,
293
- "refs": {
294
- "Attribute$Name": "The name of the attribute.",
295
- "Attribute$AlternateNameEncoding": "<p></p>",
296
- "Attribute$Value": "The value of the attribute.",
297
- "Attribute$AlternateValueEncoding": "<p></p>",
298
- "AttributeNameList$member": null,
299
- "BatchDeleteAttributesRequest$DomainName": "The name of the domain in which the attributes are being deleted.",
300
- "BatchPutAttributesRequest$DomainName": "The name of the domain in which the attributes are being stored.",
301
- "CreateDomainRequest$DomainName": "The name of the domain to create. The name can range between 3 and 255 characters and can contain the following characters: a-z, A-Z, 0-9, '_', '-', and '.'.",
302
- "DeletableItem$Name": null,
303
- "DeleteAttributesRequest$DomainName": "The name of the domain in which to perform the operation.",
304
- "DeleteAttributesRequest$ItemName": "The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs.",
305
- "DeleteDomainRequest$DomainName": "The name of the domain to delete.",
306
- "DomainMetadataRequest$DomainName": "The name of the domain for which to display the metadata of.",
307
- "DomainNameList$member": null,
308
- "GetAttributesRequest$DomainName": "The name of the domain in which to perform the operation.",
309
- "GetAttributesRequest$ItemName": "The name of the item.",
310
- "Item$Name": "The name of the item.",
311
- "Item$AlternateNameEncoding": "<p></p>",
312
- "ListDomainsRequest$NextToken": "A string informing Amazon SimpleDB where to start the next list of domain names.",
313
- "ListDomainsResult$NextToken": "An opaque token indicating that there are more domains than the specified <code>MaxNumberOfDomains</code> still available.",
314
- "PutAttributesRequest$DomainName": "The name of the domain in which to perform the operation.",
315
- "PutAttributesRequest$ItemName": "The name of the item.",
316
- "ReplaceableAttribute$Name": "The name of the replaceable attribute.",
317
- "ReplaceableAttribute$Value": "The value of the replaceable attribute.",
318
- "ReplaceableItem$Name": "The name of the replaceable item.",
319
- "SelectRequest$SelectExpression": "The expression used to query the domain.",
320
- "SelectRequest$NextToken": "A string informing Amazon SimpleDB where to start the next list of <code>ItemNames</code>.",
321
- "SelectResult$NextToken": "An opaque token indicating that more items than <code>MaxNumberOfItems</code> were matched, the response size exceeded 1 megabyte, or the execution time exceeded 5 seconds.",
322
- "UpdateCondition$Name": "<p>The name of the attribute involved in the condition.</p>",
323
- "UpdateCondition$Value": "<p>The value of an attribute. This value can only be specified when the <code>Exists</code> parameter is equal to <code>true</code>.</p>"
324
- }
325
- },
326
- "TooManyRequestedAttributes": {
327
- "base": "<p>Too many attributes requested.</p>",
328
- "refs": {
329
- }
330
- },
331
- "UpdateCondition": {
332
- "base": "<p> Specifies the conditions under which data should be updated. If an update condition is specified for a request, the data will only be updated if the condition is satisfied. For example, if an attribute with a specific name and value exists, or if a specific attribute doesn't exist. </p>",
333
- "refs": {
334
- "DeleteAttributesRequest$Expected": "The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted.",
335
- "PutAttributesRequest$Expected": "The update condition which, if specified, determines whether the specified attributes will be updated or not. The update condition must be satisfied in order for this request to be processed and the attributes to be updated."
336
- }
337
- }
338
- }
339
- }
@@ -1,564 +0,0 @@
1
- {
2
- "operations": {
3
- "AddPermission": "<p>Adds a statement to a topic's access control policy, granting access for the specified AWS accounts to the specified actions.</p>",
4
- "ConfirmSubscription": "<p>Verifies an endpoint owner's intent to receive messages by validating the token sent to the endpoint by an earlier <code>Subscribe</code> action. If the token is valid, the action creates a new subscription and returns its Amazon Resource Name (ARN). This call requires an AWS signature only when the <code>AuthenticateOnUnsubscribe</code> flag is set to \"true\".</p>",
5
- "CreatePlatformApplication": "<p>Creates a platform application object for one of the supported push notification services, such as APNS and GCM, to which devices and mobile apps may register. You must specify PlatformPrincipal and PlatformCredential attributes when using the <code>CreatePlatformApplication</code> action. The PlatformPrincipal is received from the notification service. For APNS/APNS_SANDBOX, PlatformPrincipal is \"SSL certificate\". For GCM, PlatformPrincipal is not applicable. For ADM, PlatformPrincipal is \"client id\". The PlatformCredential is also received from the notification service. For APNS/APNS_SANDBOX, PlatformCredential is \"private key\". For GCM, PlatformCredential is \"API key\". For ADM, PlatformCredential is \"client secret\". The PlatformApplicationArn that is returned when using <code>CreatePlatformApplication</code> is then used as an attribute for the <code>CreatePlatformEndpoint</code> action. For more information, see <a href=\"http://docs.aws.amazon.com/sns/latest/dg/SNSMobilePush.html\">Using Amazon SNS Mobile Push Notifications</a>. </p>",
6
- "CreatePlatformEndpoint": "<p>Creates an endpoint for a device and mobile app on one of the supported push notification services, such as GCM and APNS. <code>CreatePlatformEndpoint</code> requires the PlatformApplicationArn that is returned from <code>CreatePlatformApplication</code>. The EndpointArn that is returned when using <code>CreatePlatformEndpoint</code> can then be used by the <code>Publish</code> action to send a message to a mobile app or by the <code>Subscribe</code> action for subscription to a topic. The <code>CreatePlatformEndpoint</code> action is idempotent, so if the requester already owns an endpoint with the same device token and attributes, that endpoint's ARN is returned without creating a new endpoint. For more information, see <a href=\"http://docs.aws.amazon.com/sns/latest/dg/SNSMobilePush.html\">Using Amazon SNS Mobile Push Notifications</a>. </p> <p>When using <code>CreatePlatformEndpoint</code> with Baidu, two attributes must be provided: ChannelId and UserId. The token field must also contain the ChannelId. For more information, see <a href=\"http://docs.aws.amazon.com/sns/latest/dg/SNSMobilePushBaiduEndpoint.html\">Creating an Amazon SNS Endpoint for Baidu</a>. </p>",
7
- "CreateTopic": "<p>Creates a topic to which notifications can be published. Users can create at most 3000 topics. For more information, see <a href=\"http://aws.amazon.com/sns/\">http://aws.amazon.com/sns</a>. This action is idempotent, so if the requester already owns a topic with the specified name, that topic's ARN is returned without creating a new topic.</p>",
8
- "DeleteEndpoint": "<p>Deletes the endpoint from Amazon SNS. This action is idempotent. For more information, see <a href=\"http://docs.aws.amazon.com/sns/latest/dg/SNSMobilePush.html\">Using Amazon SNS Mobile Push Notifications</a>. </p>",
9
- "DeletePlatformApplication": "<p>Deletes a platform application object for one of the supported push notification services, such as APNS and GCM. For more information, see <a href=\"http://docs.aws.amazon.com/sns/latest/dg/SNSMobilePush.html\">Using Amazon SNS Mobile Push Notifications</a>. </p>",
10
- "DeleteTopic": "<p>Deletes a topic and all its subscriptions. Deleting a topic might prevent some messages previously sent to the topic from being delivered to subscribers. This action is idempotent, so deleting a topic that does not exist does not result in an error.</p>",
11
- "GetEndpointAttributes": "<p>Retrieves the endpoint attributes for a device on one of the supported push notification services, such as GCM and APNS. For more information, see <a href=\"http://docs.aws.amazon.com/sns/latest/dg/SNSMobilePush.html\">Using Amazon SNS Mobile Push Notifications</a>. </p>",
12
- "GetPlatformApplicationAttributes": "<p>Retrieves the attributes of the platform application object for the supported push notification services, such as APNS and GCM. For more information, see <a href=\"http://docs.aws.amazon.com/sns/latest/dg/SNSMobilePush.html\">Using Amazon SNS Mobile Push Notifications</a>. </p>",
13
- "GetSubscriptionAttributes": "<p>Returns all of the properties of a subscription.</p>",
14
- "GetTopicAttributes": "<p>Returns all of the properties of a topic. Topic properties returned might differ based on the authorization of the user. </p>",
15
- "ListEndpointsByPlatformApplication": "<p>Lists the endpoints and endpoint attributes for devices in a supported push notification service, such as GCM and APNS. The results for <code>ListEndpointsByPlatformApplication</code> are paginated and return a limited list of endpoints, up to 100. If additional records are available after the first page results, then a NextToken string will be returned. To receive the next page, you call <code>ListEndpointsByPlatformApplication</code> again using the NextToken string received from the previous call. When there are no more records to return, NextToken will be null. For more information, see <a href=\"http://docs.aws.amazon.com/sns/latest/dg/SNSMobilePush.html\">Using Amazon SNS Mobile Push Notifications</a>. </p>",
16
- "ListPlatformApplications": "<p>Lists the platform application objects for the supported push notification services, such as APNS and GCM. The results for <code>ListPlatformApplications</code> are paginated and return a limited list of applications, up to 100. If additional records are available after the first page results, then a NextToken string will be returned. To receive the next page, you call <code>ListPlatformApplications</code> using the NextToken string received from the previous call. When there are no more records to return, NextToken will be null. For more information, see <a href=\"http://docs.aws.amazon.com/sns/latest/dg/SNSMobilePush.html\">Using Amazon SNS Mobile Push Notifications</a>. </p>",
17
- "ListSubscriptions": "<p>Returns a list of the requester's subscriptions. Each call returns a limited list of subscriptions, up to 100. If there are more subscriptions, a <code>NextToken</code> is also returned. Use the <code>NextToken</code> parameter in a new <code>ListSubscriptions</code> call to get further results.</p>",
18
- "ListSubscriptionsByTopic": "<p>Returns a list of the subscriptions to a specific topic. Each call returns a limited list of subscriptions, up to 100. If there are more subscriptions, a <code>NextToken</code> is also returned. Use the <code>NextToken</code> parameter in a new <code>ListSubscriptionsByTopic</code> call to get further results.</p>",
19
- "ListTopics": "<p>Returns a list of the requester's topics. Each call returns a limited list of topics, up to 100. If there are more topics, a <code>NextToken</code> is also returned. Use the <code>NextToken</code> parameter in a new <code>ListTopics</code> call to get further results.</p>",
20
- "Publish": "<p>Sends a message to all of a topic's subscribed endpoints. When a <code>messageId</code> is returned, the message has been saved and Amazon SNS will attempt to deliver it to the topic's subscribers shortly. The format of the outgoing message to each subscribed endpoint depends on the notification protocol selected.</p> <p>To use the <code>Publish</code> action for sending a message to a mobile endpoint, such as an app on a Kindle device or mobile phone, you must specify the EndpointArn. The EndpointArn is returned when making a call with the <code>CreatePlatformEndpoint</code> action. The second example below shows a request and response for publishing to a mobile endpoint. </p>",
21
- "RemovePermission": "<p>Removes a statement from a topic's access control policy.</p>",
22
- "SetEndpointAttributes": "<p>Sets the attributes for an endpoint for a device on one of the supported push notification services, such as GCM and APNS. For more information, see <a href=\"http://docs.aws.amazon.com/sns/latest/dg/SNSMobilePush.html\">Using Amazon SNS Mobile Push Notifications</a>. </p>",
23
- "SetPlatformApplicationAttributes": "<p>Sets the attributes of the platform application object for the supported push notification services, such as APNS and GCM. For more information, see <a href=\"http://docs.aws.amazon.com/sns/latest/dg/SNSMobilePush.html\">Using Amazon SNS Mobile Push Notifications</a>. </p>",
24
- "SetSubscriptionAttributes": "<p>Allows a subscription owner to set an attribute of the topic to a new value.</p>",
25
- "SetTopicAttributes": "<p>Allows a topic owner to set an attribute of the topic to a new value.</p>",
26
- "Subscribe": "<p>Prepares to subscribe an endpoint by sending the endpoint a confirmation message. To actually create a subscription, the endpoint owner must call the <code>ConfirmSubscription</code> action with the token from the confirmation message. Confirmation tokens are valid for three days.</p>",
27
- "Unsubscribe": "<p>Deletes a subscription. If the subscription requires authentication for deletion, only the owner of the subscription or the topic's owner can unsubscribe, and an AWS signature is required. If the <code>Unsubscribe</code> call does not require authentication and the requester is not the subscription owner, a final cancellation message is delivered to the endpoint, so that the endpoint owner can easily resubscribe to the topic if the <code>Unsubscribe</code> request was unintended.</p>"
28
- },
29
- "service": "<fullname>Amazon Simple Notification Service</fullname> <p>Amazon Simple Notification Service (Amazon SNS) is a web service that enables you to build distributed web-enabled applications. Applications can use Amazon SNS to easily push real-time notification messages to interested subscribers over multiple delivery protocols. For more information about this product see <a href=\"http://aws.amazon.com/sns/\">http://aws.amazon.com/sns</a>. For detailed information about Amazon SNS features and their associated API calls, see the <a href=\"http://docs.aws.amazon.com/sns/latest/dg/\">Amazon SNS Developer Guide</a>. </p> <p>We also provide SDKs that enable you to access Amazon SNS from your preferred programming language. The SDKs contain functionality that automatically takes care of tasks such as: cryptographically signing your service requests, retrying requests, and handling error responses. For a list of available SDKs, go to <a href=\"http://aws.amazon.com/tools/\">Tools for Amazon Web Services</a>. </p>",
30
- "shapes": {
31
- "ActionsList": {
32
- "base": null,
33
- "refs": {
34
- "AddPermissionInput$ActionName": "<p>The action you want to allow for the specified principal(s).</p> <p>Valid values: any Amazon SNS action name.</p>"
35
- }
36
- },
37
- "AddPermissionInput": {
38
- "base": null,
39
- "refs": {
40
- }
41
- },
42
- "AuthorizationErrorException": {
43
- "base": "<p>Indicates that the user has been denied access to the requested resource.</p>",
44
- "refs": {
45
- }
46
- },
47
- "Binary": {
48
- "base": null,
49
- "refs": {
50
- "MessageAttributeValue$BinaryValue": "<p>Binary type attributes can store any binary data, for example, compressed data, encrypted data, or images.</p>"
51
- }
52
- },
53
- "ConfirmSubscriptionInput": {
54
- "base": "Input for ConfirmSubscription action.",
55
- "refs": {
56
- }
57
- },
58
- "ConfirmSubscriptionResponse": {
59
- "base": "Response for ConfirmSubscriptions action.",
60
- "refs": {
61
- }
62
- },
63
- "CreateEndpointResponse": {
64
- "base": "<p>Response from CreateEndpoint action.</p>",
65
- "refs": {
66
- }
67
- },
68
- "CreatePlatformApplicationInput": {
69
- "base": "<p>Input for CreatePlatformApplication action.</p>",
70
- "refs": {
71
- }
72
- },
73
- "CreatePlatformApplicationResponse": {
74
- "base": "<p>Response from CreatePlatformApplication action.</p>",
75
- "refs": {
76
- }
77
- },
78
- "CreatePlatformEndpointInput": {
79
- "base": "<p>Input for CreatePlatformEndpoint action.</p>",
80
- "refs": {
81
- }
82
- },
83
- "CreateTopicInput": {
84
- "base": "<p>Input for CreateTopic action.</p>",
85
- "refs": {
86
- }
87
- },
88
- "CreateTopicResponse": {
89
- "base": "<p>Response from CreateTopic action.</p>",
90
- "refs": {
91
- }
92
- },
93
- "DelegatesList": {
94
- "base": null,
95
- "refs": {
96
- "AddPermissionInput$AWSAccountId": "<p>The AWS account IDs of the users (principals) who will be given access to the specified actions. The users must have AWS accounts, but do not need to be signed up for this service. </p>"
97
- }
98
- },
99
- "DeleteEndpointInput": {
100
- "base": "<p>Input for DeleteEndpoint action.</p>",
101
- "refs": {
102
- }
103
- },
104
- "DeletePlatformApplicationInput": {
105
- "base": "<p>Input for DeletePlatformApplication action.</p>",
106
- "refs": {
107
- }
108
- },
109
- "DeleteTopicInput": {
110
- "base": null,
111
- "refs": {
112
- }
113
- },
114
- "Endpoint": {
115
- "base": "<p>Endpoint for mobile app and device.</p>",
116
- "refs": {
117
- "ListOfEndpoints$member": null
118
- }
119
- },
120
- "EndpointDisabledException": {
121
- "base": "<p>Exception error indicating endpoint disabled.</p>",
122
- "refs": {
123
- }
124
- },
125
- "GetEndpointAttributesInput": {
126
- "base": "<p>Input for GetEndpointAttributes action.</p>",
127
- "refs": {
128
- }
129
- },
130
- "GetEndpointAttributesResponse": {
131
- "base": "<p>Response from GetEndpointAttributes of the EndpointArn.</p>",
132
- "refs": {
133
- }
134
- },
135
- "GetPlatformApplicationAttributesInput": {
136
- "base": "<p>Input for GetPlatformApplicationAttributes action.</p>",
137
- "refs": {
138
- }
139
- },
140
- "GetPlatformApplicationAttributesResponse": {
141
- "base": "<p>Response for GetPlatformApplicationAttributes action.</p>",
142
- "refs": {
143
- }
144
- },
145
- "GetSubscriptionAttributesInput": {
146
- "base": "<p>Input for GetSubscriptionAttributes.</p>",
147
- "refs": {
148
- }
149
- },
150
- "GetSubscriptionAttributesResponse": {
151
- "base": "<p>Response for GetSubscriptionAttributes action.</p>",
152
- "refs": {
153
- }
154
- },
155
- "GetTopicAttributesInput": {
156
- "base": "<p>Input for GetTopicAttributes action.</p>",
157
- "refs": {
158
- }
159
- },
160
- "GetTopicAttributesResponse": {
161
- "base": "<p>Response for GetTopicAttributes action.</p>",
162
- "refs": {
163
- }
164
- },
165
- "InternalErrorException": {
166
- "base": "<p>Indicates an internal service error.</p>",
167
- "refs": {
168
- }
169
- },
170
- "InvalidParameterException": {
171
- "base": "<p>Indicates that a request parameter does not comply with the associated constraints.</p>",
172
- "refs": {
173
- }
174
- },
175
- "InvalidParameterValueException": {
176
- "base": "<p>Indicates that a request parameter does not comply with the associated constraints.</p>",
177
- "refs": {
178
- }
179
- },
180
- "ListEndpointsByPlatformApplicationInput": {
181
- "base": "<p>Input for ListEndpointsByPlatformApplication action.</p>",
182
- "refs": {
183
- }
184
- },
185
- "ListEndpointsByPlatformApplicationResponse": {
186
- "base": "<p>Response for ListEndpointsByPlatformApplication action.</p>",
187
- "refs": {
188
- }
189
- },
190
- "ListOfEndpoints": {
191
- "base": null,
192
- "refs": {
193
- "ListEndpointsByPlatformApplicationResponse$Endpoints": "<p>Endpoints returned for ListEndpointsByPlatformApplication action.</p>"
194
- }
195
- },
196
- "ListOfPlatformApplications": {
197
- "base": null,
198
- "refs": {
199
- "ListPlatformApplicationsResponse$PlatformApplications": "<p>Platform applications returned when calling ListPlatformApplications action.</p>"
200
- }
201
- },
202
- "ListPlatformApplicationsInput": {
203
- "base": "<p>Input for ListPlatformApplications action.</p>",
204
- "refs": {
205
- }
206
- },
207
- "ListPlatformApplicationsResponse": {
208
- "base": "<p>Response for ListPlatformApplications action.</p>",
209
- "refs": {
210
- }
211
- },
212
- "ListSubscriptionsByTopicInput": {
213
- "base": "<p>Input for ListSubscriptionsByTopic action.</p>",
214
- "refs": {
215
- }
216
- },
217
- "ListSubscriptionsByTopicResponse": {
218
- "base": "<p>Response for ListSubscriptionsByTopic action.</p>",
219
- "refs": {
220
- }
221
- },
222
- "ListSubscriptionsInput": {
223
- "base": "Input for ListSubscriptions action.",
224
- "refs": {
225
- }
226
- },
227
- "ListSubscriptionsResponse": {
228
- "base": "<p>Response for ListSubscriptions action</p>",
229
- "refs": {
230
- }
231
- },
232
- "ListTopicsInput": {
233
- "base": null,
234
- "refs": {
235
- }
236
- },
237
- "ListTopicsResponse": {
238
- "base": "<p>Response for ListTopics action.</p>",
239
- "refs": {
240
- }
241
- },
242
- "MapStringToString": {
243
- "base": null,
244
- "refs": {
245
- "CreatePlatformApplicationInput$Attributes": "<p>For a list of attributes, see <a href=\"http://docs.aws.amazon.com/sns/latest/api/API_SetPlatformApplicationAttributes.html\">SetPlatformApplicationAttributes</a></p>",
246
- "CreatePlatformEndpointInput$Attributes": "<p>For a list of attributes, see <a href=\"http://docs.aws.amazon.com/sns/latest/api/API_SetEndpointAttributes.html\">SetEndpointAttributes</a>.</p>",
247
- "Endpoint$Attributes": "<p>Attributes for endpoint.</p>",
248
- "GetEndpointAttributesResponse$Attributes": "<p>Attributes include the following:</p> <ul> <li> <code>CustomUserData</code> -- arbitrary user data to associate with the endpoint. Amazon SNS does not use this data. The data must be in UTF-8 format and less than 2KB.</li> <li> <code>Enabled</code> -- flag that enables/disables delivery to the endpoint. Amazon SNS will set this to false when a notification service indicates to Amazon SNS that the endpoint is invalid. Users can set it back to true, typically after updating Token.</li> <li> <code>Token</code> -- device token, also referred to as a registration id, for an app and mobile device. This is returned from the notification service when an app and mobile device are registered with the notification service.</li> </ul>",
249
- "GetPlatformApplicationAttributesResponse$Attributes": "<p>Attributes include the following:</p> <ul> <li> <code>EventEndpointCreated</code> -- Topic ARN to which EndpointCreated event notifications should be sent.</li> <li> <code>EventEndpointDeleted</code> -- Topic ARN to which EndpointDeleted event notifications should be sent.</li> <li> <code>EventEndpointUpdated</code> -- Topic ARN to which EndpointUpdate event notifications should be sent.</li> <li> <code>EventDeliveryFailure</code> -- Topic ARN to which DeliveryFailure event notifications should be sent upon Direct Publish delivery failure (permanent) to one of the application's endpoints.</li> </ul>",
250
- "PlatformApplication$Attributes": "<p>Attributes for platform application object.</p>",
251
- "SetEndpointAttributesInput$Attributes": "<p>A map of the endpoint attributes. Attributes in this map include the following:</p> <ul> <li> <code>CustomUserData</code> -- arbitrary user data to associate with the endpoint. Amazon SNS does not use this data. The data must be in UTF-8 format and less than 2KB.</li> <li> <code>Enabled</code> -- flag that enables/disables delivery to the endpoint. Amazon SNS will set this to false when a notification service indicates to Amazon SNS that the endpoint is invalid. Users can set it back to true, typically after updating Token.</li> <li> <code>Token</code> -- device token, also referred to as a registration id, for an app and mobile device. This is returned from the notification service when an app and mobile device are registered with the notification service.</li> </ul>",
252
- "SetPlatformApplicationAttributesInput$Attributes": "<p>A map of the platform application attributes. Attributes in this map include the following:</p> <ul> <li> <code>PlatformCredential</code> -- The credential received from the notification service. For APNS/APNS_SANDBOX, PlatformCredential is \"private key\". For GCM, PlatformCredential is \"API key\". For ADM, PlatformCredential is \"client secret\".</li> <li> <code>PlatformPrincipal</code> -- The principal received from the notification service. For APNS/APNS_SANDBOX, PlatformPrincipal is \"SSL certificate\". For GCM, PlatformPrincipal is not applicable. For ADM, PlatformPrincipal is \"client id\".</li> <li> <code>EventEndpointCreated</code> -- Topic ARN to which EndpointCreated event notifications should be sent.</li> <li> <code>EventEndpointDeleted</code> -- Topic ARN to which EndpointDeleted event notifications should be sent.</li> <li> <code>EventEndpointUpdated</code> -- Topic ARN to which EndpointUpdate event notifications should be sent.</li> <li> <code>EventDeliveryFailure</code> -- Topic ARN to which DeliveryFailure event notifications should be sent upon Direct Publish delivery failure (permanent) to one of the application's endpoints.</li> </ul>"
253
- }
254
- },
255
- "MessageAttributeMap": {
256
- "base": null,
257
- "refs": {
258
- "PublishInput$MessageAttributes": "<p>Message attributes for Publish action.</p>"
259
- }
260
- },
261
- "MessageAttributeValue": {
262
- "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/sns/latest/api/API_Publish.html\">Publish</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). For more information, see <a href=\"http://docs.aws.amazon.com/sns/latest/dg/SNSMessageAttributes.html\">Using Amazon SNS Message Attributes</a>.</p>",
263
- "refs": {
264
- "MessageAttributeMap$value": null
265
- }
266
- },
267
- "NotFoundException": {
268
- "base": "<p>Indicates that the requested resource does not exist.</p>",
269
- "refs": {
270
- }
271
- },
272
- "PlatformApplication": {
273
- "base": "<p>Platform application object.</p>",
274
- "refs": {
275
- "ListOfPlatformApplications$member": null
276
- }
277
- },
278
- "PlatformApplicationDisabledException": {
279
- "base": "<p>Exception error indicating platform application disabled.</p>",
280
- "refs": {
281
- }
282
- },
283
- "PublishInput": {
284
- "base": "<p>Input for Publish action.</p>",
285
- "refs": {
286
- }
287
- },
288
- "PublishResponse": {
289
- "base": "<p>Response for Publish action.</p>",
290
- "refs": {
291
- }
292
- },
293
- "RemovePermissionInput": {
294
- "base": "<p>Input for RemovePermission action.</p>",
295
- "refs": {
296
- }
297
- },
298
- "SetEndpointAttributesInput": {
299
- "base": "<p>Input for SetEndpointAttributes action.</p>",
300
- "refs": {
301
- }
302
- },
303
- "SetPlatformApplicationAttributesInput": {
304
- "base": "<p>Input for SetPlatformApplicationAttributes action.</p>",
305
- "refs": {
306
- }
307
- },
308
- "SetSubscriptionAttributesInput": {
309
- "base": "<p>Input for SetSubscriptionAttributes action.</p>",
310
- "refs": {
311
- }
312
- },
313
- "SetTopicAttributesInput": {
314
- "base": "<p>Input for SetTopicAttributes action.</p>",
315
- "refs": {
316
- }
317
- },
318
- "String": {
319
- "base": null,
320
- "refs": {
321
- "CreateEndpointResponse$EndpointArn": "<p>EndpointArn returned from CreateEndpoint action.</p>",
322
- "CreatePlatformApplicationInput$Name": "<p>Application names must be made up of only uppercase and lowercase ASCII letters, numbers, underscores, hyphens, and periods, and must be between 1 and 256 characters long.</p>",
323
- "CreatePlatformApplicationInput$Platform": "<p>The following platforms are supported: ADM (Amazon Device Messaging), APNS (Apple Push Notification Service), APNS_SANDBOX, and GCM (Google Cloud Messaging).</p>",
324
- "CreatePlatformApplicationResponse$PlatformApplicationArn": "<p>PlatformApplicationArn is returned.</p>",
325
- "CreatePlatformEndpointInput$PlatformApplicationArn": "<p>PlatformApplicationArn returned from CreatePlatformApplication is used to create a an endpoint.</p>",
326
- "CreatePlatformEndpointInput$Token": "<p>Unique identifier created by the notification service for an app on a device. The specific name for Token will vary, depending on which notification service is being used. For example, when using APNS as the notification service, you need the device token. Alternatively, when using GCM or ADM, the device token equivalent is called the registration ID.</p>",
327
- "CreatePlatformEndpointInput$CustomUserData": "<p>Arbitrary user data to associate with the endpoint. Amazon SNS does not use this data. The data must be in UTF-8 format and less than 2KB.</p>",
328
- "DeleteEndpointInput$EndpointArn": "<p>EndpointArn of endpoint to delete.</p>",
329
- "DeletePlatformApplicationInput$PlatformApplicationArn": "<p>PlatformApplicationArn of platform application object to delete.</p>",
330
- "Endpoint$EndpointArn": "<p>EndpointArn for mobile app and device.</p>",
331
- "GetEndpointAttributesInput$EndpointArn": "<p>EndpointArn for GetEndpointAttributes input.</p>",
332
- "GetPlatformApplicationAttributesInput$PlatformApplicationArn": "<p>PlatformApplicationArn for GetPlatformApplicationAttributesInput.</p>",
333
- "ListEndpointsByPlatformApplicationInput$PlatformApplicationArn": "<p>PlatformApplicationArn for ListEndpointsByPlatformApplicationInput action.</p>",
334
- "ListEndpointsByPlatformApplicationInput$NextToken": "<p>NextToken string is used when calling ListEndpointsByPlatformApplication action to retrieve additional records that are available after the first page results.</p>",
335
- "ListEndpointsByPlatformApplicationResponse$NextToken": "<p>NextToken string is returned when calling ListEndpointsByPlatformApplication action if additional records are available after the first page results.</p>",
336
- "ListPlatformApplicationsInput$NextToken": "<p>NextToken string is used when calling ListPlatformApplications action to retrieve additional records that are available after the first page results.</p>",
337
- "ListPlatformApplicationsResponse$NextToken": "<p>NextToken string is returned when calling ListPlatformApplications action if additional records are available after the first page results.</p>",
338
- "MapStringToString$key": null,
339
- "MapStringToString$value": null,
340
- "MessageAttributeMap$key": null,
341
- "MessageAttributeValue$DataType": "<p>Amazon SNS supports the following logical data types: String, Number, and Binary. For more information, see <a href=\"http://docs.aws.amazon.com/sns/latest/dg/SNSMessageAttributes.html#SNSMessageAttributes.DataTypes\">Message Attribute Data Types</a>.</p>",
342
- "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>",
343
- "PlatformApplication$PlatformApplicationArn": "<p>PlatformApplicationArn for platform application object.</p>",
344
- "PublishInput$TargetArn": "<p>Either TopicArn or EndpointArn, but not both.</p>",
345
- "SetEndpointAttributesInput$EndpointArn": "<p>EndpointArn used for SetEndpointAttributes action.</p>",
346
- "SetPlatformApplicationAttributesInput$PlatformApplicationArn": "<p>PlatformApplicationArn for SetPlatformApplicationAttributes action.</p>"
347
- }
348
- },
349
- "SubscribeInput": {
350
- "base": "Input for Subscribe action.",
351
- "refs": {
352
- }
353
- },
354
- "SubscribeResponse": {
355
- "base": "Response for Subscribe action.",
356
- "refs": {
357
- }
358
- },
359
- "Subscription": {
360
- "base": "<p>A wrapper type for the attributes of an Amazon SNS subscription.</p>",
361
- "refs": {
362
- "SubscriptionsList$member": null
363
- }
364
- },
365
- "SubscriptionAttributesMap": {
366
- "base": null,
367
- "refs": {
368
- "GetSubscriptionAttributesResponse$Attributes": "<p>A map of the subscription's attributes. Attributes in this map include the following:</p> <ul> <li> <code>SubscriptionArn</code> -- the subscription's ARN</li> <li> <code>TopicArn</code> -- the topic ARN that the subscription is associated with</li> <li> <code>Owner</code> -- the AWS account ID of the subscription's owner</li> <li> <code>ConfirmationWasAuthenticated</code> -- true if the subscription confirmation request was authenticated</li> <li> <code>DeliveryPolicy</code> -- the JSON serialization of the subscription's delivery policy</li> <li> <code>EffectiveDeliveryPolicy</code> -- the JSON serialization of the effective delivery policy that takes into account the topic delivery policy and account system defaults</li> </ul>"
369
- }
370
- },
371
- "SubscriptionLimitExceededException": {
372
- "base": "<p>Indicates that the customer already owns the maximum allowed number of subscriptions.</p>",
373
- "refs": {
374
- }
375
- },
376
- "SubscriptionsList": {
377
- "base": null,
378
- "refs": {
379
- "ListSubscriptionsByTopicResponse$Subscriptions": "<p>A list of subscriptions.</p>",
380
- "ListSubscriptionsResponse$Subscriptions": "<p>A list of subscriptions.</p>"
381
- }
382
- },
383
- "Topic": {
384
- "base": "<p>A wrapper type for the topic's Amazon Resource Name (ARN). To retrieve a topic's attributes, use <code>GetTopicAttributes</code>.</p>",
385
- "refs": {
386
- "TopicsList$member": null
387
- }
388
- },
389
- "TopicAttributesMap": {
390
- "base": null,
391
- "refs": {
392
- "GetTopicAttributesResponse$Attributes": "<p>A map of the topic's attributes. Attributes in this map include the following:</p> <ul> <li> <code>TopicArn</code> -- the topic's ARN</li> <li> <code>Owner</code> -- the AWS account ID of the topic's owner</li> <li> <code>Policy</code> -- the JSON serialization of the topic's access control policy</li> <li> <code>DisplayName</code> -- the human-readable name used in the \"From\" field for notifications to email and email-json endpoints</li> <li> <code>SubscriptionsPending</code> -- the number of subscriptions pending confirmation on this topic</li> <li> <code>SubscriptionsConfirmed</code> -- the number of confirmed subscriptions on this topic</li> <li> <code>SubscriptionsDeleted</code> -- the number of deleted subscriptions on this topic</li> <li> <code>DeliveryPolicy</code> -- the JSON serialization of the topic's delivery policy</li> <li> <code>EffectiveDeliveryPolicy</code> -- the JSON serialization of the effective delivery policy that takes into account system defaults</li> </ul>"
393
- }
394
- },
395
- "TopicLimitExceededException": {
396
- "base": "<p>Indicates that the customer already owns the maximum allowed number of topics.</p>",
397
- "refs": {
398
- }
399
- },
400
- "TopicsList": {
401
- "base": null,
402
- "refs": {
403
- "ListTopicsResponse$Topics": "<p>A list of topic ARNs.</p>"
404
- }
405
- },
406
- "UnsubscribeInput": {
407
- "base": "<p>Input for Unsubscribe action.</p>",
408
- "refs": {
409
- }
410
- },
411
- "account": {
412
- "base": null,
413
- "refs": {
414
- "Subscription$Owner": "<p>The subscription's owner.</p>"
415
- }
416
- },
417
- "action": {
418
- "base": null,
419
- "refs": {
420
- "ActionsList$member": null
421
- }
422
- },
423
- "attributeName": {
424
- "base": null,
425
- "refs": {
426
- "SetSubscriptionAttributesInput$AttributeName": "<p>The name of the attribute you want to set. Only a subset of the subscriptions attributes are mutable.</p> <p>Valid values: <code>DeliveryPolicy</code> | <code>RawMessageDelivery</code></p>",
427
- "SetTopicAttributesInput$AttributeName": "<p>The name of the attribute you want to set. Only a subset of the topic's attributes are mutable.</p> <p>Valid values: <code>Policy</code> | <code>DisplayName</code> | <code>DeliveryPolicy</code></p>",
428
- "SubscriptionAttributesMap$key": null,
429
- "TopicAttributesMap$key": null
430
- }
431
- },
432
- "attributeValue": {
433
- "base": null,
434
- "refs": {
435
- "SetSubscriptionAttributesInput$AttributeValue": "<p>The new value for the attribute in JSON format.</p>",
436
- "SetTopicAttributesInput$AttributeValue": "<p>The new value for the attribute.</p>",
437
- "SubscriptionAttributesMap$value": null,
438
- "TopicAttributesMap$value": null
439
- }
440
- },
441
- "authenticateOnUnsubscribe": {
442
- "base": null,
443
- "refs": {
444
- "ConfirmSubscriptionInput$AuthenticateOnUnsubscribe": "<p>Disallows unauthenticated unsubscribes of the subscription. If the value of this parameter is <code>true</code> and the request has an AWS signature, then only the topic owner and the subscription owner can unsubscribe the endpoint. The unsubscribe action requires AWS authentication. </p>"
445
- }
446
- },
447
- "delegate": {
448
- "base": null,
449
- "refs": {
450
- "DelegatesList$member": null
451
- }
452
- },
453
- "endpoint": {
454
- "base": null,
455
- "refs": {
456
- "SubscribeInput$Endpoint": "<p>The endpoint that you want to receive notifications. Endpoints vary by protocol:</p> <ul> <li>For the <code>http</code> protocol, the endpoint is an URL beginning with \"http://\"</li> <li>For the <code>https</code> protocol, the endpoint is a URL beginning with \"https://\"</li> <li>For the <code>email</code> protocol, the endpoint is an email address</li> <li>For the <code>email-json</code> protocol, the endpoint is an email address</li> <li>For the <code>sms</code> protocol, the endpoint is a phone number of an SMS-enabled device</li> <li>For the <code>sqs</code> protocol, the endpoint is the ARN of an Amazon SQS queue</li> <li>For the <code>application</code> protocol, the endpoint is the EndpointArn of a mobile app and device.</li> </ul>",
457
- "Subscription$Endpoint": "<p>The subscription's endpoint (format depends on the protocol).</p>"
458
- }
459
- },
460
- "label": {
461
- "base": null,
462
- "refs": {
463
- "AddPermissionInput$Label": "<p>A unique identifier for the new policy statement.</p>",
464
- "RemovePermissionInput$Label": "<p>The unique label of the statement you want to remove.</p>"
465
- }
466
- },
467
- "message": {
468
- "base": null,
469
- "refs": {
470
- "PublishInput$Message": "<p>The message you want to send to the topic.</p> <p>If you want to send the same message to all transport protocols, include the text of the message as a String value.</p> <p>If you want to send different messages for each transport protocol, set the value of the <code>MessageStructure</code> parameter to <code>json</code> and use a JSON object for the <code>Message</code> parameter. See the Examples section for the format of the JSON object. </p> <p>Constraints: Messages must be UTF-8 encoded strings at most 256 KB in size (262144 bytes, not 262144 characters).</p> <p>JSON-specific constraints: <ul> <li>Keys in the JSON object that correspond to supported transport protocols must have simple JSON string values. </li> <li>The values will be parsed (unescaped) before they are used in outgoing messages.</li> <li>Outbound notifications are JSON encoded (meaning that the characters will be reescaped for sending).</li> <li>Values have a minimum length of 0 (the empty string, \"\", is allowed).</li> <li>Values have a maximum length bounded by the overall message size (so, including multiple protocols may limit message sizes).</li> <li>Non-string values will cause the key to be ignored.</li> <li>Keys that do not correspond to supported transport protocols are ignored.</li> <li>Duplicate keys are not allowed.</li> <li>Failure to parse or validate any key or value in the message will cause the <code>Publish</code> call to return an error (no partial delivery).</li> </ul> </p>"
471
- }
472
- },
473
- "messageId": {
474
- "base": null,
475
- "refs": {
476
- "PublishResponse$MessageId": "<p>Unique identifier assigned to the published message.</p> <p>Length Constraint: Maximum 100 characters</p>"
477
- }
478
- },
479
- "messageStructure": {
480
- "base": null,
481
- "refs": {
482
- "PublishInput$MessageStructure": "<p>Set <code>MessageStructure</code> to <code>json</code> if you want to send a different message for each protocol. For example, using one publish action, you can send a short message to your SMS subscribers and a longer message to your email subscribers. If you set <code>MessageStructure</code> to <code>json</code>, the value of the <code>Message</code> parameter must: </p> <ul> <li>be a syntactically valid JSON object; and</li> <li>contain at least a top-level JSON key of \"default\" with a value that is a string.</li> </ul> <p> You can define other top-level keys that define the message you want to send to a specific transport protocol (e.g., \"http\"). </p> <p>For information about sending different messages for each protocol using the AWS Management Console, go to <a href=\"http://docs.aws.amazon.com/sns/latest/gsg/Publish.html#sns-message-formatting-by-protocol\">Create Different Messages for Each Protocol</a> in the <i>Amazon Simple Notification Service Getting Started Guide</i>. </p> <p>Valid value: <code>json</code></p>"
483
- }
484
- },
485
- "nextToken": {
486
- "base": null,
487
- "refs": {
488
- "ListSubscriptionsByTopicInput$NextToken": "<p>Token returned by the previous <code>ListSubscriptionsByTopic</code> request.</p>",
489
- "ListSubscriptionsByTopicResponse$NextToken": "<p>Token to pass along to the next <code>ListSubscriptionsByTopic</code> request. This element is returned if there are more subscriptions to retrieve.</p>",
490
- "ListSubscriptionsInput$NextToken": "<p>Token returned by the previous <code>ListSubscriptions</code> request.</p>",
491
- "ListSubscriptionsResponse$NextToken": "<p>Token to pass along to the next <code>ListSubscriptions</code> request. This element is returned if there are more subscriptions to retrieve.</p>",
492
- "ListTopicsInput$NextToken": "<p>Token returned by the previous <code>ListTopics</code> request.</p>",
493
- "ListTopicsResponse$NextToken": "<p>Token to pass along to the next <code>ListTopics</code> request. This element is returned if there are additional topics to retrieve.</p>"
494
- }
495
- },
496
- "protocol": {
497
- "base": null,
498
- "refs": {
499
- "SubscribeInput$Protocol": "<p>The protocol you want to use. Supported protocols include:</p> <ul> <li> <code>http</code> -- delivery of JSON-encoded message via HTTP POST</li> <li> <code>https</code> -- delivery of JSON-encoded message via HTTPS POST</li> <li> <code>email</code> -- delivery of message via SMTP</li> <li> <code>email-json</code> -- delivery of JSON-encoded message via SMTP</li> <li> <code>sms</code> -- delivery of message via SMS</li> <li> <code>sqs</code> -- delivery of JSON-encoded message to an Amazon SQS queue</li> <li> <code>application</code> -- delivery of JSON-encoded message to an EndpointArn for a mobile app and device.</li> </ul>",
500
- "Subscription$Protocol": "<p>The subscription's protocol.</p>"
501
- }
502
- },
503
- "string": {
504
- "base": null,
505
- "refs": {
506
- "AuthorizationErrorException$message": null,
507
- "EndpointDisabledException$message": "<p>Message for endpoint disabled.</p>",
508
- "InternalErrorException$message": null,
509
- "InvalidParameterException$message": null,
510
- "InvalidParameterValueException$message": null,
511
- "NotFoundException$message": null,
512
- "PlatformApplicationDisabledException$message": "<p>Message for platform application disabled.</p>",
513
- "SubscriptionLimitExceededException$message": null,
514
- "TopicLimitExceededException$message": null
515
- }
516
- },
517
- "subject": {
518
- "base": null,
519
- "refs": {
520
- "PublishInput$Subject": "<p>Optional parameter to be used as the \"Subject\" line when the message is delivered to email endpoints. This field will also be included, if present, in the standard JSON messages delivered to other endpoints.</p> <p>Constraints: Subjects must be ASCII text that begins with a letter, number, or punctuation mark; must not include line breaks or control characters; and must be less than 100 characters long.</p>"
521
- }
522
- },
523
- "subscriptionARN": {
524
- "base": null,
525
- "refs": {
526
- "ConfirmSubscriptionResponse$SubscriptionArn": "<p>The ARN of the created subscription.</p>",
527
- "GetSubscriptionAttributesInput$SubscriptionArn": "<p>The ARN of the subscription whose properties you want to get.</p>",
528
- "SetSubscriptionAttributesInput$SubscriptionArn": "<p>The ARN of the subscription to modify.</p>",
529
- "SubscribeResponse$SubscriptionArn": "<p>The ARN of the subscription, if the service was able to create a subscription immediately (without requiring endpoint owner confirmation).</p>",
530
- "Subscription$SubscriptionArn": "<p>The subscription's ARN.</p>",
531
- "UnsubscribeInput$SubscriptionArn": "<p>The ARN of the subscription to be deleted.</p>"
532
- }
533
- },
534
- "token": {
535
- "base": null,
536
- "refs": {
537
- "ConfirmSubscriptionInput$Token": "<p>Short-lived token sent to an endpoint during the <code>Subscribe</code> action.</p>"
538
- }
539
- },
540
- "topicARN": {
541
- "base": null,
542
- "refs": {
543
- "AddPermissionInput$TopicArn": "<p>The ARN of the topic whose access control policy you wish to modify.</p>",
544
- "ConfirmSubscriptionInput$TopicArn": "<p>The ARN of the topic for which you wish to confirm a subscription.</p>",
545
- "CreateTopicResponse$TopicArn": "<p>The Amazon Resource Name (ARN) assigned to the created topic.</p>",
546
- "DeleteTopicInput$TopicArn": "<p>The ARN of the topic you want to delete.</p>",
547
- "GetTopicAttributesInput$TopicArn": "<p>The ARN of the topic whose properties you want to get.</p>",
548
- "ListSubscriptionsByTopicInput$TopicArn": "<p>The ARN of the topic for which you wish to find subscriptions.</p>",
549
- "PublishInput$TopicArn": "<p>The topic you want to publish to.</p>",
550
- "RemovePermissionInput$TopicArn": "<p>The ARN of the topic whose access control policy you wish to modify.</p>",
551
- "SetTopicAttributesInput$TopicArn": "<p>The ARN of the topic to modify.</p>",
552
- "SubscribeInput$TopicArn": "<p>The ARN of the topic you want to subscribe to.</p>",
553
- "Subscription$TopicArn": "<p>The ARN of the subscription's topic.</p>",
554
- "Topic$TopicArn": "<p>The topic's ARN.</p>"
555
- }
556
- },
557
- "topicName": {
558
- "base": null,
559
- "refs": {
560
- "CreateTopicInput$Name": "<p>The name of the topic you want to create.</p> <p>Constraints: Topic names must be made up of only uppercase and lowercase ASCII letters, numbers, underscores, and hyphens, and must be between 1 and 256 characters long. </p>"
561
- }
562
- }
563
- }
564
- }