aws-sdk-core 2.4.0 → 3.53.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (487) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +96 -408
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +41 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  16. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +22 -5
  18. data/lib/aws-sdk-core/ecs_credentials.rb +3 -3
  19. data/lib/aws-sdk-core/endpoint_cache.rb +188 -0
  20. data/lib/aws-sdk-core/errors.rb +174 -10
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +21 -12
  24. data/lib/aws-sdk-core/json.rb +4 -5
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +56 -21
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +256 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  46. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  47. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  48. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  49. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  50. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  51. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  52. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  53. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  54. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  55. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  56. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +28 -16
  57. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  58. data/lib/aws-sdk-core/plugins/retry_errors.rb +97 -23
  59. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  60. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  61. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  62. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  63. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  64. data/lib/aws-sdk-core/process_credentials.rb +76 -0
  65. data/lib/aws-sdk-core/query.rb +5 -0
  66. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  67. data/lib/aws-sdk-core/query/handler.rb +20 -16
  68. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  69. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  70. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  71. data/lib/aws-sdk-core/rest.rb +10 -0
  72. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  73. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  74. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  75. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  76. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  77. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  78. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  79. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  80. data/lib/aws-sdk-core/shared_config.rb +132 -18
  81. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  82. data/lib/aws-sdk-core/structure.rb +21 -11
  83. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  84. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  85. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  88. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  89. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  90. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  91. data/lib/aws-sdk-core/util.rb +66 -0
  92. data/lib/aws-sdk-core/waiters.rb +3 -0
  93. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  94. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  95. data/lib/aws-sdk-core/xml.rb +9 -0
  96. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  97. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  98. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  99. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  100. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  101. data/lib/aws-sdk-sts.rb +45 -0
  102. data/lib/aws-sdk-sts/client.rb +1761 -0
  103. data/lib/aws-sdk-sts/client_api.rb +304 -0
  104. data/lib/aws-sdk-sts/customizations.rb +0 -0
  105. data/lib/aws-sdk-sts/errors.rb +142 -0
  106. data/lib/aws-sdk-sts/resource.rb +23 -0
  107. data/lib/aws-sdk-sts/types.rb +1279 -0
  108. data/lib/seahorse.rb +60 -60
  109. data/lib/seahorse/client/async_base.rb +50 -0
  110. data/lib/seahorse/client/async_response.rb +62 -0
  111. data/lib/seahorse/client/base.rb +2 -8
  112. data/lib/seahorse/client/configuration.rb +9 -1
  113. data/lib/seahorse/client/h2/connection.rb +244 -0
  114. data/lib/seahorse/client/h2/handler.rb +151 -0
  115. data/lib/seahorse/client/http/async_response.rb +42 -0
  116. data/lib/seahorse/client/http/response.rb +10 -5
  117. data/lib/seahorse/client/logging/formatter.rb +5 -1
  118. data/lib/seahorse/client/logging/handler.rb +2 -0
  119. data/lib/seahorse/client/net_http/connection_pool.rb +27 -11
  120. data/lib/seahorse/client/net_http/handler.rb +10 -2
  121. data/lib/seahorse/client/net_http/patches.rb +9 -1
  122. data/lib/seahorse/client/networking_error.rb +28 -0
  123. data/lib/seahorse/client/plugin.rb +66 -6
  124. data/lib/seahorse/client/plugin_list.rb +3 -1
  125. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  126. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  127. data/lib/seahorse/client/plugins/h2.rb +64 -0
  128. data/lib/seahorse/client/plugins/logging.rb +17 -19
  129. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  130. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  131. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  132. data/lib/seahorse/client/request_context.rb +5 -0
  133. data/lib/seahorse/client/response.rb +9 -20
  134. data/lib/seahorse/model/api.rb +37 -0
  135. data/lib/seahorse/model/authorizer.rb +21 -0
  136. data/lib/seahorse/model/operation.rb +20 -0
  137. data/lib/seahorse/model/shapes.rb +44 -2
  138. data/lib/seahorse/util.rb +1 -21
  139. metadata +112 -359
  140. data/apis/acm/2015-12-08/api-2.json +0 -495
  141. data/apis/acm/2015-12-08/examples-1.json +0 -5
  142. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  143. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  144. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  145. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  146. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  147. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  148. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  149. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  150. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  151. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  152. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  153. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  154. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  155. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  156. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  157. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  158. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  159. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  160. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  161. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  162. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  163. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  164. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  165. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  166. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  167. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  168. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  169. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  170. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  171. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  172. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  173. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  174. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  175. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  176. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  177. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  178. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  179. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  180. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  181. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  182. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  183. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  184. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  185. data/apis/config/2014-11-12/api-2.json +0 -1303
  186. data/apis/config/2014-11-12/examples-1.json +0 -5
  187. data/apis/config/2014-11-12/paginators-1.json +0 -10
  188. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  189. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  190. data/apis/devicefarm/2015-06-23/api-2.json +0 -2030
  191. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  192. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  193. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  194. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  195. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  196. data/apis/discovery/2015-11-01/api-2.json +0 -556
  197. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  198. data/apis/dms/2016-01-01/api-2.json +0 -1469
  199. data/apis/dms/2016-01-01/examples-1.json +0 -5
  200. data/apis/ds/2015-04-16/api-2.json +0 -1674
  201. data/apis/ds/2015-04-16/examples-1.json +0 -5
  202. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  203. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  204. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  205. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  206. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  207. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  208. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  209. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  210. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  211. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  212. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  213. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  214. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  215. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  216. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  217. data/apis/ecr/2015-09-21/api-2.json +0 -849
  218. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  219. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  220. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  221. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  222. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  223. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  224. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  225. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  226. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  227. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  228. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  229. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  230. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  231. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  232. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  233. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  234. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  235. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  236. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  237. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  238. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  239. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  240. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  241. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  242. data/apis/email/2010-12-01/api-2.json +0 -1791
  243. data/apis/email/2010-12-01/examples-1.json +0 -5
  244. data/apis/email/2010-12-01/paginators-1.json +0 -13
  245. data/apis/email/2010-12-01/waiters-2.json +0 -18
  246. data/apis/es/2015-01-01/api-2.json +0 -764
  247. data/apis/events/2015-10-07/api-2.json +0 -643
  248. data/apis/events/2015-10-07/examples-1.json +0 -5
  249. data/apis/firehose/2015-08-04/api-2.json +0 -719
  250. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  251. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  252. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  253. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  254. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  255. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  256. data/apis/iam/2010-05-08/api-2.json +0 -4514
  257. data/apis/iam/2010-05-08/examples-1.json +0 -5
  258. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  259. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  260. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  261. data/apis/importexport/2010-06-01/api-2.json +0 -666
  262. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  263. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  264. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  265. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  266. data/apis/iot/2015-05-28/api-2.json +0 -3800
  267. data/apis/iot/2015-05-28/examples-1.json +0 -5
  268. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  269. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  270. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  271. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  272. data/apis/kms/2014-11-01/api-2.json +0 -1209
  273. data/apis/kms/2014-11-01/examples-1.json +0 -5
  274. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  275. data/apis/lambda/2014-11-11/api-2.json +0 -667
  276. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  277. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  278. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  279. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  280. data/apis/logs/2014-03-28/api-2.json +0 -1138
  281. data/apis/logs/2014-03-28/examples-1.json +0 -5
  282. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  283. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  284. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  285. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  286. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  287. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  288. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  289. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  290. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  291. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  292. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  293. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  294. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  295. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  296. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  297. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  298. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  299. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  300. data/apis/rds/2014-10-31/api-2.json +0 -4757
  301. data/apis/rds/2014-10-31/examples-1.json +0 -5
  302. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  303. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  304. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  305. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  306. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  307. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  308. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  309. data/apis/route53/2013-04-01/api-2.json +0 -3245
  310. data/apis/route53/2013-04-01/examples-1.json +0 -5
  311. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  312. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  313. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  314. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  315. data/apis/s3/2006-03-01/api-2.json +0 -4517
  316. data/apis/s3/2006-03-01/examples-1.json +0 -5
  317. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  318. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  319. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  320. data/apis/sdb/2009-04-15/api-2.json +0 -954
  321. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  322. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  323. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  324. data/apis/sns/2010-03-31/api-2.json +0 -1139
  325. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  326. data/apis/sns/2010-03-31/resources-1.json +0 -327
  327. data/apis/sqs/2012-11-05/api-2.json +0 -950
  328. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  329. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  330. data/apis/ssm/2014-11-06/api-2.json +0 -1796
  331. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  332. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  333. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  334. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  335. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  336. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  337. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  338. data/apis/sts/2011-06-15/api-2.json +0 -521
  339. data/apis/sts/2011-06-15/examples-1.json +0 -5
  340. data/apis/support/2013-04-15/api-2.json +0 -869
  341. data/apis/support/2013-04-15/paginators-1.json +0 -25
  342. data/apis/swf/2012-01-25/api-2.json +0 -2838
  343. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  344. data/apis/waf/2015-08-24/api-2.json +0 -1959
  345. data/apis/waf/2015-08-24/examples-1.json +0 -5
  346. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  347. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  348. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  349. data/bin/aws.rb +0 -180
  350. data/endpoints.json +0 -1460
  351. data/lib/aws-sdk-core/acm.rb +0 -6
  352. data/lib/aws-sdk-core/api/builder.rb +0 -106
  353. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  354. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  355. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  356. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  357. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  358. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  359. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  360. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  361. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  362. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  363. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  364. data/lib/aws-sdk-core/apigateway.rb +0 -6
  365. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  366. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  367. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  368. data/lib/aws-sdk-core/checksums.rb +0 -51
  369. data/lib/aws-sdk-core/client.rb +0 -57
  370. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  371. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  372. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  373. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  374. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  375. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  376. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  377. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  378. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  379. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  380. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  381. data/lib/aws-sdk-core/codecommit.rb +0 -6
  382. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  383. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  384. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  385. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  386. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  387. data/lib/aws-sdk-core/configservice.rb +0 -6
  388. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  389. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  390. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  391. data/lib/aws-sdk-core/directconnect.rb +0 -6
  392. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  393. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  394. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  395. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  396. data/lib/aws-sdk-core/ec2.rb +0 -8
  397. data/lib/aws-sdk-core/ecr.rb +0 -5
  398. data/lib/aws-sdk-core/ecs.rb +0 -7
  399. data/lib/aws-sdk-core/efs.rb +0 -5
  400. data/lib/aws-sdk-core/elasticache.rb +0 -7
  401. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  402. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  403. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  404. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  405. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  406. data/lib/aws-sdk-core/emr.rb +0 -7
  407. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  408. data/lib/aws-sdk-core/firehose.rb +0 -4
  409. data/lib/aws-sdk-core/gamelift.rb +0 -5
  410. data/lib/aws-sdk-core/glacier.rb +0 -7
  411. data/lib/aws-sdk-core/iam.rb +0 -8
  412. data/lib/aws-sdk-core/importexport.rb +0 -5
  413. data/lib/aws-sdk-core/inspector.rb +0 -5
  414. data/lib/aws-sdk-core/iot.rb +0 -5
  415. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  416. data/lib/aws-sdk-core/kinesis.rb +0 -7
  417. data/lib/aws-sdk-core/kms.rb +0 -6
  418. data/lib/aws-sdk-core/lambda.rb +0 -6
  419. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  420. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  421. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  422. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  423. data/lib/aws-sdk-core/opsworks.rb +0 -8
  424. data/lib/aws-sdk-core/partitions.rb +0 -174
  425. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  426. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  427. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  428. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  429. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  430. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  431. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  432. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  433. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  434. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  435. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  436. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  437. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  438. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  439. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  440. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  441. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  442. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  443. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  444. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  445. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  446. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  447. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  448. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  449. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  450. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  451. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  452. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  453. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  454. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  455. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  456. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  457. data/lib/aws-sdk-core/rds.rb +0 -8
  458. data/lib/aws-sdk-core/redshift.rb +0 -7
  459. data/lib/aws-sdk-core/route53.rb +0 -7
  460. data/lib/aws-sdk-core/route53domains.rb +0 -5
  461. data/lib/aws-sdk-core/s3.rb +0 -26
  462. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  463. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  464. data/lib/aws-sdk-core/service.rb +0 -4
  465. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  466. data/lib/aws-sdk-core/ses.rb +0 -7
  467. data/lib/aws-sdk-core/signers/base.rb +0 -31
  468. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  469. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  470. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  471. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  472. data/lib/aws-sdk-core/simpledb.rb +0 -5
  473. data/lib/aws-sdk-core/sns.rb +0 -6
  474. data/lib/aws-sdk-core/sqs.rb +0 -6
  475. data/lib/aws-sdk-core/ssm.rb +0 -6
  476. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  477. data/lib/aws-sdk-core/sts.rb +0 -5
  478. data/lib/aws-sdk-core/support.rb +0 -5
  479. data/lib/aws-sdk-core/swf.rb +0 -5
  480. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  481. data/lib/aws-sdk-core/version.rb +0 -3
  482. data/lib/aws-sdk-core/waf.rb +0 -5
  483. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  484. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  485. data/lib/aws-sdk-core/workspaces.rb +0 -6
  486. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  487. data/service-models.json +0 -285
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,1139 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2010-03-31",
5
- "endpointPrefix":"sns",
6
- "protocol":"query",
7
- "serviceAbbreviation":"Amazon SNS",
8
- "serviceFullName":"Amazon Simple Notification Service",
9
- "signatureVersion":"v4",
10
- "xmlNamespace":"http://sns.amazonaws.com/doc/2010-03-31/"
11
- },
12
- "operations":{
13
- "AddPermission":{
14
- "name":"AddPermission",
15
- "http":{
16
- "method":"POST",
17
- "requestUri":"/"
18
- },
19
- "input":{"shape":"AddPermissionInput"},
20
- "errors":[
21
- {"shape":"InvalidParameterException"},
22
- {"shape":"InternalErrorException"},
23
- {"shape":"AuthorizationErrorException"},
24
- {"shape":"NotFoundException"}
25
- ]
26
- },
27
- "CheckIfPhoneNumberIsOptedOut":{
28
- "name":"CheckIfPhoneNumberIsOptedOut",
29
- "http":{
30
- "method":"POST",
31
- "requestUri":"/"
32
- },
33
- "input":{"shape":"CheckIfPhoneNumberIsOptedOutInput"},
34
- "output":{
35
- "shape":"CheckIfPhoneNumberIsOptedOutResponse",
36
- "resultWrapper":"CheckIfPhoneNumberIsOptedOutResult"
37
- },
38
- "errors":[
39
- {"shape":"ThrottledException"},
40
- {"shape":"InternalErrorException"},
41
- {"shape":"InvalidParameterException"}
42
- ]
43
- },
44
- "ConfirmSubscription":{
45
- "name":"ConfirmSubscription",
46
- "http":{
47
- "method":"POST",
48
- "requestUri":"/"
49
- },
50
- "input":{"shape":"ConfirmSubscriptionInput"},
51
- "output":{
52
- "shape":"ConfirmSubscriptionResponse",
53
- "resultWrapper":"ConfirmSubscriptionResult"
54
- },
55
- "errors":[
56
- {"shape":"SubscriptionLimitExceededException"},
57
- {"shape":"InvalidParameterException"},
58
- {"shape":"NotFoundException"},
59
- {"shape":"InternalErrorException"},
60
- {"shape":"AuthorizationErrorException"}
61
- ]
62
- },
63
- "CreatePlatformApplication":{
64
- "name":"CreatePlatformApplication",
65
- "http":{
66
- "method":"POST",
67
- "requestUri":"/"
68
- },
69
- "input":{"shape":"CreatePlatformApplicationInput"},
70
- "output":{
71
- "shape":"CreatePlatformApplicationResponse",
72
- "resultWrapper":"CreatePlatformApplicationResult"
73
- },
74
- "errors":[
75
- {"shape":"InvalidParameterException"},
76
- {"shape":"InternalErrorException"},
77
- {"shape":"AuthorizationErrorException"}
78
- ]
79
- },
80
- "CreatePlatformEndpoint":{
81
- "name":"CreatePlatformEndpoint",
82
- "http":{
83
- "method":"POST",
84
- "requestUri":"/"
85
- },
86
- "input":{"shape":"CreatePlatformEndpointInput"},
87
- "output":{
88
- "shape":"CreateEndpointResponse",
89
- "resultWrapper":"CreatePlatformEndpointResult"
90
- },
91
- "errors":[
92
- {"shape":"InvalidParameterException"},
93
- {"shape":"InternalErrorException"},
94
- {"shape":"AuthorizationErrorException"},
95
- {"shape":"NotFoundException"}
96
- ]
97
- },
98
- "CreateTopic":{
99
- "name":"CreateTopic",
100
- "http":{
101
- "method":"POST",
102
- "requestUri":"/"
103
- },
104
- "input":{"shape":"CreateTopicInput"},
105
- "output":{
106
- "shape":"CreateTopicResponse",
107
- "resultWrapper":"CreateTopicResult"
108
- },
109
- "errors":[
110
- {"shape":"InvalidParameterException"},
111
- {"shape":"TopicLimitExceededException"},
112
- {"shape":"InternalErrorException"},
113
- {"shape":"AuthorizationErrorException"}
114
- ]
115
- },
116
- "DeleteEndpoint":{
117
- "name":"DeleteEndpoint",
118
- "http":{
119
- "method":"POST",
120
- "requestUri":"/"
121
- },
122
- "input":{"shape":"DeleteEndpointInput"},
123
- "errors":[
124
- {"shape":"InvalidParameterException"},
125
- {"shape":"InternalErrorException"},
126
- {"shape":"AuthorizationErrorException"}
127
- ]
128
- },
129
- "DeletePlatformApplication":{
130
- "name":"DeletePlatformApplication",
131
- "http":{
132
- "method":"POST",
133
- "requestUri":"/"
134
- },
135
- "input":{"shape":"DeletePlatformApplicationInput"},
136
- "errors":[
137
- {"shape":"InvalidParameterException"},
138
- {"shape":"InternalErrorException"},
139
- {"shape":"AuthorizationErrorException"}
140
- ]
141
- },
142
- "DeleteTopic":{
143
- "name":"DeleteTopic",
144
- "http":{
145
- "method":"POST",
146
- "requestUri":"/"
147
- },
148
- "input":{"shape":"DeleteTopicInput"},
149
- "errors":[
150
- {"shape":"InvalidParameterException"},
151
- {"shape":"InternalErrorException"},
152
- {"shape":"AuthorizationErrorException"},
153
- {"shape":"NotFoundException"}
154
- ]
155
- },
156
- "GetEndpointAttributes":{
157
- "name":"GetEndpointAttributes",
158
- "http":{
159
- "method":"POST",
160
- "requestUri":"/"
161
- },
162
- "input":{"shape":"GetEndpointAttributesInput"},
163
- "output":{
164
- "shape":"GetEndpointAttributesResponse",
165
- "resultWrapper":"GetEndpointAttributesResult"
166
- },
167
- "errors":[
168
- {"shape":"InvalidParameterException"},
169
- {"shape":"InternalErrorException"},
170
- {"shape":"AuthorizationErrorException"},
171
- {"shape":"NotFoundException"}
172
- ]
173
- },
174
- "GetPlatformApplicationAttributes":{
175
- "name":"GetPlatformApplicationAttributes",
176
- "http":{
177
- "method":"POST",
178
- "requestUri":"/"
179
- },
180
- "input":{"shape":"GetPlatformApplicationAttributesInput"},
181
- "output":{
182
- "shape":"GetPlatformApplicationAttributesResponse",
183
- "resultWrapper":"GetPlatformApplicationAttributesResult"
184
- },
185
- "errors":[
186
- {"shape":"InvalidParameterException"},
187
- {"shape":"InternalErrorException"},
188
- {"shape":"AuthorizationErrorException"},
189
- {"shape":"NotFoundException"}
190
- ]
191
- },
192
- "GetSMSAttributes":{
193
- "name":"GetSMSAttributes",
194
- "http":{
195
- "method":"POST",
196
- "requestUri":"/"
197
- },
198
- "input":{"shape":"GetSMSAttributesInput"},
199
- "output":{
200
- "shape":"GetSMSAttributesResponse",
201
- "resultWrapper":"GetSMSAttributesResult"
202
- },
203
- "errors":[
204
- {"shape":"ThrottledException"},
205
- {"shape":"InternalErrorException"},
206
- {"shape":"InvalidParameterException"}
207
- ]
208
- },
209
- "GetSubscriptionAttributes":{
210
- "name":"GetSubscriptionAttributes",
211
- "http":{
212
- "method":"POST",
213
- "requestUri":"/"
214
- },
215
- "input":{"shape":"GetSubscriptionAttributesInput"},
216
- "output":{
217
- "shape":"GetSubscriptionAttributesResponse",
218
- "resultWrapper":"GetSubscriptionAttributesResult"
219
- },
220
- "errors":[
221
- {"shape":"InvalidParameterException"},
222
- {"shape":"InternalErrorException"},
223
- {"shape":"NotFoundException"},
224
- {"shape":"AuthorizationErrorException"}
225
- ]
226
- },
227
- "GetTopicAttributes":{
228
- "name":"GetTopicAttributes",
229
- "http":{
230
- "method":"POST",
231
- "requestUri":"/"
232
- },
233
- "input":{"shape":"GetTopicAttributesInput"},
234
- "output":{
235
- "shape":"GetTopicAttributesResponse",
236
- "resultWrapper":"GetTopicAttributesResult"
237
- },
238
- "errors":[
239
- {"shape":"InvalidParameterException"},
240
- {"shape":"InternalErrorException"},
241
- {"shape":"NotFoundException"},
242
- {"shape":"AuthorizationErrorException"}
243
- ]
244
- },
245
- "ListEndpointsByPlatformApplication":{
246
- "name":"ListEndpointsByPlatformApplication",
247
- "http":{
248
- "method":"POST",
249
- "requestUri":"/"
250
- },
251
- "input":{"shape":"ListEndpointsByPlatformApplicationInput"},
252
- "output":{
253
- "shape":"ListEndpointsByPlatformApplicationResponse",
254
- "resultWrapper":"ListEndpointsByPlatformApplicationResult"
255
- },
256
- "errors":[
257
- {"shape":"InvalidParameterException"},
258
- {"shape":"InternalErrorException"},
259
- {"shape":"AuthorizationErrorException"},
260
- {"shape":"NotFoundException"}
261
- ]
262
- },
263
- "ListPhoneNumbersOptedOut":{
264
- "name":"ListPhoneNumbersOptedOut",
265
- "http":{
266
- "method":"POST",
267
- "requestUri":"/"
268
- },
269
- "input":{"shape":"ListPhoneNumbersOptedOutInput"},
270
- "output":{
271
- "shape":"ListPhoneNumbersOptedOutResponse",
272
- "resultWrapper":"ListPhoneNumbersOptedOutResult"
273
- },
274
- "errors":[
275
- {"shape":"ThrottledException"},
276
- {"shape":"InternalErrorException"},
277
- {"shape":"InvalidParameterException"}
278
- ]
279
- },
280
- "ListPlatformApplications":{
281
- "name":"ListPlatformApplications",
282
- "http":{
283
- "method":"POST",
284
- "requestUri":"/"
285
- },
286
- "input":{"shape":"ListPlatformApplicationsInput"},
287
- "output":{
288
- "shape":"ListPlatformApplicationsResponse",
289
- "resultWrapper":"ListPlatformApplicationsResult"
290
- },
291
- "errors":[
292
- {"shape":"InvalidParameterException"},
293
- {"shape":"InternalErrorException"},
294
- {"shape":"AuthorizationErrorException"}
295
- ]
296
- },
297
- "ListSubscriptions":{
298
- "name":"ListSubscriptions",
299
- "http":{
300
- "method":"POST",
301
- "requestUri":"/"
302
- },
303
- "input":{"shape":"ListSubscriptionsInput"},
304
- "output":{
305
- "shape":"ListSubscriptionsResponse",
306
- "resultWrapper":"ListSubscriptionsResult"
307
- },
308
- "errors":[
309
- {"shape":"InvalidParameterException"},
310
- {"shape":"InternalErrorException"},
311
- {"shape":"AuthorizationErrorException"}
312
- ]
313
- },
314
- "ListSubscriptionsByTopic":{
315
- "name":"ListSubscriptionsByTopic",
316
- "http":{
317
- "method":"POST",
318
- "requestUri":"/"
319
- },
320
- "input":{"shape":"ListSubscriptionsByTopicInput"},
321
- "output":{
322
- "shape":"ListSubscriptionsByTopicResponse",
323
- "resultWrapper":"ListSubscriptionsByTopicResult"
324
- },
325
- "errors":[
326
- {"shape":"InvalidParameterException"},
327
- {"shape":"InternalErrorException"},
328
- {"shape":"NotFoundException"},
329
- {"shape":"AuthorizationErrorException"}
330
- ]
331
- },
332
- "ListTopics":{
333
- "name":"ListTopics",
334
- "http":{
335
- "method":"POST",
336
- "requestUri":"/"
337
- },
338
- "input":{"shape":"ListTopicsInput"},
339
- "output":{
340
- "shape":"ListTopicsResponse",
341
- "resultWrapper":"ListTopicsResult"
342
- },
343
- "errors":[
344
- {"shape":"InvalidParameterException"},
345
- {"shape":"InternalErrorException"},
346
- {"shape":"AuthorizationErrorException"}
347
- ]
348
- },
349
- "OptInPhoneNumber":{
350
- "name":"OptInPhoneNumber",
351
- "http":{
352
- "method":"POST",
353
- "requestUri":"/"
354
- },
355
- "input":{"shape":"OptInPhoneNumberInput"},
356
- "output":{
357
- "shape":"OptInPhoneNumberResponse",
358
- "resultWrapper":"OptInPhoneNumberResult"
359
- },
360
- "errors":[
361
- {"shape":"ThrottledException"},
362
- {"shape":"InternalErrorException"},
363
- {"shape":"InvalidParameterException"}
364
- ]
365
- },
366
- "Publish":{
367
- "name":"Publish",
368
- "http":{
369
- "method":"POST",
370
- "requestUri":"/"
371
- },
372
- "input":{"shape":"PublishInput"},
373
- "output":{
374
- "shape":"PublishResponse",
375
- "resultWrapper":"PublishResult"
376
- },
377
- "errors":[
378
- {"shape":"InvalidParameterException"},
379
- {"shape":"InvalidParameterValueException"},
380
- {"shape":"InternalErrorException"},
381
- {"shape":"NotFoundException"},
382
- {"shape":"EndpointDisabledException"},
383
- {"shape":"PlatformApplicationDisabledException"},
384
- {"shape":"AuthorizationErrorException"}
385
- ]
386
- },
387
- "RemovePermission":{
388
- "name":"RemovePermission",
389
- "http":{
390
- "method":"POST",
391
- "requestUri":"/"
392
- },
393
- "input":{"shape":"RemovePermissionInput"},
394
- "errors":[
395
- {"shape":"InvalidParameterException"},
396
- {"shape":"InternalErrorException"},
397
- {"shape":"AuthorizationErrorException"},
398
- {"shape":"NotFoundException"}
399
- ]
400
- },
401
- "SetEndpointAttributes":{
402
- "name":"SetEndpointAttributes",
403
- "http":{
404
- "method":"POST",
405
- "requestUri":"/"
406
- },
407
- "input":{"shape":"SetEndpointAttributesInput"},
408
- "errors":[
409
- {"shape":"InvalidParameterException"},
410
- {"shape":"InternalErrorException"},
411
- {"shape":"AuthorizationErrorException"},
412
- {"shape":"NotFoundException"}
413
- ]
414
- },
415
- "SetPlatformApplicationAttributes":{
416
- "name":"SetPlatformApplicationAttributes",
417
- "http":{
418
- "method":"POST",
419
- "requestUri":"/"
420
- },
421
- "input":{"shape":"SetPlatformApplicationAttributesInput"},
422
- "errors":[
423
- {"shape":"InvalidParameterException"},
424
- {"shape":"InternalErrorException"},
425
- {"shape":"AuthorizationErrorException"},
426
- {"shape":"NotFoundException"}
427
- ]
428
- },
429
- "SetSMSAttributes":{
430
- "name":"SetSMSAttributes",
431
- "http":{
432
- "method":"POST",
433
- "requestUri":"/"
434
- },
435
- "input":{"shape":"SetSMSAttributesInput"},
436
- "output":{
437
- "shape":"SetSMSAttributesResponse",
438
- "resultWrapper":"SetSMSAttributesResult"
439
- },
440
- "errors":[
441
- {"shape":"InvalidParameterException"},
442
- {"shape":"ThrottledException"},
443
- {"shape":"InternalErrorException"}
444
- ]
445
- },
446
- "SetSubscriptionAttributes":{
447
- "name":"SetSubscriptionAttributes",
448
- "http":{
449
- "method":"POST",
450
- "requestUri":"/"
451
- },
452
- "input":{"shape":"SetSubscriptionAttributesInput"},
453
- "errors":[
454
- {"shape":"InvalidParameterException"},
455
- {"shape":"InternalErrorException"},
456
- {"shape":"NotFoundException"},
457
- {"shape":"AuthorizationErrorException"}
458
- ]
459
- },
460
- "SetTopicAttributes":{
461
- "name":"SetTopicAttributes",
462
- "http":{
463
- "method":"POST",
464
- "requestUri":"/"
465
- },
466
- "input":{"shape":"SetTopicAttributesInput"},
467
- "errors":[
468
- {"shape":"InvalidParameterException"},
469
- {"shape":"InternalErrorException"},
470
- {"shape":"NotFoundException"},
471
- {"shape":"AuthorizationErrorException"}
472
- ]
473
- },
474
- "Subscribe":{
475
- "name":"Subscribe",
476
- "http":{
477
- "method":"POST",
478
- "requestUri":"/"
479
- },
480
- "input":{"shape":"SubscribeInput"},
481
- "output":{
482
- "shape":"SubscribeResponse",
483
- "resultWrapper":"SubscribeResult"
484
- },
485
- "errors":[
486
- {"shape":"SubscriptionLimitExceededException"},
487
- {"shape":"InvalidParameterException"},
488
- {"shape":"InternalErrorException"},
489
- {"shape":"NotFoundException"},
490
- {"shape":"AuthorizationErrorException"}
491
- ]
492
- },
493
- "Unsubscribe":{
494
- "name":"Unsubscribe",
495
- "http":{
496
- "method":"POST",
497
- "requestUri":"/"
498
- },
499
- "input":{"shape":"UnsubscribeInput"},
500
- "errors":[
501
- {"shape":"InvalidParameterException"},
502
- {"shape":"InternalErrorException"},
503
- {"shape":"AuthorizationErrorException"},
504
- {"shape":"NotFoundException"}
505
- ]
506
- }
507
- },
508
- "shapes":{
509
- "ActionsList":{
510
- "type":"list",
511
- "member":{"shape":"action"}
512
- },
513
- "AddPermissionInput":{
514
- "type":"structure",
515
- "required":[
516
- "TopicArn",
517
- "Label",
518
- "AWSAccountId",
519
- "ActionName"
520
- ],
521
- "members":{
522
- "TopicArn":{"shape":"topicARN"},
523
- "Label":{"shape":"label"},
524
- "AWSAccountId":{"shape":"DelegatesList"},
525
- "ActionName":{"shape":"ActionsList"}
526
- }
527
- },
528
- "AuthorizationErrorException":{
529
- "type":"structure",
530
- "members":{
531
- "message":{"shape":"string"}
532
- },
533
- "error":{
534
- "code":"AuthorizationError",
535
- "httpStatusCode":403,
536
- "senderFault":true
537
- },
538
- "exception":true
539
- },
540
- "Binary":{"type":"blob"},
541
- "CheckIfPhoneNumberIsOptedOutInput":{
542
- "type":"structure",
543
- "required":["phoneNumber"],
544
- "members":{
545
- "phoneNumber":{"shape":"PhoneNumber"}
546
- }
547
- },
548
- "CheckIfPhoneNumberIsOptedOutResponse":{
549
- "type":"structure",
550
- "members":{
551
- "isOptedOut":{"shape":"boolean"}
552
- }
553
- },
554
- "ConfirmSubscriptionInput":{
555
- "type":"structure",
556
- "required":[
557
- "TopicArn",
558
- "Token"
559
- ],
560
- "members":{
561
- "TopicArn":{"shape":"topicARN"},
562
- "Token":{"shape":"token"},
563
- "AuthenticateOnUnsubscribe":{"shape":"authenticateOnUnsubscribe"}
564
- }
565
- },
566
- "ConfirmSubscriptionResponse":{
567
- "type":"structure",
568
- "members":{
569
- "SubscriptionArn":{"shape":"subscriptionARN"}
570
- }
571
- },
572
- "CreateEndpointResponse":{
573
- "type":"structure",
574
- "members":{
575
- "EndpointArn":{"shape":"String"}
576
- }
577
- },
578
- "CreatePlatformApplicationInput":{
579
- "type":"structure",
580
- "required":[
581
- "Name",
582
- "Platform",
583
- "Attributes"
584
- ],
585
- "members":{
586
- "Name":{"shape":"String"},
587
- "Platform":{"shape":"String"},
588
- "Attributes":{"shape":"MapStringToString"}
589
- }
590
- },
591
- "CreatePlatformApplicationResponse":{
592
- "type":"structure",
593
- "members":{
594
- "PlatformApplicationArn":{"shape":"String"}
595
- }
596
- },
597
- "CreatePlatformEndpointInput":{
598
- "type":"structure",
599
- "required":[
600
- "PlatformApplicationArn",
601
- "Token"
602
- ],
603
- "members":{
604
- "PlatformApplicationArn":{"shape":"String"},
605
- "Token":{"shape":"String"},
606
- "CustomUserData":{"shape":"String"},
607
- "Attributes":{"shape":"MapStringToString"}
608
- }
609
- },
610
- "CreateTopicInput":{
611
- "type":"structure",
612
- "required":["Name"],
613
- "members":{
614
- "Name":{"shape":"topicName"}
615
- }
616
- },
617
- "CreateTopicResponse":{
618
- "type":"structure",
619
- "members":{
620
- "TopicArn":{"shape":"topicARN"}
621
- }
622
- },
623
- "DelegatesList":{
624
- "type":"list",
625
- "member":{"shape":"delegate"}
626
- },
627
- "DeleteEndpointInput":{
628
- "type":"structure",
629
- "required":["EndpointArn"],
630
- "members":{
631
- "EndpointArn":{"shape":"String"}
632
- }
633
- },
634
- "DeletePlatformApplicationInput":{
635
- "type":"structure",
636
- "required":["PlatformApplicationArn"],
637
- "members":{
638
- "PlatformApplicationArn":{"shape":"String"}
639
- }
640
- },
641
- "DeleteTopicInput":{
642
- "type":"structure",
643
- "required":["TopicArn"],
644
- "members":{
645
- "TopicArn":{"shape":"topicARN"}
646
- }
647
- },
648
- "Endpoint":{
649
- "type":"structure",
650
- "members":{
651
- "EndpointArn":{"shape":"String"},
652
- "Attributes":{"shape":"MapStringToString"}
653
- }
654
- },
655
- "EndpointDisabledException":{
656
- "type":"structure",
657
- "members":{
658
- "message":{"shape":"string"}
659
- },
660
- "error":{
661
- "code":"EndpointDisabled",
662
- "httpStatusCode":400,
663
- "senderFault":true
664
- },
665
- "exception":true
666
- },
667
- "GetEndpointAttributesInput":{
668
- "type":"structure",
669
- "required":["EndpointArn"],
670
- "members":{
671
- "EndpointArn":{"shape":"String"}
672
- }
673
- },
674
- "GetEndpointAttributesResponse":{
675
- "type":"structure",
676
- "members":{
677
- "Attributes":{"shape":"MapStringToString"}
678
- }
679
- },
680
- "GetPlatformApplicationAttributesInput":{
681
- "type":"structure",
682
- "required":["PlatformApplicationArn"],
683
- "members":{
684
- "PlatformApplicationArn":{"shape":"String"}
685
- }
686
- },
687
- "GetPlatformApplicationAttributesResponse":{
688
- "type":"structure",
689
- "members":{
690
- "Attributes":{"shape":"MapStringToString"}
691
- }
692
- },
693
- "GetSMSAttributesInput":{
694
- "type":"structure",
695
- "members":{
696
- "attributes":{"shape":"ListString"}
697
- }
698
- },
699
- "GetSMSAttributesResponse":{
700
- "type":"structure",
701
- "members":{
702
- "attributes":{"shape":"MapStringToString"}
703
- }
704
- },
705
- "GetSubscriptionAttributesInput":{
706
- "type":"structure",
707
- "required":["SubscriptionArn"],
708
- "members":{
709
- "SubscriptionArn":{"shape":"subscriptionARN"}
710
- }
711
- },
712
- "GetSubscriptionAttributesResponse":{
713
- "type":"structure",
714
- "members":{
715
- "Attributes":{"shape":"SubscriptionAttributesMap"}
716
- }
717
- },
718
- "GetTopicAttributesInput":{
719
- "type":"structure",
720
- "required":["TopicArn"],
721
- "members":{
722
- "TopicArn":{"shape":"topicARN"}
723
- }
724
- },
725
- "GetTopicAttributesResponse":{
726
- "type":"structure",
727
- "members":{
728
- "Attributes":{"shape":"TopicAttributesMap"}
729
- }
730
- },
731
- "InternalErrorException":{
732
- "type":"structure",
733
- "members":{
734
- "message":{"shape":"string"}
735
- },
736
- "error":{
737
- "code":"InternalError",
738
- "httpStatusCode":500
739
- },
740
- "exception":true,
741
- "fault":true
742
- },
743
- "InvalidParameterException":{
744
- "type":"structure",
745
- "members":{
746
- "message":{"shape":"string"}
747
- },
748
- "error":{
749
- "code":"InvalidParameter",
750
- "httpStatusCode":400,
751
- "senderFault":true
752
- },
753
- "exception":true
754
- },
755
- "InvalidParameterValueException":{
756
- "type":"structure",
757
- "members":{
758
- "message":{"shape":"string"}
759
- },
760
- "error":{
761
- "code":"ParameterValueInvalid",
762
- "httpStatusCode":400,
763
- "senderFault":true
764
- },
765
- "exception":true
766
- },
767
- "ListEndpointsByPlatformApplicationInput":{
768
- "type":"structure",
769
- "required":["PlatformApplicationArn"],
770
- "members":{
771
- "PlatformApplicationArn":{"shape":"String"},
772
- "NextToken":{"shape":"String"}
773
- }
774
- },
775
- "ListEndpointsByPlatformApplicationResponse":{
776
- "type":"structure",
777
- "members":{
778
- "Endpoints":{"shape":"ListOfEndpoints"},
779
- "NextToken":{"shape":"String"}
780
- }
781
- },
782
- "ListOfEndpoints":{
783
- "type":"list",
784
- "member":{"shape":"Endpoint"}
785
- },
786
- "ListOfPlatformApplications":{
787
- "type":"list",
788
- "member":{"shape":"PlatformApplication"}
789
- },
790
- "ListPhoneNumbersOptedOutInput":{
791
- "type":"structure",
792
- "members":{
793
- "nextToken":{"shape":"string"}
794
- }
795
- },
796
- "ListPhoneNumbersOptedOutResponse":{
797
- "type":"structure",
798
- "members":{
799
- "phoneNumbers":{"shape":"PhoneNumberList"},
800
- "nextToken":{"shape":"string"}
801
- }
802
- },
803
- "ListPlatformApplicationsInput":{
804
- "type":"structure",
805
- "members":{
806
- "NextToken":{"shape":"String"}
807
- }
808
- },
809
- "ListPlatformApplicationsResponse":{
810
- "type":"structure",
811
- "members":{
812
- "PlatformApplications":{"shape":"ListOfPlatformApplications"},
813
- "NextToken":{"shape":"String"}
814
- }
815
- },
816
- "ListString":{
817
- "type":"list",
818
- "member":{"shape":"String"}
819
- },
820
- "ListSubscriptionsByTopicInput":{
821
- "type":"structure",
822
- "required":["TopicArn"],
823
- "members":{
824
- "TopicArn":{"shape":"topicARN"},
825
- "NextToken":{"shape":"nextToken"}
826
- }
827
- },
828
- "ListSubscriptionsByTopicResponse":{
829
- "type":"structure",
830
- "members":{
831
- "Subscriptions":{"shape":"SubscriptionsList"},
832
- "NextToken":{"shape":"nextToken"}
833
- }
834
- },
835
- "ListSubscriptionsInput":{
836
- "type":"structure",
837
- "members":{
838
- "NextToken":{"shape":"nextToken"}
839
- }
840
- },
841
- "ListSubscriptionsResponse":{
842
- "type":"structure",
843
- "members":{
844
- "Subscriptions":{"shape":"SubscriptionsList"},
845
- "NextToken":{"shape":"nextToken"}
846
- }
847
- },
848
- "ListTopicsInput":{
849
- "type":"structure",
850
- "members":{
851
- "NextToken":{"shape":"nextToken"}
852
- }
853
- },
854
- "ListTopicsResponse":{
855
- "type":"structure",
856
- "members":{
857
- "Topics":{"shape":"TopicsList"},
858
- "NextToken":{"shape":"nextToken"}
859
- }
860
- },
861
- "MapStringToString":{
862
- "type":"map",
863
- "key":{"shape":"String"},
864
- "value":{"shape":"String"}
865
- },
866
- "MessageAttributeMap":{
867
- "type":"map",
868
- "key":{
869
- "shape":"String",
870
- "locationName":"Name"
871
- },
872
- "value":{
873
- "shape":"MessageAttributeValue",
874
- "locationName":"Value"
875
- }
876
- },
877
- "MessageAttributeValue":{
878
- "type":"structure",
879
- "required":["DataType"],
880
- "members":{
881
- "DataType":{"shape":"String"},
882
- "StringValue":{"shape":"String"},
883
- "BinaryValue":{"shape":"Binary"}
884
- }
885
- },
886
- "NotFoundException":{
887
- "type":"structure",
888
- "members":{
889
- "message":{"shape":"string"}
890
- },
891
- "error":{
892
- "code":"NotFound",
893
- "httpStatusCode":404,
894
- "senderFault":true
895
- },
896
- "exception":true
897
- },
898
- "OptInPhoneNumberInput":{
899
- "type":"structure",
900
- "required":["phoneNumber"],
901
- "members":{
902
- "phoneNumber":{"shape":"PhoneNumber"}
903
- }
904
- },
905
- "OptInPhoneNumberResponse":{
906
- "type":"structure",
907
- "members":{
908
- }
909
- },
910
- "PhoneNumber":{"type":"string"},
911
- "PhoneNumberList":{
912
- "type":"list",
913
- "member":{"shape":"PhoneNumber"}
914
- },
915
- "PlatformApplication":{
916
- "type":"structure",
917
- "members":{
918
- "PlatformApplicationArn":{"shape":"String"},
919
- "Attributes":{"shape":"MapStringToString"}
920
- }
921
- },
922
- "PlatformApplicationDisabledException":{
923
- "type":"structure",
924
- "members":{
925
- "message":{"shape":"string"}
926
- },
927
- "error":{
928
- "code":"PlatformApplicationDisabled",
929
- "httpStatusCode":400,
930
- "senderFault":true
931
- },
932
- "exception":true
933
- },
934
- "PublishInput":{
935
- "type":"structure",
936
- "required":["Message"],
937
- "members":{
938
- "TopicArn":{"shape":"topicARN"},
939
- "TargetArn":{"shape":"String"},
940
- "PhoneNumber":{"shape":"String"},
941
- "Message":{"shape":"message"},
942
- "Subject":{"shape":"subject"},
943
- "MessageStructure":{"shape":"messageStructure"},
944
- "MessageAttributes":{"shape":"MessageAttributeMap"}
945
- }
946
- },
947
- "PublishResponse":{
948
- "type":"structure",
949
- "members":{
950
- "MessageId":{"shape":"messageId"}
951
- }
952
- },
953
- "RemovePermissionInput":{
954
- "type":"structure",
955
- "required":[
956
- "TopicArn",
957
- "Label"
958
- ],
959
- "members":{
960
- "TopicArn":{"shape":"topicARN"},
961
- "Label":{"shape":"label"}
962
- }
963
- },
964
- "SetEndpointAttributesInput":{
965
- "type":"structure",
966
- "required":[
967
- "EndpointArn",
968
- "Attributes"
969
- ],
970
- "members":{
971
- "EndpointArn":{"shape":"String"},
972
- "Attributes":{"shape":"MapStringToString"}
973
- }
974
- },
975
- "SetPlatformApplicationAttributesInput":{
976
- "type":"structure",
977
- "required":[
978
- "PlatformApplicationArn",
979
- "Attributes"
980
- ],
981
- "members":{
982
- "PlatformApplicationArn":{"shape":"String"},
983
- "Attributes":{"shape":"MapStringToString"}
984
- }
985
- },
986
- "SetSMSAttributesInput":{
987
- "type":"structure",
988
- "required":["attributes"],
989
- "members":{
990
- "attributes":{"shape":"MapStringToString"}
991
- }
992
- },
993
- "SetSMSAttributesResponse":{
994
- "type":"structure",
995
- "members":{
996
- }
997
- },
998
- "SetSubscriptionAttributesInput":{
999
- "type":"structure",
1000
- "required":[
1001
- "SubscriptionArn",
1002
- "AttributeName"
1003
- ],
1004
- "members":{
1005
- "SubscriptionArn":{"shape":"subscriptionARN"},
1006
- "AttributeName":{"shape":"attributeName"},
1007
- "AttributeValue":{"shape":"attributeValue"}
1008
- }
1009
- },
1010
- "SetTopicAttributesInput":{
1011
- "type":"structure",
1012
- "required":[
1013
- "TopicArn",
1014
- "AttributeName"
1015
- ],
1016
- "members":{
1017
- "TopicArn":{"shape":"topicARN"},
1018
- "AttributeName":{"shape":"attributeName"},
1019
- "AttributeValue":{"shape":"attributeValue"}
1020
- }
1021
- },
1022
- "String":{"type":"string"},
1023
- "SubscribeInput":{
1024
- "type":"structure",
1025
- "required":[
1026
- "TopicArn",
1027
- "Protocol"
1028
- ],
1029
- "members":{
1030
- "TopicArn":{"shape":"topicARN"},
1031
- "Protocol":{"shape":"protocol"},
1032
- "Endpoint":{"shape":"endpoint"}
1033
- }
1034
- },
1035
- "SubscribeResponse":{
1036
- "type":"structure",
1037
- "members":{
1038
- "SubscriptionArn":{"shape":"subscriptionARN"}
1039
- }
1040
- },
1041
- "Subscription":{
1042
- "type":"structure",
1043
- "members":{
1044
- "SubscriptionArn":{"shape":"subscriptionARN"},
1045
- "Owner":{"shape":"account"},
1046
- "Protocol":{"shape":"protocol"},
1047
- "Endpoint":{"shape":"endpoint"},
1048
- "TopicArn":{"shape":"topicARN"}
1049
- }
1050
- },
1051
- "SubscriptionAttributesMap":{
1052
- "type":"map",
1053
- "key":{"shape":"attributeName"},
1054
- "value":{"shape":"attributeValue"}
1055
- },
1056
- "SubscriptionLimitExceededException":{
1057
- "type":"structure",
1058
- "members":{
1059
- "message":{"shape":"string"}
1060
- },
1061
- "error":{
1062
- "code":"SubscriptionLimitExceeded",
1063
- "httpStatusCode":403,
1064
- "senderFault":true
1065
- },
1066
- "exception":true
1067
- },
1068
- "SubscriptionsList":{
1069
- "type":"list",
1070
- "member":{"shape":"Subscription"}
1071
- },
1072
- "ThrottledException":{
1073
- "type":"structure",
1074
- "members":{
1075
- "message":{"shape":"string"}
1076
- },
1077
- "error":{
1078
- "code":"Throttled",
1079
- "httpStatusCode":429,
1080
- "senderFault":true
1081
- },
1082
- "exception":true
1083
- },
1084
- "Topic":{
1085
- "type":"structure",
1086
- "members":{
1087
- "TopicArn":{"shape":"topicARN"}
1088
- }
1089
- },
1090
- "TopicAttributesMap":{
1091
- "type":"map",
1092
- "key":{"shape":"attributeName"},
1093
- "value":{"shape":"attributeValue"}
1094
- },
1095
- "TopicLimitExceededException":{
1096
- "type":"structure",
1097
- "members":{
1098
- "message":{"shape":"string"}
1099
- },
1100
- "error":{
1101
- "code":"TopicLimitExceeded",
1102
- "httpStatusCode":403,
1103
- "senderFault":true
1104
- },
1105
- "exception":true
1106
- },
1107
- "TopicsList":{
1108
- "type":"list",
1109
- "member":{"shape":"Topic"}
1110
- },
1111
- "UnsubscribeInput":{
1112
- "type":"structure",
1113
- "required":["SubscriptionArn"],
1114
- "members":{
1115
- "SubscriptionArn":{"shape":"subscriptionARN"}
1116
- }
1117
- },
1118
- "account":{"type":"string"},
1119
- "action":{"type":"string"},
1120
- "attributeName":{"type":"string"},
1121
- "attributeValue":{"type":"string"},
1122
- "authenticateOnUnsubscribe":{"type":"string"},
1123
- "boolean":{"type":"boolean"},
1124
- "delegate":{"type":"string"},
1125
- "endpoint":{"type":"string"},
1126
- "label":{"type":"string"},
1127
- "message":{"type":"string"},
1128
- "messageId":{"type":"string"},
1129
- "messageStructure":{"type":"string"},
1130
- "nextToken":{"type":"string"},
1131
- "protocol":{"type":"string"},
1132
- "string":{"type":"string"},
1133
- "subject":{"type":"string"},
1134
- "subscriptionARN":{"type":"string"},
1135
- "token":{"type":"string"},
1136
- "topicARN":{"type":"string"},
1137
- "topicName":{"type":"string"}
1138
- }
1139
- }