aws-sdk-core 2.11.405 → 3.76.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1225) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -565
  4. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  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 +49 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +11 -8
  16. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
  18. data/lib/aws-sdk-core/deprecations.rb +16 -10
  19. data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
  20. data/lib/aws-sdk-core/errors.rb +123 -22
  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 +6 -99
  24. data/lib/aws-sdk-core/json.rb +9 -10
  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 +60 -26
  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 +280 -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 +43 -50
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  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/idempotency_token.rb +1 -2
  46. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  47. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  48. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  49. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  50. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  51. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  52. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  53. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  54. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +24 -16
  55. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  56. data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
  57. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  58. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  59. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  60. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  61. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  62. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  63. data/lib/aws-sdk-core/query.rb +5 -0
  64. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  65. data/lib/aws-sdk-core/query/handler.rb +20 -16
  66. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  67. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  68. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  69. data/lib/aws-sdk-core/rest.rb +10 -0
  70. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  71. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  72. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  73. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  74. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  75. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  76. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  77. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  78. data/lib/aws-sdk-core/shared_config.rb +172 -15
  79. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  80. data/lib/aws-sdk-core/structure.rb +22 -13
  81. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  82. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  83. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  88. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  89. data/lib/aws-sdk-core/util.rb +66 -0
  90. data/lib/aws-sdk-core/waiters.rb +3 -0
  91. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  92. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  93. data/lib/aws-sdk-core/xml.rb +9 -0
  94. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  95. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  96. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  97. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  98. data/lib/aws-sdk-sts.rb +45 -0
  99. data/lib/aws-sdk-sts/client.rb +1840 -0
  100. data/lib/aws-sdk-sts/client_api.rb +320 -0
  101. data/lib/aws-sdk-sts/customizations.rb +0 -0
  102. data/lib/aws-sdk-sts/errors.rb +142 -0
  103. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  104. data/lib/aws-sdk-sts/resource.rb +23 -0
  105. data/lib/aws-sdk-sts/types.rb +1312 -0
  106. data/lib/seahorse.rb +60 -60
  107. data/lib/seahorse/client/async_base.rb +50 -0
  108. data/lib/seahorse/client/async_response.rb +62 -0
  109. data/lib/seahorse/client/base.rb +5 -9
  110. data/lib/seahorse/client/configuration.rb +4 -2
  111. data/lib/seahorse/client/h2/connection.rb +244 -0
  112. data/lib/seahorse/client/h2/handler.rb +151 -0
  113. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  114. data/lib/seahorse/client/http/async_response.rb +42 -0
  115. data/lib/seahorse/client/http/response.rb +10 -5
  116. data/lib/seahorse/client/logging/formatter.rb +2 -0
  117. data/lib/seahorse/client/logging/handler.rb +2 -0
  118. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  119. data/lib/seahorse/client/net_http/handler.rb +5 -0
  120. data/lib/seahorse/client/net_http/patches.rb +9 -1
  121. data/lib/seahorse/client/networking_error.rb +28 -0
  122. data/lib/seahorse/client/plugin.rb +66 -6
  123. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  124. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  125. data/lib/seahorse/client/plugins/h2.rb +64 -0
  126. data/lib/seahorse/client/plugins/logging.rb +17 -19
  127. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  128. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  129. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  130. data/lib/seahorse/client/request_context.rb +5 -0
  131. data/lib/seahorse/model/api.rb +33 -0
  132. data/lib/seahorse/model/authorizer.rb +21 -0
  133. data/lib/seahorse/model/operation.rb +11 -0
  134. data/lib/seahorse/model/shapes.rb +44 -2
  135. data/lib/seahorse/util.rb +1 -22
  136. metadata +98 -1098
  137. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -863
  138. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  139. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -28
  140. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  141. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  142. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  143. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  144. data/apis/acm/2015-12-08/api-2.json +0 -872
  145. data/apis/acm/2015-12-08/examples-1.json +0 -5
  146. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  147. data/apis/acm/2015-12-08/smoke.json +0 -18
  148. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  149. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4129
  150. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  151. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  152. data/apis/amplify/2017-07-25/api-2.json +0 -2374
  153. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  154. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  155. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  156. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  157. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  158. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  159. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  160. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  161. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  162. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  163. data/apis/appconfig/2019-10-09/api-2.json +0 -1391
  164. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  165. data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
  166. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -783
  167. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  168. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  169. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  170. data/apis/application-insights/2018-11-25/api-2.json +0 -1141
  171. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  172. data/apis/application-insights/2018-11-25/paginators-1.json +0 -29
  173. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  174. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  175. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  176. data/apis/appmesh/2019-01-25/api-2.json +0 -3424
  177. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  178. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  179. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  180. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  181. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  182. data/apis/appstream/2016-12-01/smoke.json +0 -11
  183. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  184. data/apis/appsync/2017-07-25/api-2.json +0 -2285
  185. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  186. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  187. data/apis/athena/2017-05-18/api-2.json +0 -989
  188. data/apis/athena/2017-05-18/examples-1.json +0 -5
  189. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  190. data/apis/athena/2017-05-18/smoke.json +0 -11
  191. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  192. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  193. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  194. data/apis/autoscaling/2011-01-01/api-2.json +0 -2464
  195. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  196. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  197. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  198. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  199. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  200. data/apis/backup/2018-11-15/api-2.json +0 -2150
  201. data/apis/backup/2018-11-15/examples-1.json +0 -5
  202. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  203. data/apis/batch/2016-08-10/api-2.json +0 -1137
  204. data/apis/batch/2016-08-10/examples-1.json +0 -589
  205. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  206. data/apis/batch/2016-08-10/smoke.json +0 -11
  207. data/apis/budgets/2016-10-20/api-2.json +0 -830
  208. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  209. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  210. data/apis/ce/2017-10-25/api-2.json +0 -1633
  211. data/apis/ce/2017-10-25/examples-1.json +0 -5
  212. data/apis/ce/2017-10-25/paginators-1.json +0 -14
  213. data/apis/chime/2018-05-01/api-2.json +0 -4483
  214. data/apis/chime/2018-05-01/examples-1.json +0 -5
  215. data/apis/chime/2018-05-01/paginators-1.json +0 -59
  216. data/apis/cloud9/2017-09-23/api-2.json +0 -549
  217. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  218. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  219. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  220. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  221. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  222. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  223. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  224. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  225. data/apis/cloudformation/2010-05-15/api-2.json +0 -3389
  226. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  227. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  228. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  229. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  230. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  231. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  232. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  233. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  234. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  235. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  236. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  237. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  238. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  239. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  240. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  241. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  242. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  243. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  244. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  245. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  246. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  247. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  248. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  249. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  250. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  251. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  252. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  253. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  254. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  255. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  256. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  257. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  258. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  259. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  260. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  261. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  262. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  263. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  264. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  265. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  266. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  267. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  268. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  269. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  270. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  271. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  272. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  273. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  274. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  275. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  276. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  277. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  278. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  279. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  280. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  281. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  282. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  283. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  284. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  285. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  286. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  287. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  288. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  289. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  290. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  291. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  292. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  293. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  294. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  295. data/apis/codebuild/2016-10-06/api-2.json +0 -1738
  296. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  297. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  298. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  299. data/apis/codecommit/2015-04-13/api-2.json +0 -5383
  300. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  301. data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
  302. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  303. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  304. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  305. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  306. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  307. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  308. data/apis/codepipeline/2015-07-09/api-2.json +0 -2441
  309. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  310. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  311. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  312. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  313. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  314. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  315. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  316. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  317. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  318. data/apis/codestar/2017-04-19/smoke.json +0 -11
  319. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  320. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  321. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  322. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5396
  323. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  324. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  325. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  326. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  327. data/apis/comprehend/2017-11-27/api-2.json +0 -2632
  328. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  329. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  330. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
  331. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  332. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  333. data/apis/config/2014-11-12/api-2.json +0 -4340
  334. data/apis/config/2014-11-12/examples-1.json +0 -5
  335. data/apis/config/2014-11-12/paginators-1.json +0 -21
  336. data/apis/config/2014-11-12/smoke.json +0 -19
  337. data/apis/connect/2017-08-08/api-2.json +0 -2139
  338. data/apis/connect/2017-08-08/examples-1.json +0 -5
  339. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  340. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  341. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  342. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  343. data/apis/cur/2017-01-06/api-2.json +0 -277
  344. data/apis/cur/2017-01-06/examples-1.json +0 -102
  345. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  346. data/apis/cur/2017-01-06/smoke.json +0 -11
  347. data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
  348. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  349. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  350. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  351. data/apis/datasync/2018-11-09/api-2.json +0 -1354
  352. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  353. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  354. data/apis/dax/2017-04-19/api-2.json +0 -1140
  355. data/apis/dax/2017-04-19/examples-1.json +0 -5
  356. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  357. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  358. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  359. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  360. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  361. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  362. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  363. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  364. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  365. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  366. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  367. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  368. data/apis/discovery/2015-11-01/smoke.json +0 -11
  369. data/apis/dlm/2018-01-12/api-2.json +0 -642
  370. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  371. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  372. data/apis/dms/2016-01-01/api-2.json +0 -2296
  373. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  374. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  375. data/apis/dms/2016-01-01/smoke.json +0 -18
  376. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  377. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  378. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  379. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  380. data/apis/docdb/2014-10-31/smoke.json +0 -18
  381. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  382. data/apis/ds/2015-04-16/api-2.json +0 -2634
  383. data/apis/ds/2015-04-16/examples-1.json +0 -5
  384. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  385. data/apis/ds/2015-04-16/smoke.json +0 -20
  386. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  387. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  388. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  389. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  390. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  391. data/apis/dynamodb/2012-08-10/api-2.json +0 -3024
  392. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  393. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  394. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  395. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  396. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  397. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  398. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  399. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  400. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  401. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  402. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  403. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  404. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  405. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  406. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  407. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  408. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  409. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  410. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  411. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  412. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  413. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  414. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  415. data/apis/ec2/2016-11-15/api-2.json +0 -26863
  416. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  417. data/apis/ec2/2016-11-15/paginators-1.json +0 -462
  418. data/apis/ec2/2016-11-15/resources-1.json +0 -2688
  419. data/apis/ec2/2016-11-15/smoke.json +0 -20
  420. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  421. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  422. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  423. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  424. data/apis/ecr/2015-09-21/smoke.json +0 -18
  425. data/apis/ecs/2014-11-13/api-2.json +0 -2910
  426. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  427. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  428. data/apis/ecs/2014-11-13/smoke.json +0 -18
  429. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  430. data/apis/eks/2017-11-01/api-2.json +0 -1211
  431. data/apis/eks/2017-11-01/examples-1.json +0 -135
  432. data/apis/eks/2017-11-01/paginators-1.json +0 -22
  433. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  434. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  435. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  436. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  437. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  438. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  439. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  440. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  441. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  442. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  443. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -897
  444. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  445. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  446. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  447. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  448. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  449. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  450. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  451. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  452. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2346
  453. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  454. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  455. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  456. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  457. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2241
  458. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  459. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  460. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  461. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  462. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  463. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  464. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  465. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  466. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  467. data/apis/email/2010-12-01/api-2.json +0 -3182
  468. data/apis/email/2010-12-01/examples-1.json +0 -1021
  469. data/apis/email/2010-12-01/paginators-1.json +0 -18
  470. data/apis/email/2010-12-01/smoke.json +0 -18
  471. data/apis/email/2010-12-01/waiters-2.json +0 -18
  472. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  473. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  474. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  475. data/apis/es/2015-01-01/api-2.json +0 -1572
  476. data/apis/es/2015-01-01/examples-1.json +0 -5
  477. data/apis/es/2015-01-01/paginators-1.json +0 -29
  478. data/apis/es/2015-01-01/smoke.json +0 -18
  479. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  480. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  481. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  482. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  483. data/apis/events/2015-10-07/api-2.json +0 -1462
  484. data/apis/events/2015-10-07/examples-1.json +0 -5
  485. data/apis/events/2015-10-07/paginators-1.json +0 -4
  486. data/apis/events/2015-10-07/smoke.json +0 -18
  487. data/apis/firehose/2015-08-04/api-2.json +0 -1445
  488. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  489. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  490. data/apis/firehose/2015-08-04/smoke.json +0 -18
  491. data/apis/fms/2018-01-01/api-2.json +0 -701
  492. data/apis/fms/2018-01-01/examples-1.json +0 -5
  493. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  494. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  495. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  496. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  497. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  498. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  499. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  500. data/apis/fsx/2018-03-01/api-2.json +0 -1063
  501. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  502. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  503. data/apis/gamelift/2015-10-01/api-2.json +0 -3495
  504. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  505. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  506. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  507. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  508. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  509. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  510. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  511. data/apis/glacier/2012-06-01/smoke.json +0 -18
  512. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  513. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  514. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  515. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  516. data/apis/glue/2017-03-31/api-2.json +0 -6302
  517. data/apis/glue/2017-03-31/examples-1.json +0 -5
  518. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  519. data/apis/glue/2017-03-31/smoke.json +0 -11
  520. data/apis/greengrass/2017-06-07/api-2.json +0 -5124
  521. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  522. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  523. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  524. data/apis/guardduty/2017-11-28/api-2.json +0 -3508
  525. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  526. data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
  527. data/apis/health/2016-08-04/api-2.json +0 -554
  528. data/apis/health/2016-08-04/examples-1.json +0 -5
  529. data/apis/health/2016-08-04/paginators-1.json +0 -31
  530. data/apis/health/2016-08-04/smoke.json +0 -11
  531. data/apis/iam/2010-05-08/api-2.json +0 -5787
  532. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  533. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  534. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  535. data/apis/iam/2010-05-08/smoke.json +0 -18
  536. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  537. data/apis/importexport/2010-06-01/api-2.json +0 -667
  538. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  539. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  540. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  541. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  542. data/apis/inspector/2016-02-16/smoke.json +0 -18
  543. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  544. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  545. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  546. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  547. data/apis/iot/2015-05-28/api-2.json +0 -11037
  548. data/apis/iot/2015-05-28/examples-1.json +0 -5
  549. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  550. data/apis/iot/2015-05-28/smoke.json +0 -18
  551. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  552. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  553. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  554. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  555. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  556. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  557. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  558. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  559. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  560. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  561. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  562. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  563. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  564. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
  565. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  566. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  567. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  568. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  569. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  570. data/apis/kafka/2018-11-14/api-2.json +0 -1950
  571. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  572. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  573. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  574. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  575. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  576. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  577. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  578. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  579. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  580. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  581. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  582. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  583. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  584. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  585. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  586. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2265
  587. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  588. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  589. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  590. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  591. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  592. data/apis/kms/2014-11-01/api-2.json +0 -2141
  593. data/apis/kms/2014-11-01/examples-1.json +0 -906
  594. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  595. data/apis/kms/2014-11-01/smoke.json +0 -19
  596. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  597. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  598. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  599. data/apis/lambda/2014-11-11/api-2.json +0 -668
  600. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  601. data/apis/lambda/2015-03-31/api-2.json +0 -2682
  602. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  603. data/apis/lambda/2015-03-31/paginators-1.json +0 -46
  604. data/apis/lambda/2015-03-31/smoke.json +0 -18
  605. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  606. data/apis/lex-models/2017-04-19/api-2.json +0 -2265
  607. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  608. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  609. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  610. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  611. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  612. data/apis/lightsail/2016-11-28/api-2.json +0 -5015
  613. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  614. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  615. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  616. data/apis/logs/2014-03-28/api-2.json +0 -1701
  617. data/apis/logs/2014-03-28/examples-1.json +0 -5
  618. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  619. data/apis/logs/2014-03-28/smoke.json +0 -19
  620. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  621. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  622. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  623. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  624. data/apis/macie/2017-12-19/api-2.json +0 -365
  625. data/apis/macie/2017-12-19/examples-1.json +0 -5
  626. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  627. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  628. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  629. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  630. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  631. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  632. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  633. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  634. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  635. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  636. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  637. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  638. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  639. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8581
  640. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  641. data/apis/medialive/2017-10-14/api-2.json +0 -10613
  642. data/apis/medialive/2017-10-14/paginators-1.json +0 -52
  643. data/apis/medialive/2017-10-14/waiters-2.json +0 -217
  644. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1526
  645. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  646. data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
  647. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  648. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  649. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  650. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  651. data/apis/mediastore/2017-09-01/api-2.json +0 -737
  652. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  653. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  654. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  655. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  656. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  657. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  658. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  659. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -207
  660. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  661. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  662. data/apis/mobile/2017-07-01/api-2.json +0 -551
  663. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  664. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  665. data/apis/monitoring/2010-08-01/api-2.json +0 -1867
  666. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  667. data/apis/monitoring/2010-08-01/paginators-1.json +0 -43
  668. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  669. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  670. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  671. data/apis/mq/2017-11-27/api-2.json +0 -2538
  672. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  673. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  674. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  675. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  676. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  677. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  678. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  679. data/apis/neptune/2014-10-31/smoke.json +0 -18
  680. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  681. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  682. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  683. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  684. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  685. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  686. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  687. data/apis/opsworkscm/2016-11-01/api-2.json +0 -817
  688. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  689. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  690. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  691. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  692. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  693. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  694. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  695. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  696. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  697. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  698. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  699. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  700. data/apis/personalize/2018-05-22/api-2.json +0 -1863
  701. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  702. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  703. data/apis/pi/2018-02-27/api-2.json +0 -253
  704. data/apis/pi/2018-02-27/examples-1.json +0 -5
  705. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  706. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  707. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  708. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  709. data/apis/pinpoint/2016-12-01/api-2.json +0 -11189
  710. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  711. data/apis/polly/2016-06-10/api-2.json +0 -832
  712. data/apis/polly/2016-06-10/examples-1.json +0 -171
  713. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  714. data/apis/polly/2016-06-10/smoke.json +0 -11
  715. data/apis/pricing/2017-10-15/api-2.json +0 -227
  716. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  717. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  718. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  719. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  720. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  721. data/apis/qldb/2019-01-02/api-2.json +0 -776
  722. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  723. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  724. data/apis/quicksight/2018-04-01/api-2.json +0 -5482
  725. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  726. data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
  727. data/apis/ram/2018-01-04/api-2.json +0 -1272
  728. data/apis/ram/2018-01-04/examples-1.json +0 -5
  729. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  730. data/apis/rds-data/2018-08-01/api-2.json +0 -540
  731. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  732. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  733. data/apis/rds/2013-01-10/api-2.json +0 -2903
  734. data/apis/rds/2013-01-10/examples-1.json +0 -5
  735. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  736. data/apis/rds/2013-01-10/smoke.json +0 -18
  737. data/apis/rds/2013-02-12/api-2.json +0 -3059
  738. data/apis/rds/2013-02-12/examples-1.json +0 -5
  739. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  740. data/apis/rds/2013-02-12/smoke.json +0 -18
  741. data/apis/rds/2013-09-09/api-2.json +0 -3160
  742. data/apis/rds/2013-09-09/examples-1.json +0 -5
  743. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  744. data/apis/rds/2013-09-09/smoke.json +0 -18
  745. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  746. data/apis/rds/2014-09-01/api-2.json +0 -3273
  747. data/apis/rds/2014-09-01/examples-1.json +0 -5
  748. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  749. data/apis/rds/2014-09-01/smoke.json +0 -18
  750. data/apis/rds/2014-10-31/api-2.json +0 -6881
  751. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  752. data/apis/rds/2014-10-31/paginators-1.json +0 -140
  753. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  754. data/apis/rds/2014-10-31/smoke.json +0 -18
  755. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  756. data/apis/rds/2015-11-12/api-2.json +0 -5509
  757. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  758. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  759. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  760. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  761. data/apis/redshift/2012-12-01/api-2.json +0 -5263
  762. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  763. data/apis/redshift/2012-12-01/paginators-1.json +0 -106
  764. data/apis/redshift/2012-12-01/smoke.json +0 -18
  765. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  766. data/apis/rekognition/2016-06-27/api-2.json +0 -2148
  767. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  768. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  769. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  770. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  771. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  772. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  773. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  774. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  775. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  776. data/apis/robomaker/2018-06-29/api-2.json +0 -2160
  777. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  778. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  779. data/apis/route53/2013-04-01/api-2.json +0 -3780
  780. data/apis/route53/2013-04-01/examples-1.json +0 -762
  781. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  782. data/apis/route53/2013-04-01/smoke.json +0 -18
  783. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  784. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  785. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  786. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  787. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  788. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  789. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  790. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  791. data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
  792. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  793. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  794. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  795. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  796. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  797. data/apis/s3/2006-03-01/api-2.json +0 -6653
  798. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  799. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  800. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  801. data/apis/s3/2006-03-01/smoke.json +0 -11
  802. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  803. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  804. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  805. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  806. data/apis/sagemaker/2017-07-24/api-2.json +0 -5289
  807. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  808. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  809. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  810. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  811. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  812. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  813. data/apis/sdb/2009-04-15/api-2.json +0 -955
  814. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  815. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  816. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  817. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  818. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  819. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  820. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  821. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  822. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  823. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  824. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  825. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  826. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  827. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  828. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  829. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  830. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  831. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  832. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  833. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  834. data/apis/sesv2/2019-09-27/api-2.json +0 -2362
  835. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  836. data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
  837. data/apis/shield/2016-06-02/api-2.json +0 -893
  838. data/apis/shield/2016-06-02/examples-1.json +0 -5
  839. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  840. data/apis/shield/2016-06-02/smoke.json +0 -11
  841. data/apis/signer/2017-08-25/api-2.json +0 -817
  842. data/apis/signer/2017-08-25/examples-1.json +0 -5
  843. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  844. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  845. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  846. data/apis/sms/2016-10-24/api-2.json +0 -1366
  847. data/apis/sms/2016-10-24/examples-1.json +0 -5
  848. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  849. data/apis/sms/2016-10-24/smoke.json +0 -18
  850. data/apis/snowball/2016-06-30/api-2.json +0 -955
  851. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  852. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  853. data/apis/snowball/2016-06-30/smoke.json +0 -11
  854. data/apis/sns/2010-03-31/api-2.json +0 -1468
  855. data/apis/sns/2010-03-31/examples-1.json +0 -5
  856. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  857. data/apis/sns/2010-03-31/resources-1.json +0 -327
  858. data/apis/sns/2010-03-31/smoke.json +0 -19
  859. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  860. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  861. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  862. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  863. data/apis/sqs/2012-11-05/smoke.json +0 -18
  864. data/apis/ssm/2014-11-06/api-2.json +0 -9150
  865. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  866. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  867. data/apis/ssm/2014-11-06/smoke.json +0 -18
  868. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  869. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  870. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  871. data/apis/sso/2019-06-10/api-2.json +0 -281
  872. data/apis/sso/2019-06-10/examples-1.json +0 -5
  873. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  874. data/apis/states/2016-11-23/api-2.json +0 -1409
  875. data/apis/states/2016-11-23/examples-1.json +0 -5
  876. data/apis/states/2016-11-23/paginators-1.json +0 -28
  877. data/apis/states/2016-11-23/smoke.json +0 -11
  878. data/apis/storagegateway/2013-06-30/api-2.json +0 -3259
  879. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  880. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  881. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  882. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  883. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  884. data/apis/sts/2011-06-15/api-2.json +0 -598
  885. data/apis/sts/2011-06-15/examples-1.json +0 -234
  886. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  887. data/apis/sts/2011-06-15/smoke.json +0 -19
  888. data/apis/support/2013-04-15/api-2.json +0 -773
  889. data/apis/support/2013-04-15/examples-1.json +0 -5
  890. data/apis/support/2013-04-15/paginators-1.json +0 -25
  891. data/apis/support/2013-04-15/smoke.json +0 -22
  892. data/apis/swf/2012-01-25/api-2.json +0 -2792
  893. data/apis/swf/2012-01-25/examples-1.json +0 -5
  894. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  895. data/apis/textract/2018-06-27/api-2.json +0 -572
  896. data/apis/textract/2018-06-27/examples-1.json +0 -5
  897. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  898. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  899. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  900. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  901. data/apis/transcribe/2017-10-26/api-2.json +0 -538
  902. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  903. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  904. data/apis/transfer/2018-11-05/api-2.json +0 -940
  905. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  906. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  907. data/apis/translate/2017-07-01/api-2.json +0 -408
  908. data/apis/translate/2017-07-01/examples-1.json +0 -5
  909. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  910. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  911. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  912. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  913. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  914. data/apis/waf/2015-08-24/api-2.json +0 -3857
  915. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  916. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  917. data/apis/waf/2015-08-24/smoke.json +0 -21
  918. data/apis/wafv2/2019-07-29/api-2.json +0 -2418
  919. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  920. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  921. data/apis/wafv2/2019-07-29/smoke.json +0 -21
  922. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  923. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  924. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  925. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  926. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  927. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  928. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  929. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  930. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  931. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  932. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  933. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  934. data/apis/workspaces/2015-04-08/api-2.json +0 -1992
  935. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  936. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  937. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  938. data/apis/xray/2016-04-12/api-2.json +0 -1352
  939. data/apis/xray/2016-04-12/examples-1.json +0 -5
  940. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  941. data/bin/aws.rb +0 -180
  942. data/endpoints.json +0 -5644
  943. data/lib/aws-sdk-core/acm.rb +0 -7
  944. data/lib/aws-sdk-core/acmpca.rb +0 -7
  945. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  946. data/lib/aws-sdk-core/amplify.rb +0 -6
  947. data/lib/aws-sdk-core/api/builder.rb +0 -129
  948. data/lib/aws-sdk-core/api/customizations.rb +0 -303
  949. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  950. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  951. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  952. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  953. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  954. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  955. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  956. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  957. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  958. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  959. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  960. data/lib/aws-sdk-core/apigateway.rb +0 -6
  961. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  962. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  963. data/lib/aws-sdk-core/appconfig.rb +0 -6
  964. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  965. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  966. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  967. data/lib/aws-sdk-core/appmesh.rb +0 -6
  968. data/lib/aws-sdk-core/appstream.rb +0 -7
  969. data/lib/aws-sdk-core/appsync.rb +0 -6
  970. data/lib/aws-sdk-core/athena.rb +0 -6
  971. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  972. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  973. data/lib/aws-sdk-core/backup.rb +0 -6
  974. data/lib/aws-sdk-core/batch.rb +0 -6
  975. data/lib/aws-sdk-core/budgets.rb +0 -6
  976. data/lib/aws-sdk-core/checksums.rb +0 -51
  977. data/lib/aws-sdk-core/chime.rb +0 -6
  978. data/lib/aws-sdk-core/client.rb +0 -62
  979. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  980. data/lib/aws-sdk-core/cloud9.rb +0 -6
  981. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  982. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  983. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  984. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  985. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  986. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  987. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  988. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  989. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  990. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  991. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  992. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  993. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  994. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  995. data/lib/aws-sdk-core/codebuild.rb +0 -6
  996. data/lib/aws-sdk-core/codecommit.rb +0 -6
  997. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  998. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  999. data/lib/aws-sdk-core/codestar.rb +0 -6
  1000. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1001. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1002. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1003. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1004. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1005. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1006. data/lib/aws-sdk-core/configservice.rb +0 -6
  1007. data/lib/aws-sdk-core/connect.rb +0 -6
  1008. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1009. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1010. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1011. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1012. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1013. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1014. data/lib/aws-sdk-core/datasync.rb +0 -6
  1015. data/lib/aws-sdk-core/dax.rb +0 -6
  1016. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1017. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1018. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1019. data/lib/aws-sdk-core/dlm.rb +0 -6
  1020. data/lib/aws-sdk-core/docdb.rb +0 -7
  1021. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1022. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1023. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1024. data/lib/aws-sdk-core/ec2.rb +0 -8
  1025. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1026. data/lib/aws-sdk-core/ecr.rb +0 -6
  1027. data/lib/aws-sdk-core/ecs.rb +0 -7
  1028. data/lib/aws-sdk-core/efs.rb +0 -6
  1029. data/lib/aws-sdk-core/eks.rb +0 -7
  1030. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1031. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1032. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1033. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1034. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1035. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1036. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1037. data/lib/aws-sdk-core/emr.rb +0 -7
  1038. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1039. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1040. data/lib/aws-sdk-core/firehose.rb +0 -6
  1041. data/lib/aws-sdk-core/fms.rb +0 -6
  1042. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1043. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1044. data/lib/aws-sdk-core/fsx.rb +0 -6
  1045. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1046. data/lib/aws-sdk-core/glacier.rb +0 -8
  1047. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1048. data/lib/aws-sdk-core/glue.rb +0 -6
  1049. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1050. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1051. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1052. data/lib/aws-sdk-core/health.rb +0 -6
  1053. data/lib/aws-sdk-core/iam.rb +0 -8
  1054. data/lib/aws-sdk-core/importexport.rb +0 -5
  1055. data/lib/aws-sdk-core/inspector.rb +0 -6
  1056. data/lib/aws-sdk-core/iot.rb +0 -6
  1057. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1058. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1059. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1060. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1061. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1062. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1063. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1064. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1065. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1066. data/lib/aws-sdk-core/kafka.rb +0 -5
  1067. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1068. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1069. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1070. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1071. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1072. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1073. data/lib/aws-sdk-core/kms.rb +0 -6
  1074. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1075. data/lib/aws-sdk-core/lambda.rb +0 -7
  1076. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1077. data/lib/aws-sdk-core/lex.rb +0 -6
  1078. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1079. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1080. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1081. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1082. data/lib/aws-sdk-core/macie.rb +0 -6
  1083. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1084. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1085. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1086. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1087. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1088. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1089. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1090. data/lib/aws-sdk-core/medialive.rb +0 -6
  1091. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1092. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1093. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1094. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1095. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1096. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1097. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1098. data/lib/aws-sdk-core/mobile.rb +0 -6
  1099. data/lib/aws-sdk-core/mq.rb +0 -5
  1100. data/lib/aws-sdk-core/mturk.rb +0 -6
  1101. data/lib/aws-sdk-core/neptune.rb +0 -7
  1102. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1103. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1104. data/lib/aws-sdk-core/organizations.rb +0 -6
  1105. data/lib/aws-sdk-core/partitions.rb +0 -174
  1106. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1107. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1108. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1109. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1110. data/lib/aws-sdk-core/personalize.rb +0 -6
  1111. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1112. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1113. data/lib/aws-sdk-core/pi.rb +0 -6
  1114. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1115. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1116. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1117. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1118. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1119. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1120. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1121. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1122. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1123. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1124. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1125. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1126. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1127. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1128. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1129. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1130. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1131. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1132. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1133. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1134. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1135. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1136. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1137. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1138. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1139. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1140. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1141. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1142. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1143. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1144. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1145. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1146. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1147. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1148. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1149. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1150. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1151. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1152. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1153. data/lib/aws-sdk-core/polly.rb +0 -14
  1154. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1155. data/lib/aws-sdk-core/pricing.rb +0 -6
  1156. data/lib/aws-sdk-core/qldb.rb +0 -6
  1157. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1158. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1159. data/lib/aws-sdk-core/ram.rb +0 -6
  1160. data/lib/aws-sdk-core/rds.rb +0 -16
  1161. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1162. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1163. data/lib/aws-sdk-core/redshift.rb +0 -7
  1164. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1165. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1166. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1167. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1168. data/lib/aws-sdk-core/route53.rb +0 -7
  1169. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1170. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1171. data/lib/aws-sdk-core/s3.rb +0 -26
  1172. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1173. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1174. data/lib/aws-sdk-core/s3control.rb +0 -6
  1175. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1176. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1177. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1178. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1179. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1180. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1181. data/lib/aws-sdk-core/service.rb +0 -4
  1182. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1183. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1184. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1185. data/lib/aws-sdk-core/ses.rb +0 -7
  1186. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1187. data/lib/aws-sdk-core/shield.rb +0 -6
  1188. data/lib/aws-sdk-core/signer.rb +0 -7
  1189. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1190. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1191. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1192. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1193. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1194. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1195. data/lib/aws-sdk-core/sms.rb +0 -6
  1196. data/lib/aws-sdk-core/snowball.rb +0 -6
  1197. data/lib/aws-sdk-core/sns.rb +0 -7
  1198. data/lib/aws-sdk-core/sqs.rb +0 -7
  1199. data/lib/aws-sdk-core/ssm.rb +0 -6
  1200. data/lib/aws-sdk-core/sso.rb +0 -6
  1201. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1202. data/lib/aws-sdk-core/states.rb +0 -6
  1203. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1204. data/lib/aws-sdk-core/sts.rb +0 -6
  1205. data/lib/aws-sdk-core/support.rb +0 -6
  1206. data/lib/aws-sdk-core/swf.rb +0 -6
  1207. data/lib/aws-sdk-core/textract.rb +0 -6
  1208. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1209. data/lib/aws-sdk-core/transfer.rb +0 -6
  1210. data/lib/aws-sdk-core/translate.rb +0 -6
  1211. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1212. data/lib/aws-sdk-core/version.rb +0 -3
  1213. data/lib/aws-sdk-core/waf.rb +0 -6
  1214. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1215. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1216. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1217. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1218. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1219. data/lib/aws-sdk-core/worklink.rb +0 -6
  1220. data/lib/aws-sdk-core/workmail.rb +0 -6
  1221. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1222. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1223. data/lib/aws-sdk-core/xray.rb +0 -6
  1224. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1225. data/service-models.json +0 -817
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,43 +0,0 @@
1
- {
2
- "pagination": {
3
- "DescribeAlarmHistory": {
4
- "input_token": "NextToken",
5
- "limit_key": "MaxRecords",
6
- "output_token": "NextToken",
7
- "result_key": "AlarmHistoryItems"
8
- },
9
- "DescribeAlarms": {
10
- "input_token": "NextToken",
11
- "limit_key": "MaxRecords",
12
- "output_token": "NextToken",
13
- "result_key": "MetricAlarms"
14
- },
15
- "DescribeAlarmsForMetric": {
16
- "result_key": "MetricAlarms"
17
- },
18
- "DescribeInsightRules": {
19
- "input_token": "NextToken",
20
- "limit_key": "MaxResults",
21
- "output_token": "NextToken"
22
- },
23
- "GetMetricData": {
24
- "input_token": "NextToken",
25
- "limit_key": "MaxDatapoints",
26
- "output_token": "NextToken",
27
- "result_key": [
28
- "MetricDataResults",
29
- "Messages"
30
- ]
31
- },
32
- "ListDashboards": {
33
- "input_token": "NextToken",
34
- "output_token": "NextToken",
35
- "result_key": "DashboardEntries"
36
- },
37
- "ListMetrics": {
38
- "input_token": "NextToken",
39
- "output_token": "NextToken",
40
- "result_key": "Metrics"
41
- }
42
- }
43
- }
@@ -1,346 +0,0 @@
1
- {
2
- "service": {
3
- "has": {
4
- "Alarm": {
5
- "resource": {
6
- "type": "Alarm",
7
- "identifiers": [
8
- {
9
- "target": "Name",
10
- "source": "input"
11
- }
12
- ]
13
- }
14
- },
15
- "Metric": {
16
- "resource": {
17
- "type": "Metric",
18
- "identifiers": [
19
- {
20
- "target": "Namespace",
21
- "source": "input"
22
- },
23
- {
24
- "target": "Name",
25
- "source": "input"
26
- }
27
- ]
28
- }
29
- }
30
- },
31
- "hasMany": {
32
- "Alarms": {
33
- "request": { "operation": "DescribeAlarms" },
34
- "resource": {
35
- "type": "Alarm",
36
- "identifiers": [
37
- {
38
- "target": "Name",
39
- "source": "response",
40
- "path": "MetricAlarms[].AlarmName"
41
- }
42
- ],
43
- "path": "MetricAlarms[]"
44
- }
45
- },
46
- "Metrics": {
47
- "request": { "operation": "ListMetrics" },
48
- "resource": {
49
- "type": "Metric",
50
- "identifiers": [
51
- {
52
- "target": "Namespace",
53
- "source": "response",
54
- "path": "Metrics[].Namespace"
55
- },
56
- {
57
- "target": "Name",
58
- "source": "response",
59
- "path": "Metrics[].MetricName"
60
- }
61
- ],
62
- "path": "Metrics[]"
63
- }
64
- }
65
- }
66
- },
67
- "resources": {
68
- "Alarm": {
69
- "identifiers": [
70
- {
71
- "name": "Name",
72
- "memberName": "AlarmName"
73
- }
74
- ],
75
- "shape": "MetricAlarm",
76
- "load": {
77
- "request": {
78
- "operation": "DescribeAlarms",
79
- "params": [
80
- {
81
- "target": "AlarmNames[0]",
82
- "source": "identifier",
83
- "name": "Name"
84
- }
85
- ]
86
- },
87
- "path": "MetricAlarms[0]"
88
- },
89
- "actions": {
90
- "Delete": {
91
- "request": {
92
- "operation": "DeleteAlarms",
93
- "params": [
94
- {
95
- "target": "AlarmNames[0]",
96
- "source": "identifier",
97
- "name": "Name"
98
- }
99
- ]
100
- }
101
- },
102
- "DescribeHistory": {
103
- "request": {
104
- "operation": "DescribeAlarmHistory",
105
- "params": [
106
- {
107
- "target": "AlarmName",
108
- "source": "identifier",
109
- "name": "Name"
110
- }
111
- ]
112
- }
113
- },
114
- "DisableActions": {
115
- "request": {
116
- "operation": "DisableAlarmActions",
117
- "params": [
118
- {
119
- "target": "AlarmNames[0]",
120
- "source": "identifier",
121
- "name": "Name"
122
- }
123
- ]
124
- }
125
- },
126
- "EnableActions": {
127
- "request": {
128
- "operation": "EnableAlarmActions",
129
- "params": [
130
- {
131
- "target": "AlarmNames[0]",
132
- "source": "identifier",
133
- "name": "Name"
134
- }
135
- ]
136
- }
137
- },
138
- "SetState": {
139
- "request": {
140
- "operation": "SetAlarmState",
141
- "params": [
142
- {
143
- "target": "AlarmName",
144
- "source": "identifier",
145
- "name": "Name"
146
- }
147
- ]
148
- }
149
- }
150
- },
151
- "batchActions": {
152
- "Delete": {
153
- "request": {
154
- "operation": "DeleteAlarms",
155
- "params": [
156
- {
157
- "target": "AlarmNames[]",
158
- "source": "identifier",
159
- "name": "Name"
160
- }
161
- ]
162
- }
163
- },
164
- "DisableActions": {
165
- "request": {
166
- "operation": "DisableAlarmActions",
167
- "params": [
168
- {
169
- "target": "AlarmNames[]",
170
- "source": "identifier",
171
- "name": "Name"
172
- }
173
- ]
174
- }
175
- },
176
- "EnableActions": {
177
- "request": {
178
- "operation": "EnableAlarmActions",
179
- "params": [
180
- {
181
- "target": "AlarmNames[]",
182
- "source": "identifier",
183
- "name": "Name"
184
- }
185
- ]
186
- }
187
- }
188
- },
189
- "waiters": {
190
- "Exists": {
191
- "waiterName": "AlarmExists",
192
- "params": [
193
- {
194
- "target": "AlarmNames[]",
195
- "source": "identifier",
196
- "name": "Name"
197
- }
198
- ]
199
- }
200
- },
201
- "has": {
202
- "Metric": {
203
- "resource": {
204
- "type": "Metric",
205
- "identifiers": [
206
- {
207
- "target": "Namespace",
208
- "source": "data",
209
- "path": "Namespace"
210
- },
211
- {
212
- "target": "Name",
213
- "source": "data",
214
- "path": "MetricName"
215
- }
216
- ]
217
- }
218
- }
219
- }
220
- },
221
- "Metric": {
222
- "identifiers": [
223
- {
224
- "name": "Namespace",
225
- "memberName": "Namespace"
226
- },
227
- {
228
- "name": "Name",
229
- "memberName": "MetricName"
230
- }
231
- ],
232
- "shape": "Metric",
233
- "load": {
234
- "request": {
235
- "operation": "ListMetrics",
236
- "params": [
237
- {
238
- "target": "MetricName",
239
- "source": "identifier",
240
- "name": "Name"
241
- },
242
- {
243
- "target": "Namespace",
244
- "source": "identifier",
245
- "name": "Namespace"
246
- }
247
- ]
248
- },
249
- "path": "Metrics[0]"
250
- },
251
- "actions": {
252
- "GetStatistics": {
253
- "request": {
254
- "operation": "GetMetricStatistics",
255
- "params": [
256
- {
257
- "target": "Namespace",
258
- "source": "identifier",
259
- "name": "Namespace"
260
- },
261
- {
262
- "target": "MetricName",
263
- "source": "identifier",
264
- "name": "Name"
265
- }
266
- ]
267
- }
268
- },
269
- "PutAlarm": {
270
- "request": {
271
- "operation": "PutMetricAlarm",
272
- "params": [
273
- {
274
- "target": "Namespace",
275
- "source": "identifier",
276
- "name": "Namespace"
277
- },
278
- {
279
- "target": "MetricName",
280
- "source": "identifier",
281
- "name": "Name"
282
- }
283
- ]
284
- },
285
- "resource": {
286
- "type": "Alarm",
287
- "identifiers": [
288
- {
289
- "target": "Name",
290
- "source": "requestParameter",
291
- "path": "AlarmName"
292
- }
293
- ]
294
- }
295
- },
296
- "PutData": {
297
- "request": {
298
- "operation": "PutMetricData",
299
- "params": [
300
- {
301
- "target": "Namespace",
302
- "source": "identifier",
303
- "name": "Namespace"
304
- },
305
- {
306
- "target": "MetricData[].MetricName",
307
- "source": "identifier",
308
- "name": "Name"
309
- }
310
- ]
311
- }
312
- }
313
- },
314
- "hasMany": {
315
- "Alarms": {
316
- "request": {
317
- "operation": "DescribeAlarmsForMetric",
318
- "params": [
319
- {
320
- "target": "Namespace",
321
- "source": "identifier",
322
- "name": "Namespace"
323
- },
324
- {
325
- "target": "MetricName",
326
- "source": "identifier",
327
- "name": "Name"
328
- }
329
- ]
330
- },
331
- "resource": {
332
- "type": "Alarm",
333
- "identifiers": [
334
- {
335
- "target": "Name",
336
- "source": "response",
337
- "path": "MetricAlarms[].AlarmName"
338
- }
339
- ],
340
- "path": "MetricAlarms[]"
341
- }
342
- }
343
- }
344
- }
345
- }
346
- }
@@ -1,22 +0,0 @@
1
- {
2
- "version": 1,
3
- "defaultRegion": "us-west-2",
4
- "testCases": [
5
- {
6
- "operationName": "ListMetrics",
7
- "input": {
8
- "Namespace": "AWS\/EC2"
9
- },
10
- "errorExpectedFromService": false
11
- },
12
- {
13
- "operationName": "SetAlarmState",
14
- "input": {
15
- "AlarmName": "abc",
16
- "StateValue": "mno",
17
- "StateReason": "xyz"
18
- },
19
- "errorExpectedFromService": true
20
- }
21
- ]
22
- }
@@ -1,18 +0,0 @@
1
- {
2
- "version": 2,
3
- "waiters": {
4
- "AlarmExists": {
5
- "delay": 5,
6
- "maxAttempts": 40,
7
- "operation": "DescribeAlarms",
8
- "acceptors": [
9
- {
10
- "matcher": "path",
11
- "expected": true,
12
- "argument": "length(MetricAlarms[]) > `0`",
13
- "state": "success"
14
- }
15
- ]
16
- }
17
- }
18
- }
@@ -1,2538 +0,0 @@
1
- {
2
- "metadata" : {
3
- "apiVersion" : "2017-11-27",
4
- "endpointPrefix" : "mq",
5
- "signingName" : "mq",
6
- "serviceFullName" : "AmazonMQ",
7
- "serviceId" : "mq",
8
- "protocol" : "rest-json",
9
- "jsonVersion" : "1.1",
10
- "uid" : "mq-2017-11-27",
11
- "signatureVersion" : "v4"
12
- },
13
- "operations" : {
14
- "CreateBroker" : {
15
- "name" : "CreateBroker",
16
- "http" : {
17
- "method" : "POST",
18
- "requestUri" : "/v1/brokers",
19
- "responseCode" : 200
20
- },
21
- "input" : {
22
- "shape" : "CreateBrokerRequest"
23
- },
24
- "output" : {
25
- "shape" : "CreateBrokerResponse"
26
- },
27
- "errors" : [ {
28
- "shape" : "BadRequestException"
29
- }, {
30
- "shape" : "UnauthorizedException"
31
- }, {
32
- "shape" : "InternalServerErrorException"
33
- }, {
34
- "shape" : "ConflictException"
35
- }, {
36
- "shape" : "ForbiddenException"
37
- } ]
38
- },
39
- "CreateConfiguration" : {
40
- "name" : "CreateConfiguration",
41
- "http" : {
42
- "method" : "POST",
43
- "requestUri" : "/v1/configurations",
44
- "responseCode" : 200
45
- },
46
- "input" : {
47
- "shape" : "CreateConfigurationRequest"
48
- },
49
- "output" : {
50
- "shape" : "CreateConfigurationResponse"
51
- },
52
- "errors" : [ {
53
- "shape" : "BadRequestException"
54
- }, {
55
- "shape" : "InternalServerErrorException"
56
- }, {
57
- "shape" : "ConflictException"
58
- }, {
59
- "shape" : "ForbiddenException"
60
- } ]
61
- },
62
- "CreateTags" : {
63
- "name" : "CreateTags",
64
- "http" : {
65
- "method" : "POST",
66
- "requestUri" : "/v1/tags/{resource-arn}",
67
- "responseCode" : 204
68
- },
69
- "input" : {
70
- "shape" : "CreateTagsRequest"
71
- },
72
- "errors" : [ {
73
- "shape" : "NotFoundException"
74
- }, {
75
- "shape" : "BadRequestException"
76
- }, {
77
- "shape" : "InternalServerErrorException"
78
- }, {
79
- "shape" : "ForbiddenException"
80
- } ]
81
- },
82
- "CreateUser" : {
83
- "name" : "CreateUser",
84
- "http" : {
85
- "method" : "POST",
86
- "requestUri" : "/v1/brokers/{broker-id}/users/{username}",
87
- "responseCode" : 200
88
- },
89
- "input" : {
90
- "shape" : "CreateUserRequest"
91
- },
92
- "output" : {
93
- "shape" : "CreateUserResponse"
94
- },
95
- "errors" : [ {
96
- "shape" : "NotFoundException"
97
- }, {
98
- "shape" : "BadRequestException"
99
- }, {
100
- "shape" : "InternalServerErrorException"
101
- }, {
102
- "shape" : "ConflictException"
103
- }, {
104
- "shape" : "ForbiddenException"
105
- } ]
106
- },
107
- "DeleteBroker" : {
108
- "name" : "DeleteBroker",
109
- "http" : {
110
- "method" : "DELETE",
111
- "requestUri" : "/v1/brokers/{broker-id}",
112
- "responseCode" : 200
113
- },
114
- "input" : {
115
- "shape" : "DeleteBrokerRequest"
116
- },
117
- "output" : {
118
- "shape" : "DeleteBrokerResponse"
119
- },
120
- "errors" : [ {
121
- "shape" : "NotFoundException"
122
- }, {
123
- "shape" : "BadRequestException"
124
- }, {
125
- "shape" : "InternalServerErrorException"
126
- }, {
127
- "shape" : "ForbiddenException"
128
- } ]
129
- },
130
- "DeleteTags" : {
131
- "name" : "DeleteTags",
132
- "http" : {
133
- "method" : "DELETE",
134
- "requestUri" : "/v1/tags/{resource-arn}",
135
- "responseCode" : 204
136
- },
137
- "input" : {
138
- "shape" : "DeleteTagsRequest"
139
- },
140
- "errors" : [ {
141
- "shape" : "NotFoundException"
142
- }, {
143
- "shape" : "BadRequestException"
144
- }, {
145
- "shape" : "InternalServerErrorException"
146
- }, {
147
- "shape" : "ForbiddenException"
148
- } ]
149
- },
150
- "DeleteUser" : {
151
- "name" : "DeleteUser",
152
- "http" : {
153
- "method" : "DELETE",
154
- "requestUri" : "/v1/brokers/{broker-id}/users/{username}",
155
- "responseCode" : 200
156
- },
157
- "input" : {
158
- "shape" : "DeleteUserRequest"
159
- },
160
- "output" : {
161
- "shape" : "DeleteUserResponse"
162
- },
163
- "errors" : [ {
164
- "shape" : "NotFoundException"
165
- }, {
166
- "shape" : "BadRequestException"
167
- }, {
168
- "shape" : "InternalServerErrorException"
169
- }, {
170
- "shape" : "ForbiddenException"
171
- } ]
172
- },
173
- "DescribeBroker" : {
174
- "name" : "DescribeBroker",
175
- "http" : {
176
- "method" : "GET",
177
- "requestUri" : "/v1/brokers/{broker-id}",
178
- "responseCode" : 200
179
- },
180
- "input" : {
181
- "shape" : "DescribeBrokerRequest"
182
- },
183
- "output" : {
184
- "shape" : "DescribeBrokerResponse"
185
- },
186
- "errors" : [ {
187
- "shape" : "NotFoundException"
188
- }, {
189
- "shape" : "BadRequestException"
190
- }, {
191
- "shape" : "InternalServerErrorException"
192
- }, {
193
- "shape" : "ForbiddenException"
194
- } ]
195
- },
196
- "DescribeBrokerEngineTypes" : {
197
- "name" : "DescribeBrokerEngineTypes",
198
- "http" : {
199
- "method" : "GET",
200
- "requestUri" : "/v1/broker-engine-types",
201
- "responseCode" : 200
202
- },
203
- "input" : {
204
- "shape" : "DescribeBrokerEngineTypesRequest"
205
- },
206
- "output" : {
207
- "shape" : "DescribeBrokerEngineTypesResponse"
208
- },
209
- "errors" : [ {
210
- "shape" : "BadRequestException"
211
- }, {
212
- "shape" : "InternalServerErrorException"
213
- }, {
214
- "shape" : "ForbiddenException"
215
- } ]
216
- },
217
- "DescribeBrokerInstanceOptions" : {
218
- "name" : "DescribeBrokerInstanceOptions",
219
- "http" : {
220
- "method" : "GET",
221
- "requestUri" : "/v1/broker-instance-options",
222
- "responseCode" : 200
223
- },
224
- "input" : {
225
- "shape" : "DescribeBrokerInstanceOptionsRequest"
226
- },
227
- "output" : {
228
- "shape" : "DescribeBrokerInstanceOptionsResponse"
229
- },
230
- "errors" : [ {
231
- "shape" : "BadRequestException"
232
- }, {
233
- "shape" : "InternalServerErrorException"
234
- }, {
235
- "shape" : "ForbiddenException"
236
- } ]
237
- },
238
- "DescribeConfiguration" : {
239
- "name" : "DescribeConfiguration",
240
- "http" : {
241
- "method" : "GET",
242
- "requestUri" : "/v1/configurations/{configuration-id}",
243
- "responseCode" : 200
244
- },
245
- "input" : {
246
- "shape" : "DescribeConfigurationRequest"
247
- },
248
- "output" : {
249
- "shape" : "DescribeConfigurationResponse"
250
- },
251
- "errors" : [ {
252
- "shape" : "NotFoundException"
253
- }, {
254
- "shape" : "BadRequestException"
255
- }, {
256
- "shape" : "InternalServerErrorException"
257
- }, {
258
- "shape" : "ForbiddenException"
259
- } ]
260
- },
261
- "DescribeConfigurationRevision" : {
262
- "name" : "DescribeConfigurationRevision",
263
- "http" : {
264
- "method" : "GET",
265
- "requestUri" : "/v1/configurations/{configuration-id}/revisions/{configuration-revision}",
266
- "responseCode" : 200
267
- },
268
- "input" : {
269
- "shape" : "DescribeConfigurationRevisionRequest"
270
- },
271
- "output" : {
272
- "shape" : "DescribeConfigurationRevisionResponse"
273
- },
274
- "errors" : [ {
275
- "shape" : "NotFoundException"
276
- }, {
277
- "shape" : "BadRequestException"
278
- }, {
279
- "shape" : "InternalServerErrorException"
280
- }, {
281
- "shape" : "ForbiddenException"
282
- } ]
283
- },
284
- "DescribeUser" : {
285
- "name" : "DescribeUser",
286
- "http" : {
287
- "method" : "GET",
288
- "requestUri" : "/v1/brokers/{broker-id}/users/{username}",
289
- "responseCode" : 200
290
- },
291
- "input" : {
292
- "shape" : "DescribeUserRequest"
293
- },
294
- "output" : {
295
- "shape" : "DescribeUserResponse"
296
- },
297
- "errors" : [ {
298
- "shape" : "NotFoundException"
299
- }, {
300
- "shape" : "BadRequestException"
301
- }, {
302
- "shape" : "InternalServerErrorException"
303
- }, {
304
- "shape" : "ForbiddenException"
305
- } ]
306
- },
307
- "ListBrokers" : {
308
- "name" : "ListBrokers",
309
- "http" : {
310
- "method" : "GET",
311
- "requestUri" : "/v1/brokers",
312
- "responseCode" : 200
313
- },
314
- "input" : {
315
- "shape" : "ListBrokersRequest"
316
- },
317
- "output" : {
318
- "shape" : "ListBrokersResponse"
319
- },
320
- "errors" : [ {
321
- "shape" : "BadRequestException"
322
- }, {
323
- "shape" : "InternalServerErrorException"
324
- }, {
325
- "shape" : "ForbiddenException"
326
- } ]
327
- },
328
- "ListConfigurationRevisions" : {
329
- "name" : "ListConfigurationRevisions",
330
- "http" : {
331
- "method" : "GET",
332
- "requestUri" : "/v1/configurations/{configuration-id}/revisions",
333
- "responseCode" : 200
334
- },
335
- "input" : {
336
- "shape" : "ListConfigurationRevisionsRequest"
337
- },
338
- "output" : {
339
- "shape" : "ListConfigurationRevisionsResponse"
340
- },
341
- "errors" : [ {
342
- "shape" : "NotFoundException"
343
- }, {
344
- "shape" : "BadRequestException"
345
- }, {
346
- "shape" : "InternalServerErrorException"
347
- }, {
348
- "shape" : "ForbiddenException"
349
- } ]
350
- },
351
- "ListConfigurations" : {
352
- "name" : "ListConfigurations",
353
- "http" : {
354
- "method" : "GET",
355
- "requestUri" : "/v1/configurations",
356
- "responseCode" : 200
357
- },
358
- "input" : {
359
- "shape" : "ListConfigurationsRequest"
360
- },
361
- "output" : {
362
- "shape" : "ListConfigurationsResponse"
363
- },
364
- "errors" : [ {
365
- "shape" : "BadRequestException"
366
- }, {
367
- "shape" : "InternalServerErrorException"
368
- }, {
369
- "shape" : "ForbiddenException"
370
- } ]
371
- },
372
- "ListTags" : {
373
- "name" : "ListTags",
374
- "http" : {
375
- "method" : "GET",
376
- "requestUri" : "/v1/tags/{resource-arn}",
377
- "responseCode" : 200
378
- },
379
- "input" : {
380
- "shape" : "ListTagsRequest"
381
- },
382
- "output" : {
383
- "shape" : "ListTagsResponse"
384
- },
385
- "errors" : [ {
386
- "shape" : "NotFoundException"
387
- }, {
388
- "shape" : "BadRequestException"
389
- }, {
390
- "shape" : "InternalServerErrorException"
391
- }, {
392
- "shape" : "ForbiddenException"
393
- } ]
394
- },
395
- "ListUsers" : {
396
- "name" : "ListUsers",
397
- "http" : {
398
- "method" : "GET",
399
- "requestUri" : "/v1/brokers/{broker-id}/users",
400
- "responseCode" : 200
401
- },
402
- "input" : {
403
- "shape" : "ListUsersRequest"
404
- },
405
- "output" : {
406
- "shape" : "ListUsersResponse"
407
- },
408
- "errors" : [ {
409
- "shape" : "NotFoundException"
410
- }, {
411
- "shape" : "BadRequestException"
412
- }, {
413
- "shape" : "InternalServerErrorException"
414
- }, {
415
- "shape" : "ForbiddenException"
416
- } ]
417
- },
418
- "RebootBroker" : {
419
- "name" : "RebootBroker",
420
- "http" : {
421
- "method" : "POST",
422
- "requestUri" : "/v1/brokers/{broker-id}/reboot",
423
- "responseCode" : 200
424
- },
425
- "input" : {
426
- "shape" : "RebootBrokerRequest"
427
- },
428
- "output" : {
429
- "shape" : "RebootBrokerResponse"
430
- },
431
- "errors" : [ {
432
- "shape" : "NotFoundException"
433
- }, {
434
- "shape" : "BadRequestException"
435
- }, {
436
- "shape" : "InternalServerErrorException"
437
- }, {
438
- "shape" : "ForbiddenException"
439
- } ]
440
- },
441
- "UpdateBroker" : {
442
- "name" : "UpdateBroker",
443
- "http" : {
444
- "method" : "PUT",
445
- "requestUri" : "/v1/brokers/{broker-id}",
446
- "responseCode" : 200
447
- },
448
- "input" : {
449
- "shape" : "UpdateBrokerRequest"
450
- },
451
- "output" : {
452
- "shape" : "UpdateBrokerResponse"
453
- },
454
- "errors" : [ {
455
- "shape" : "NotFoundException"
456
- }, {
457
- "shape" : "BadRequestException"
458
- }, {
459
- "shape" : "InternalServerErrorException"
460
- }, {
461
- "shape" : "ConflictException"
462
- }, {
463
- "shape" : "ForbiddenException"
464
- } ]
465
- },
466
- "UpdateConfiguration" : {
467
- "name" : "UpdateConfiguration",
468
- "http" : {
469
- "method" : "PUT",
470
- "requestUri" : "/v1/configurations/{configuration-id}",
471
- "responseCode" : 200
472
- },
473
- "input" : {
474
- "shape" : "UpdateConfigurationRequest"
475
- },
476
- "output" : {
477
- "shape" : "UpdateConfigurationResponse"
478
- },
479
- "errors" : [ {
480
- "shape" : "NotFoundException"
481
- }, {
482
- "shape" : "BadRequestException"
483
- }, {
484
- "shape" : "InternalServerErrorException"
485
- }, {
486
- "shape" : "ConflictException"
487
- }, {
488
- "shape" : "ForbiddenException"
489
- } ]
490
- },
491
- "UpdateUser" : {
492
- "name" : "UpdateUser",
493
- "http" : {
494
- "method" : "PUT",
495
- "requestUri" : "/v1/brokers/{broker-id}/users/{username}",
496
- "responseCode" : 200
497
- },
498
- "input" : {
499
- "shape" : "UpdateUserRequest"
500
- },
501
- "output" : {
502
- "shape" : "UpdateUserResponse"
503
- },
504
- "errors" : [ {
505
- "shape" : "NotFoundException"
506
- }, {
507
- "shape" : "BadRequestException"
508
- }, {
509
- "shape" : "InternalServerErrorException"
510
- }, {
511
- "shape" : "ConflictException"
512
- }, {
513
- "shape" : "ForbiddenException"
514
- } ]
515
- }
516
- },
517
- "shapes" : {
518
- "AvailabilityZone" : {
519
- "type" : "structure",
520
- "members" : {
521
- "Name" : {
522
- "shape" : "__string",
523
- "locationName" : "name"
524
- }
525
- }
526
- },
527
- "BadRequestException" : {
528
- "type" : "structure",
529
- "members" : {
530
- "ErrorAttribute" : {
531
- "shape" : "__string",
532
- "locationName" : "errorAttribute"
533
- },
534
- "Message" : {
535
- "shape" : "__string",
536
- "locationName" : "message"
537
- }
538
- },
539
- "exception" : true,
540
- "error" : {
541
- "httpStatusCode" : 400
542
- }
543
- },
544
- "BrokerEngineType" : {
545
- "type" : "structure",
546
- "members" : {
547
- "EngineType" : {
548
- "shape" : "EngineType",
549
- "locationName" : "engineType"
550
- },
551
- "EngineVersions" : {
552
- "shape" : "__listOfEngineVersion",
553
- "locationName" : "engineVersions"
554
- }
555
- }
556
- },
557
- "BrokerEngineTypeOutput" : {
558
- "type" : "structure",
559
- "members" : {
560
- "BrokerEngineTypes" : {
561
- "shape" : "__listOfBrokerEngineType",
562
- "locationName" : "brokerEngineTypes"
563
- },
564
- "MaxResults" : {
565
- "shape" : "__integerMin5Max100",
566
- "locationName" : "maxResults"
567
- },
568
- "NextToken" : {
569
- "shape" : "__string",
570
- "locationName" : "nextToken"
571
- }
572
- }
573
- },
574
- "BrokerInstance" : {
575
- "type" : "structure",
576
- "members" : {
577
- "ConsoleURL" : {
578
- "shape" : "__string",
579
- "locationName" : "consoleURL"
580
- },
581
- "Endpoints" : {
582
- "shape" : "__listOf__string",
583
- "locationName" : "endpoints"
584
- },
585
- "IpAddress" : {
586
- "shape" : "__string",
587
- "locationName" : "ipAddress"
588
- }
589
- }
590
- },
591
- "BrokerInstanceOption" : {
592
- "type" : "structure",
593
- "members" : {
594
- "AvailabilityZones" : {
595
- "shape" : "__listOfAvailabilityZone",
596
- "locationName" : "availabilityZones"
597
- },
598
- "EngineType" : {
599
- "shape" : "EngineType",
600
- "locationName" : "engineType"
601
- },
602
- "HostInstanceType" : {
603
- "shape" : "__string",
604
- "locationName" : "hostInstanceType"
605
- },
606
- "SupportedEngineVersions" : {
607
- "shape" : "__listOf__string",
608
- "locationName" : "supportedEngineVersions"
609
- }
610
- }
611
- },
612
- "BrokerInstanceOptionsOutput" : {
613
- "type" : "structure",
614
- "members" : {
615
- "BrokerInstanceOptions" : {
616
- "shape" : "__listOfBrokerInstanceOption",
617
- "locationName" : "brokerInstanceOptions"
618
- },
619
- "MaxResults" : {
620
- "shape" : "__integerMin5Max100",
621
- "locationName" : "maxResults"
622
- },
623
- "NextToken" : {
624
- "shape" : "__string",
625
- "locationName" : "nextToken"
626
- }
627
- }
628
- },
629
- "BrokerState" : {
630
- "type" : "string",
631
- "enum" : [ "CREATION_IN_PROGRESS", "CREATION_FAILED", "DELETION_IN_PROGRESS", "RUNNING", "REBOOT_IN_PROGRESS" ]
632
- },
633
- "BrokerSummary" : {
634
- "type" : "structure",
635
- "members" : {
636
- "BrokerArn" : {
637
- "shape" : "__string",
638
- "locationName" : "brokerArn"
639
- },
640
- "BrokerId" : {
641
- "shape" : "__string",
642
- "locationName" : "brokerId"
643
- },
644
- "BrokerName" : {
645
- "shape" : "__string",
646
- "locationName" : "brokerName"
647
- },
648
- "BrokerState" : {
649
- "shape" : "BrokerState",
650
- "locationName" : "brokerState"
651
- },
652
- "Created" : {
653
- "shape" : "__timestampIso8601",
654
- "locationName" : "created"
655
- },
656
- "DeploymentMode" : {
657
- "shape" : "DeploymentMode",
658
- "locationName" : "deploymentMode"
659
- },
660
- "HostInstanceType" : {
661
- "shape" : "__string",
662
- "locationName" : "hostInstanceType"
663
- }
664
- }
665
- },
666
- "ChangeType" : {
667
- "type" : "string",
668
- "enum" : [ "CREATE", "UPDATE", "DELETE" ]
669
- },
670
- "Configuration" : {
671
- "type" : "structure",
672
- "members" : {
673
- "Arn" : {
674
- "shape" : "__string",
675
- "locationName" : "arn"
676
- },
677
- "Created" : {
678
- "shape" : "__timestampIso8601",
679
- "locationName" : "created"
680
- },
681
- "Description" : {
682
- "shape" : "__string",
683
- "locationName" : "description"
684
- },
685
- "EngineType" : {
686
- "shape" : "EngineType",
687
- "locationName" : "engineType"
688
- },
689
- "EngineVersion" : {
690
- "shape" : "__string",
691
- "locationName" : "engineVersion"
692
- },
693
- "Id" : {
694
- "shape" : "__string",
695
- "locationName" : "id"
696
- },
697
- "LatestRevision" : {
698
- "shape" : "ConfigurationRevision",
699
- "locationName" : "latestRevision"
700
- },
701
- "Name" : {
702
- "shape" : "__string",
703
- "locationName" : "name"
704
- },
705
- "Tags" : {
706
- "shape" : "__mapOf__string",
707
- "locationName" : "tags"
708
- }
709
- }
710
- },
711
- "ConfigurationId" : {
712
- "type" : "structure",
713
- "members" : {
714
- "Id" : {
715
- "shape" : "__string",
716
- "locationName" : "id"
717
- },
718
- "Revision" : {
719
- "shape" : "__integer",
720
- "locationName" : "revision"
721
- }
722
- }
723
- },
724
- "ConfigurationRevision" : {
725
- "type" : "structure",
726
- "members" : {
727
- "Created" : {
728
- "shape" : "__timestampIso8601",
729
- "locationName" : "created"
730
- },
731
- "Description" : {
732
- "shape" : "__string",
733
- "locationName" : "description"
734
- },
735
- "Revision" : {
736
- "shape" : "__integer",
737
- "locationName" : "revision"
738
- }
739
- }
740
- },
741
- "Configurations" : {
742
- "type" : "structure",
743
- "members" : {
744
- "Current" : {
745
- "shape" : "ConfigurationId",
746
- "locationName" : "current"
747
- },
748
- "History" : {
749
- "shape" : "__listOfConfigurationId",
750
- "locationName" : "history"
751
- },
752
- "Pending" : {
753
- "shape" : "ConfigurationId",
754
- "locationName" : "pending"
755
- }
756
- }
757
- },
758
- "ConflictException" : {
759
- "type" : "structure",
760
- "members" : {
761
- "ErrorAttribute" : {
762
- "shape" : "__string",
763
- "locationName" : "errorAttribute"
764
- },
765
- "Message" : {
766
- "shape" : "__string",
767
- "locationName" : "message"
768
- }
769
- },
770
- "exception" : true,
771
- "error" : {
772
- "httpStatusCode" : 409
773
- }
774
- },
775
- "CreateBrokerInput" : {
776
- "type" : "structure",
777
- "members" : {
778
- "AutoMinorVersionUpgrade" : {
779
- "shape" : "__boolean",
780
- "locationName" : "autoMinorVersionUpgrade"
781
- },
782
- "BrokerName" : {
783
- "shape" : "__string",
784
- "locationName" : "brokerName"
785
- },
786
- "Configuration" : {
787
- "shape" : "ConfigurationId",
788
- "locationName" : "configuration"
789
- },
790
- "CreatorRequestId" : {
791
- "shape" : "__string",
792
- "locationName" : "creatorRequestId",
793
- "idempotencyToken" : true
794
- },
795
- "DeploymentMode" : {
796
- "shape" : "DeploymentMode",
797
- "locationName" : "deploymentMode"
798
- },
799
- "EncryptionOptions" : {
800
- "shape" : "EncryptionOptions",
801
- "locationName" : "encryptionOptions"
802
- },
803
- "EngineType" : {
804
- "shape" : "EngineType",
805
- "locationName" : "engineType"
806
- },
807
- "EngineVersion" : {
808
- "shape" : "__string",
809
- "locationName" : "engineVersion"
810
- },
811
- "HostInstanceType" : {
812
- "shape" : "__string",
813
- "locationName" : "hostInstanceType"
814
- },
815
- "Logs" : {
816
- "shape" : "Logs",
817
- "locationName" : "logs"
818
- },
819
- "MaintenanceWindowStartTime" : {
820
- "shape" : "WeeklyStartTime",
821
- "locationName" : "maintenanceWindowStartTime"
822
- },
823
- "PubliclyAccessible" : {
824
- "shape" : "__boolean",
825
- "locationName" : "publiclyAccessible"
826
- },
827
- "SecurityGroups" : {
828
- "shape" : "__listOf__string",
829
- "locationName" : "securityGroups"
830
- },
831
- "SubnetIds" : {
832
- "shape" : "__listOf__string",
833
- "locationName" : "subnetIds"
834
- },
835
- "Tags" : {
836
- "shape" : "__mapOf__string",
837
- "locationName" : "tags"
838
- },
839
- "Users" : {
840
- "shape" : "__listOfUser",
841
- "locationName" : "users"
842
- }
843
- }
844
- },
845
- "CreateBrokerOutput" : {
846
- "type" : "structure",
847
- "members" : {
848
- "BrokerArn" : {
849
- "shape" : "__string",
850
- "locationName" : "brokerArn"
851
- },
852
- "BrokerId" : {
853
- "shape" : "__string",
854
- "locationName" : "brokerId"
855
- }
856
- }
857
- },
858
- "CreateBrokerRequest" : {
859
- "type" : "structure",
860
- "members" : {
861
- "AutoMinorVersionUpgrade" : {
862
- "shape" : "__boolean",
863
- "locationName" : "autoMinorVersionUpgrade"
864
- },
865
- "BrokerName" : {
866
- "shape" : "__string",
867
- "locationName" : "brokerName"
868
- },
869
- "Configuration" : {
870
- "shape" : "ConfigurationId",
871
- "locationName" : "configuration"
872
- },
873
- "CreatorRequestId" : {
874
- "shape" : "__string",
875
- "locationName" : "creatorRequestId",
876
- "idempotencyToken" : true
877
- },
878
- "DeploymentMode" : {
879
- "shape" : "DeploymentMode",
880
- "locationName" : "deploymentMode"
881
- },
882
- "EncryptionOptions" : {
883
- "shape" : "EncryptionOptions",
884
- "locationName" : "encryptionOptions"
885
- },
886
- "EngineType" : {
887
- "shape" : "EngineType",
888
- "locationName" : "engineType"
889
- },
890
- "EngineVersion" : {
891
- "shape" : "__string",
892
- "locationName" : "engineVersion"
893
- },
894
- "HostInstanceType" : {
895
- "shape" : "__string",
896
- "locationName" : "hostInstanceType"
897
- },
898
- "Logs" : {
899
- "shape" : "Logs",
900
- "locationName" : "logs"
901
- },
902
- "MaintenanceWindowStartTime" : {
903
- "shape" : "WeeklyStartTime",
904
- "locationName" : "maintenanceWindowStartTime"
905
- },
906
- "PubliclyAccessible" : {
907
- "shape" : "__boolean",
908
- "locationName" : "publiclyAccessible"
909
- },
910
- "SecurityGroups" : {
911
- "shape" : "__listOf__string",
912
- "locationName" : "securityGroups"
913
- },
914
- "SubnetIds" : {
915
- "shape" : "__listOf__string",
916
- "locationName" : "subnetIds"
917
- },
918
- "Tags" : {
919
- "shape" : "__mapOf__string",
920
- "locationName" : "tags"
921
- },
922
- "Users" : {
923
- "shape" : "__listOfUser",
924
- "locationName" : "users"
925
- }
926
- }
927
- },
928
- "CreateBrokerResponse" : {
929
- "type" : "structure",
930
- "members" : {
931
- "BrokerArn" : {
932
- "shape" : "__string",
933
- "locationName" : "brokerArn"
934
- },
935
- "BrokerId" : {
936
- "shape" : "__string",
937
- "locationName" : "brokerId"
938
- }
939
- }
940
- },
941
- "CreateConfigurationInput" : {
942
- "type" : "structure",
943
- "members" : {
944
- "EngineType" : {
945
- "shape" : "EngineType",
946
- "locationName" : "engineType"
947
- },
948
- "EngineVersion" : {
949
- "shape" : "__string",
950
- "locationName" : "engineVersion"
951
- },
952
- "Name" : {
953
- "shape" : "__string",
954
- "locationName" : "name"
955
- },
956
- "Tags" : {
957
- "shape" : "__mapOf__string",
958
- "locationName" : "tags"
959
- }
960
- }
961
- },
962
- "CreateConfigurationOutput" : {
963
- "type" : "structure",
964
- "members" : {
965
- "Arn" : {
966
- "shape" : "__string",
967
- "locationName" : "arn"
968
- },
969
- "Created" : {
970
- "shape" : "__timestampIso8601",
971
- "locationName" : "created"
972
- },
973
- "Id" : {
974
- "shape" : "__string",
975
- "locationName" : "id"
976
- },
977
- "LatestRevision" : {
978
- "shape" : "ConfigurationRevision",
979
- "locationName" : "latestRevision"
980
- },
981
- "Name" : {
982
- "shape" : "__string",
983
- "locationName" : "name"
984
- }
985
- }
986
- },
987
- "CreateConfigurationRequest" : {
988
- "type" : "structure",
989
- "members" : {
990
- "EngineType" : {
991
- "shape" : "EngineType",
992
- "locationName" : "engineType"
993
- },
994
- "EngineVersion" : {
995
- "shape" : "__string",
996
- "locationName" : "engineVersion"
997
- },
998
- "Name" : {
999
- "shape" : "__string",
1000
- "locationName" : "name"
1001
- },
1002
- "Tags" : {
1003
- "shape" : "__mapOf__string",
1004
- "locationName" : "tags"
1005
- }
1006
- }
1007
- },
1008
- "CreateConfigurationResponse" : {
1009
- "type" : "structure",
1010
- "members" : {
1011
- "Arn" : {
1012
- "shape" : "__string",
1013
- "locationName" : "arn"
1014
- },
1015
- "Created" : {
1016
- "shape" : "__timestampIso8601",
1017
- "locationName" : "created"
1018
- },
1019
- "Id" : {
1020
- "shape" : "__string",
1021
- "locationName" : "id"
1022
- },
1023
- "LatestRevision" : {
1024
- "shape" : "ConfigurationRevision",
1025
- "locationName" : "latestRevision"
1026
- },
1027
- "Name" : {
1028
- "shape" : "__string",
1029
- "locationName" : "name"
1030
- }
1031
- }
1032
- },
1033
- "CreateTagsRequest" : {
1034
- "type" : "structure",
1035
- "members" : {
1036
- "ResourceArn" : {
1037
- "shape" : "__string",
1038
- "location" : "uri",
1039
- "locationName" : "resource-arn"
1040
- },
1041
- "Tags" : {
1042
- "shape" : "__mapOf__string",
1043
- "locationName" : "tags"
1044
- }
1045
- },
1046
- "required" : [ "ResourceArn" ]
1047
- },
1048
- "CreateUserInput" : {
1049
- "type" : "structure",
1050
- "members" : {
1051
- "ConsoleAccess" : {
1052
- "shape" : "__boolean",
1053
- "locationName" : "consoleAccess"
1054
- },
1055
- "Groups" : {
1056
- "shape" : "__listOf__string",
1057
- "locationName" : "groups"
1058
- },
1059
- "Password" : {
1060
- "shape" : "__string",
1061
- "locationName" : "password"
1062
- }
1063
- }
1064
- },
1065
- "CreateUserRequest" : {
1066
- "type" : "structure",
1067
- "members" : {
1068
- "BrokerId" : {
1069
- "shape" : "__string",
1070
- "location" : "uri",
1071
- "locationName" : "broker-id"
1072
- },
1073
- "ConsoleAccess" : {
1074
- "shape" : "__boolean",
1075
- "locationName" : "consoleAccess"
1076
- },
1077
- "Groups" : {
1078
- "shape" : "__listOf__string",
1079
- "locationName" : "groups"
1080
- },
1081
- "Password" : {
1082
- "shape" : "__string",
1083
- "locationName" : "password"
1084
- },
1085
- "Username" : {
1086
- "shape" : "__string",
1087
- "location" : "uri",
1088
- "locationName" : "username"
1089
- }
1090
- },
1091
- "required" : [ "Username", "BrokerId" ]
1092
- },
1093
- "CreateUserResponse" : {
1094
- "type" : "structure",
1095
- "members" : { }
1096
- },
1097
- "DayOfWeek" : {
1098
- "type" : "string",
1099
- "enum" : [ "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY" ]
1100
- },
1101
- "DeleteBrokerOutput" : {
1102
- "type" : "structure",
1103
- "members" : {
1104
- "BrokerId" : {
1105
- "shape" : "__string",
1106
- "locationName" : "brokerId"
1107
- }
1108
- }
1109
- },
1110
- "DeleteBrokerRequest" : {
1111
- "type" : "structure",
1112
- "members" : {
1113
- "BrokerId" : {
1114
- "shape" : "__string",
1115
- "location" : "uri",
1116
- "locationName" : "broker-id"
1117
- }
1118
- },
1119
- "required" : [ "BrokerId" ]
1120
- },
1121
- "DeleteBrokerResponse" : {
1122
- "type" : "structure",
1123
- "members" : {
1124
- "BrokerId" : {
1125
- "shape" : "__string",
1126
- "locationName" : "brokerId"
1127
- }
1128
- }
1129
- },
1130
- "DeleteTagsRequest" : {
1131
- "type" : "structure",
1132
- "members" : {
1133
- "ResourceArn" : {
1134
- "shape" : "__string",
1135
- "location" : "uri",
1136
- "locationName" : "resource-arn"
1137
- },
1138
- "TagKeys" : {
1139
- "shape" : "__listOf__string",
1140
- "location" : "querystring",
1141
- "locationName" : "tagKeys"
1142
- }
1143
- },
1144
- "required" : [ "TagKeys", "ResourceArn" ]
1145
- },
1146
- "DeleteUserRequest" : {
1147
- "type" : "structure",
1148
- "members" : {
1149
- "BrokerId" : {
1150
- "shape" : "__string",
1151
- "location" : "uri",
1152
- "locationName" : "broker-id"
1153
- },
1154
- "Username" : {
1155
- "shape" : "__string",
1156
- "location" : "uri",
1157
- "locationName" : "username"
1158
- }
1159
- },
1160
- "required" : [ "Username", "BrokerId" ]
1161
- },
1162
- "DeleteUserResponse" : {
1163
- "type" : "structure",
1164
- "members" : { }
1165
- },
1166
- "DeploymentMode" : {
1167
- "type" : "string",
1168
- "enum" : [ "SINGLE_INSTANCE", "ACTIVE_STANDBY_MULTI_AZ" ]
1169
- },
1170
- "DescribeBrokerEngineTypesRequest" : {
1171
- "type" : "structure",
1172
- "members" : {
1173
- "EngineType" : {
1174
- "shape" : "__string",
1175
- "location" : "querystring",
1176
- "locationName" : "engineType"
1177
- },
1178
- "MaxResults" : {
1179
- "shape" : "MaxResults",
1180
- "location" : "querystring",
1181
- "locationName" : "maxResults"
1182
- },
1183
- "NextToken" : {
1184
- "shape" : "__string",
1185
- "location" : "querystring",
1186
- "locationName" : "nextToken"
1187
- }
1188
- }
1189
- },
1190
- "DescribeBrokerEngineTypesResponse" : {
1191
- "type" : "structure",
1192
- "members" : {
1193
- "BrokerEngineTypes" : {
1194
- "shape" : "__listOfBrokerEngineType",
1195
- "locationName" : "brokerEngineTypes"
1196
- },
1197
- "MaxResults" : {
1198
- "shape" : "__integerMin5Max100",
1199
- "locationName" : "maxResults"
1200
- },
1201
- "NextToken" : {
1202
- "shape" : "__string",
1203
- "locationName" : "nextToken"
1204
- }
1205
- }
1206
- },
1207
- "DescribeBrokerInstanceOptionsRequest" : {
1208
- "type" : "structure",
1209
- "members" : {
1210
- "EngineType" : {
1211
- "shape" : "__string",
1212
- "location" : "querystring",
1213
- "locationName" : "engineType"
1214
- },
1215
- "HostInstanceType" : {
1216
- "shape" : "__string",
1217
- "location" : "querystring",
1218
- "locationName" : "hostInstanceType"
1219
- },
1220
- "MaxResults" : {
1221
- "shape" : "MaxResults",
1222
- "location" : "querystring",
1223
- "locationName" : "maxResults"
1224
- },
1225
- "NextToken" : {
1226
- "shape" : "__string",
1227
- "location" : "querystring",
1228
- "locationName" : "nextToken"
1229
- }
1230
- }
1231
- },
1232
- "DescribeBrokerInstanceOptionsResponse" : {
1233
- "type" : "structure",
1234
- "members" : {
1235
- "BrokerInstanceOptions" : {
1236
- "shape" : "__listOfBrokerInstanceOption",
1237
- "locationName" : "brokerInstanceOptions"
1238
- },
1239
- "MaxResults" : {
1240
- "shape" : "__integerMin5Max100",
1241
- "locationName" : "maxResults"
1242
- },
1243
- "NextToken" : {
1244
- "shape" : "__string",
1245
- "locationName" : "nextToken"
1246
- }
1247
- }
1248
- },
1249
- "DescribeBrokerOutput" : {
1250
- "type" : "structure",
1251
- "members" : {
1252
- "AutoMinorVersionUpgrade" : {
1253
- "shape" : "__boolean",
1254
- "locationName" : "autoMinorVersionUpgrade"
1255
- },
1256
- "BrokerArn" : {
1257
- "shape" : "__string",
1258
- "locationName" : "brokerArn"
1259
- },
1260
- "BrokerId" : {
1261
- "shape" : "__string",
1262
- "locationName" : "brokerId"
1263
- },
1264
- "BrokerInstances" : {
1265
- "shape" : "__listOfBrokerInstance",
1266
- "locationName" : "brokerInstances"
1267
- },
1268
- "BrokerName" : {
1269
- "shape" : "__string",
1270
- "locationName" : "brokerName"
1271
- },
1272
- "BrokerState" : {
1273
- "shape" : "BrokerState",
1274
- "locationName" : "brokerState"
1275
- },
1276
- "Configurations" : {
1277
- "shape" : "Configurations",
1278
- "locationName" : "configurations"
1279
- },
1280
- "Created" : {
1281
- "shape" : "__timestampIso8601",
1282
- "locationName" : "created"
1283
- },
1284
- "DeploymentMode" : {
1285
- "shape" : "DeploymentMode",
1286
- "locationName" : "deploymentMode"
1287
- },
1288
- "EncryptionOptions" : {
1289
- "shape" : "EncryptionOptions",
1290
- "locationName" : "encryptionOptions"
1291
- },
1292
- "EngineType" : {
1293
- "shape" : "EngineType",
1294
- "locationName" : "engineType"
1295
- },
1296
- "EngineVersion" : {
1297
- "shape" : "__string",
1298
- "locationName" : "engineVersion"
1299
- },
1300
- "HostInstanceType" : {
1301
- "shape" : "__string",
1302
- "locationName" : "hostInstanceType"
1303
- },
1304
- "Logs" : {
1305
- "shape" : "LogsSummary",
1306
- "locationName" : "logs"
1307
- },
1308
- "MaintenanceWindowStartTime" : {
1309
- "shape" : "WeeklyStartTime",
1310
- "locationName" : "maintenanceWindowStartTime"
1311
- },
1312
- "PendingEngineVersion" : {
1313
- "shape" : "__string",
1314
- "locationName" : "pendingEngineVersion"
1315
- },
1316
- "PendingSecurityGroups" : {
1317
- "shape": "__listOf__string",
1318
- "locationName": "pendingSecurityGroups"
1319
- },
1320
- "PendingHostInstanceType" : {
1321
- "shape" : "__string",
1322
- "locationName" : "pendingHostInstanceType"
1323
- },
1324
- "PubliclyAccessible" : {
1325
- "shape" : "__boolean",
1326
- "locationName" : "publiclyAccessible"
1327
- },
1328
- "SecurityGroups" : {
1329
- "shape" : "__listOf__string",
1330
- "locationName" : "securityGroups"
1331
- },
1332
- "SubnetIds" : {
1333
- "shape" : "__listOf__string",
1334
- "locationName" : "subnetIds"
1335
- },
1336
- "Tags" : {
1337
- "shape" : "__mapOf__string",
1338
- "locationName" : "tags"
1339
- },
1340
- "Users" : {
1341
- "shape" : "__listOfUserSummary",
1342
- "locationName" : "users"
1343
- }
1344
- }
1345
- },
1346
- "DescribeBrokerRequest" : {
1347
- "type" : "structure",
1348
- "members" : {
1349
- "BrokerId" : {
1350
- "shape" : "__string",
1351
- "location" : "uri",
1352
- "locationName" : "broker-id"
1353
- }
1354
- },
1355
- "required" : [ "BrokerId" ]
1356
- },
1357
- "DescribeBrokerResponse" : {
1358
- "type" : "structure",
1359
- "members" : {
1360
- "AutoMinorVersionUpgrade" : {
1361
- "shape" : "__boolean",
1362
- "locationName" : "autoMinorVersionUpgrade"
1363
- },
1364
- "BrokerArn" : {
1365
- "shape" : "__string",
1366
- "locationName" : "brokerArn"
1367
- },
1368
- "BrokerId" : {
1369
- "shape" : "__string",
1370
- "locationName" : "brokerId"
1371
- },
1372
- "BrokerInstances" : {
1373
- "shape" : "__listOfBrokerInstance",
1374
- "locationName" : "brokerInstances"
1375
- },
1376
- "BrokerName" : {
1377
- "shape" : "__string",
1378
- "locationName" : "brokerName"
1379
- },
1380
- "BrokerState" : {
1381
- "shape" : "BrokerState",
1382
- "locationName" : "brokerState"
1383
- },
1384
- "Configurations" : {
1385
- "shape" : "Configurations",
1386
- "locationName" : "configurations"
1387
- },
1388
- "Created" : {
1389
- "shape" : "__timestampIso8601",
1390
- "locationName" : "created"
1391
- },
1392
- "DeploymentMode" : {
1393
- "shape" : "DeploymentMode",
1394
- "locationName" : "deploymentMode"
1395
- },
1396
- "EncryptionOptions" : {
1397
- "shape" : "EncryptionOptions",
1398
- "locationName" : "encryptionOptions"
1399
- },
1400
- "EngineType" : {
1401
- "shape" : "EngineType",
1402
- "locationName" : "engineType"
1403
- },
1404
- "EngineVersion" : {
1405
- "shape" : "__string",
1406
- "locationName" : "engineVersion"
1407
- },
1408
- "HostInstanceType" : {
1409
- "shape" : "__string",
1410
- "locationName" : "hostInstanceType"
1411
- },
1412
- "Logs" : {
1413
- "shape" : "LogsSummary",
1414
- "locationName" : "logs"
1415
- },
1416
- "MaintenanceWindowStartTime" : {
1417
- "shape" : "WeeklyStartTime",
1418
- "locationName" : "maintenanceWindowStartTime"
1419
- },
1420
- "PendingEngineVersion" : {
1421
- "shape" : "__string",
1422
- "locationName" : "pendingEngineVersion"
1423
- },
1424
- "PendingSecurityGroups" : {
1425
- "shape" : "__listOf__string",
1426
- "locationName" : "pendingSecurityGroups"
1427
- },
1428
- "PendingHostInstanceType" : {
1429
- "shape" : "__string",
1430
- "locationName" : "pendingHostInstanceType"
1431
- },
1432
- "PubliclyAccessible" : {
1433
- "shape" : "__boolean",
1434
- "locationName" : "publiclyAccessible"
1435
- },
1436
- "SecurityGroups" : {
1437
- "shape" : "__listOf__string",
1438
- "locationName" : "securityGroups"
1439
- },
1440
- "SubnetIds" : {
1441
- "shape" : "__listOf__string",
1442
- "locationName" : "subnetIds"
1443
- },
1444
- "Tags" : {
1445
- "shape" : "__mapOf__string",
1446
- "locationName" : "tags"
1447
- },
1448
- "Users" : {
1449
- "shape" : "__listOfUserSummary",
1450
- "locationName" : "users"
1451
- }
1452
- }
1453
- },
1454
- "DescribeConfigurationRequest" : {
1455
- "type" : "structure",
1456
- "members" : {
1457
- "ConfigurationId" : {
1458
- "shape" : "__string",
1459
- "location" : "uri",
1460
- "locationName" : "configuration-id"
1461
- }
1462
- },
1463
- "required" : [ "ConfigurationId" ]
1464
- },
1465
- "DescribeConfigurationResponse" : {
1466
- "type" : "structure",
1467
- "members" : {
1468
- "Arn" : {
1469
- "shape" : "__string",
1470
- "locationName" : "arn"
1471
- },
1472
- "Created" : {
1473
- "shape" : "__timestampIso8601",
1474
- "locationName" : "created"
1475
- },
1476
- "Description" : {
1477
- "shape" : "__string",
1478
- "locationName" : "description"
1479
- },
1480
- "EngineType" : {
1481
- "shape" : "EngineType",
1482
- "locationName" : "engineType"
1483
- },
1484
- "EngineVersion" : {
1485
- "shape" : "__string",
1486
- "locationName" : "engineVersion"
1487
- },
1488
- "Id" : {
1489
- "shape" : "__string",
1490
- "locationName" : "id"
1491
- },
1492
- "LatestRevision" : {
1493
- "shape" : "ConfigurationRevision",
1494
- "locationName" : "latestRevision"
1495
- },
1496
- "Name" : {
1497
- "shape" : "__string",
1498
- "locationName" : "name"
1499
- },
1500
- "Tags" : {
1501
- "shape" : "__mapOf__string",
1502
- "locationName" : "tags"
1503
- }
1504
- }
1505
- },
1506
- "DescribeConfigurationRevisionOutput" : {
1507
- "type" : "structure",
1508
- "members" : {
1509
- "ConfigurationId" : {
1510
- "shape" : "__string",
1511
- "locationName" : "configurationId"
1512
- },
1513
- "Created" : {
1514
- "shape" : "__timestampIso8601",
1515
- "locationName" : "created"
1516
- },
1517
- "Data" : {
1518
- "shape" : "__string",
1519
- "locationName" : "data"
1520
- },
1521
- "Description" : {
1522
- "shape" : "__string",
1523
- "locationName" : "description"
1524
- }
1525
- }
1526
- },
1527
- "DescribeConfigurationRevisionRequest" : {
1528
- "type" : "structure",
1529
- "members" : {
1530
- "ConfigurationId" : {
1531
- "shape" : "__string",
1532
- "location" : "uri",
1533
- "locationName" : "configuration-id"
1534
- },
1535
- "ConfigurationRevision" : {
1536
- "shape" : "__string",
1537
- "location" : "uri",
1538
- "locationName" : "configuration-revision"
1539
- }
1540
- },
1541
- "required" : [ "ConfigurationRevision", "ConfigurationId" ]
1542
- },
1543
- "DescribeConfigurationRevisionResponse" : {
1544
- "type" : "structure",
1545
- "members" : {
1546
- "ConfigurationId" : {
1547
- "shape" : "__string",
1548
- "locationName" : "configurationId"
1549
- },
1550
- "Created" : {
1551
- "shape" : "__timestampIso8601",
1552
- "locationName" : "created"
1553
- },
1554
- "Data" : {
1555
- "shape" : "__string",
1556
- "locationName" : "data"
1557
- },
1558
- "Description" : {
1559
- "shape" : "__string",
1560
- "locationName" : "description"
1561
- }
1562
- }
1563
- },
1564
- "DescribeUserOutput" : {
1565
- "type" : "structure",
1566
- "members" : {
1567
- "BrokerId" : {
1568
- "shape" : "__string",
1569
- "locationName" : "brokerId"
1570
- },
1571
- "ConsoleAccess" : {
1572
- "shape" : "__boolean",
1573
- "locationName" : "consoleAccess"
1574
- },
1575
- "Groups" : {
1576
- "shape" : "__listOf__string",
1577
- "locationName" : "groups"
1578
- },
1579
- "Pending" : {
1580
- "shape" : "UserPendingChanges",
1581
- "locationName" : "pending"
1582
- },
1583
- "Username" : {
1584
- "shape" : "__string",
1585
- "locationName" : "username"
1586
- }
1587
- }
1588
- },
1589
- "DescribeUserRequest" : {
1590
- "type" : "structure",
1591
- "members" : {
1592
- "BrokerId" : {
1593
- "shape" : "__string",
1594
- "location" : "uri",
1595
- "locationName" : "broker-id"
1596
- },
1597
- "Username" : {
1598
- "shape" : "__string",
1599
- "location" : "uri",
1600
- "locationName" : "username"
1601
- }
1602
- },
1603
- "required" : [ "Username", "BrokerId" ]
1604
- },
1605
- "DescribeUserResponse" : {
1606
- "type" : "structure",
1607
- "members" : {
1608
- "BrokerId" : {
1609
- "shape" : "__string",
1610
- "locationName" : "brokerId"
1611
- },
1612
- "ConsoleAccess" : {
1613
- "shape" : "__boolean",
1614
- "locationName" : "consoleAccess"
1615
- },
1616
- "Groups" : {
1617
- "shape" : "__listOf__string",
1618
- "locationName" : "groups"
1619
- },
1620
- "Pending" : {
1621
- "shape" : "UserPendingChanges",
1622
- "locationName" : "pending"
1623
- },
1624
- "Username" : {
1625
- "shape" : "__string",
1626
- "locationName" : "username"
1627
- }
1628
- }
1629
- },
1630
- "EncryptionOptions" : {
1631
- "type" : "structure",
1632
- "members" : {
1633
- "KmsKeyId" : {
1634
- "shape" : "__string",
1635
- "locationName" : "kmsKeyId"
1636
- },
1637
- "UseAwsOwnedKey" : {
1638
- "shape" : "__boolean",
1639
- "locationName" : "useAwsOwnedKey"
1640
- }
1641
- },
1642
- "required" : [ "UseAwsOwnedKey" ]
1643
- },
1644
- "EngineType" : {
1645
- "type" : "string",
1646
- "enum" : [ "ACTIVEMQ" ]
1647
- },
1648
- "EngineVersion" : {
1649
- "type" : "structure",
1650
- "members" : {
1651
- "Name" : {
1652
- "shape" : "__string",
1653
- "locationName" : "name"
1654
- }
1655
- }
1656
- },
1657
- "Error" : {
1658
- "type" : "structure",
1659
- "members" : {
1660
- "ErrorAttribute" : {
1661
- "shape" : "__string",
1662
- "locationName" : "errorAttribute"
1663
- },
1664
- "Message" : {
1665
- "shape" : "__string",
1666
- "locationName" : "message"
1667
- }
1668
- }
1669
- },
1670
- "ForbiddenException" : {
1671
- "type" : "structure",
1672
- "members" : {
1673
- "ErrorAttribute" : {
1674
- "shape" : "__string",
1675
- "locationName" : "errorAttribute"
1676
- },
1677
- "Message" : {
1678
- "shape" : "__string",
1679
- "locationName" : "message"
1680
- }
1681
- },
1682
- "exception" : true,
1683
- "error" : {
1684
- "httpStatusCode" : 403
1685
- }
1686
- },
1687
- "InternalServerErrorException" : {
1688
- "type" : "structure",
1689
- "members" : {
1690
- "ErrorAttribute" : {
1691
- "shape" : "__string",
1692
- "locationName" : "errorAttribute"
1693
- },
1694
- "Message" : {
1695
- "shape" : "__string",
1696
- "locationName" : "message"
1697
- }
1698
- },
1699
- "exception" : true,
1700
- "error" : {
1701
- "httpStatusCode" : 500
1702
- }
1703
- },
1704
- "ListBrokersOutput" : {
1705
- "type" : "structure",
1706
- "members" : {
1707
- "BrokerSummaries" : {
1708
- "shape" : "__listOfBrokerSummary",
1709
- "locationName" : "brokerSummaries"
1710
- },
1711
- "NextToken" : {
1712
- "shape" : "__string",
1713
- "locationName" : "nextToken"
1714
- }
1715
- }
1716
- },
1717
- "ListBrokersRequest" : {
1718
- "type" : "structure",
1719
- "members" : {
1720
- "MaxResults" : {
1721
- "shape" : "MaxResults",
1722
- "location" : "querystring",
1723
- "locationName" : "maxResults"
1724
- },
1725
- "NextToken" : {
1726
- "shape" : "__string",
1727
- "location" : "querystring",
1728
- "locationName" : "nextToken"
1729
- }
1730
- }
1731
- },
1732
- "ListBrokersResponse" : {
1733
- "type" : "structure",
1734
- "members" : {
1735
- "BrokerSummaries" : {
1736
- "shape" : "__listOfBrokerSummary",
1737
- "locationName" : "brokerSummaries"
1738
- },
1739
- "NextToken" : {
1740
- "shape" : "__string",
1741
- "locationName" : "nextToken"
1742
- }
1743
- }
1744
- },
1745
- "ListConfigurationRevisionsOutput" : {
1746
- "type" : "structure",
1747
- "members" : {
1748
- "ConfigurationId" : {
1749
- "shape" : "__string",
1750
- "locationName" : "configurationId"
1751
- },
1752
- "MaxResults" : {
1753
- "shape" : "__integer",
1754
- "locationName" : "maxResults"
1755
- },
1756
- "NextToken" : {
1757
- "shape" : "__string",
1758
- "locationName" : "nextToken"
1759
- },
1760
- "Revisions" : {
1761
- "shape" : "__listOfConfigurationRevision",
1762
- "locationName" : "revisions"
1763
- }
1764
- }
1765
- },
1766
- "ListConfigurationRevisionsRequest" : {
1767
- "type" : "structure",
1768
- "members" : {
1769
- "ConfigurationId" : {
1770
- "shape" : "__string",
1771
- "location" : "uri",
1772
- "locationName" : "configuration-id"
1773
- },
1774
- "MaxResults" : {
1775
- "shape" : "MaxResults",
1776
- "location" : "querystring",
1777
- "locationName" : "maxResults"
1778
- },
1779
- "NextToken" : {
1780
- "shape" : "__string",
1781
- "location" : "querystring",
1782
- "locationName" : "nextToken"
1783
- }
1784
- },
1785
- "required" : [ "ConfigurationId" ]
1786
- },
1787
- "ListConfigurationRevisionsResponse" : {
1788
- "type" : "structure",
1789
- "members" : {
1790
- "ConfigurationId" : {
1791
- "shape" : "__string",
1792
- "locationName" : "configurationId"
1793
- },
1794
- "MaxResults" : {
1795
- "shape" : "__integer",
1796
- "locationName" : "maxResults"
1797
- },
1798
- "NextToken" : {
1799
- "shape" : "__string",
1800
- "locationName" : "nextToken"
1801
- },
1802
- "Revisions" : {
1803
- "shape" : "__listOfConfigurationRevision",
1804
- "locationName" : "revisions"
1805
- }
1806
- }
1807
- },
1808
- "ListConfigurationsOutput" : {
1809
- "type" : "structure",
1810
- "members" : {
1811
- "Configurations" : {
1812
- "shape" : "__listOfConfiguration",
1813
- "locationName" : "configurations"
1814
- },
1815
- "MaxResults" : {
1816
- "shape" : "__integer",
1817
- "locationName" : "maxResults"
1818
- },
1819
- "NextToken" : {
1820
- "shape" : "__string",
1821
- "locationName" : "nextToken"
1822
- }
1823
- }
1824
- },
1825
- "ListConfigurationsRequest" : {
1826
- "type" : "structure",
1827
- "members" : {
1828
- "MaxResults" : {
1829
- "shape" : "MaxResults",
1830
- "location" : "querystring",
1831
- "locationName" : "maxResults"
1832
- },
1833
- "NextToken" : {
1834
- "shape" : "__string",
1835
- "location" : "querystring",
1836
- "locationName" : "nextToken"
1837
- }
1838
- }
1839
- },
1840
- "ListConfigurationsResponse" : {
1841
- "type" : "structure",
1842
- "members" : {
1843
- "Configurations" : {
1844
- "shape" : "__listOfConfiguration",
1845
- "locationName" : "configurations"
1846
- },
1847
- "MaxResults" : {
1848
- "shape" : "__integer",
1849
- "locationName" : "maxResults"
1850
- },
1851
- "NextToken" : {
1852
- "shape" : "__string",
1853
- "locationName" : "nextToken"
1854
- }
1855
- }
1856
- },
1857
- "ListTagsRequest" : {
1858
- "type" : "structure",
1859
- "members" : {
1860
- "ResourceArn" : {
1861
- "shape" : "__string",
1862
- "location" : "uri",
1863
- "locationName" : "resource-arn"
1864
- }
1865
- },
1866
- "required" : [ "ResourceArn" ]
1867
- },
1868
- "ListTagsResponse" : {
1869
- "type" : "structure",
1870
- "members" : {
1871
- "Tags" : {
1872
- "shape" : "__mapOf__string",
1873
- "locationName" : "tags"
1874
- }
1875
- }
1876
- },
1877
- "ListUsersOutput" : {
1878
- "type" : "structure",
1879
- "members" : {
1880
- "BrokerId" : {
1881
- "shape" : "__string",
1882
- "locationName" : "brokerId"
1883
- },
1884
- "MaxResults" : {
1885
- "shape" : "__integerMin5Max100",
1886
- "locationName" : "maxResults"
1887
- },
1888
- "NextToken" : {
1889
- "shape" : "__string",
1890
- "locationName" : "nextToken"
1891
- },
1892
- "Users" : {
1893
- "shape" : "__listOfUserSummary",
1894
- "locationName" : "users"
1895
- }
1896
- }
1897
- },
1898
- "ListUsersRequest" : {
1899
- "type" : "structure",
1900
- "members" : {
1901
- "BrokerId" : {
1902
- "shape" : "__string",
1903
- "location" : "uri",
1904
- "locationName" : "broker-id"
1905
- },
1906
- "MaxResults" : {
1907
- "shape" : "MaxResults",
1908
- "location" : "querystring",
1909
- "locationName" : "maxResults"
1910
- },
1911
- "NextToken" : {
1912
- "shape" : "__string",
1913
- "location" : "querystring",
1914
- "locationName" : "nextToken"
1915
- }
1916
- },
1917
- "required" : [ "BrokerId" ]
1918
- },
1919
- "ListUsersResponse" : {
1920
- "type" : "structure",
1921
- "members" : {
1922
- "BrokerId" : {
1923
- "shape" : "__string",
1924
- "locationName" : "brokerId"
1925
- },
1926
- "MaxResults" : {
1927
- "shape" : "__integerMin5Max100",
1928
- "locationName" : "maxResults"
1929
- },
1930
- "NextToken" : {
1931
- "shape" : "__string",
1932
- "locationName" : "nextToken"
1933
- },
1934
- "Users" : {
1935
- "shape" : "__listOfUserSummary",
1936
- "locationName" : "users"
1937
- }
1938
- }
1939
- },
1940
- "Logs" : {
1941
- "type" : "structure",
1942
- "members" : {
1943
- "Audit" : {
1944
- "shape" : "__boolean",
1945
- "locationName" : "audit"
1946
- },
1947
- "General" : {
1948
- "shape" : "__boolean",
1949
- "locationName" : "general"
1950
- }
1951
- }
1952
- },
1953
- "LogsSummary" : {
1954
- "type" : "structure",
1955
- "members" : {
1956
- "Audit" : {
1957
- "shape" : "__boolean",
1958
- "locationName" : "audit"
1959
- },
1960
- "AuditLogGroup" : {
1961
- "shape" : "__string",
1962
- "locationName" : "auditLogGroup"
1963
- },
1964
- "General" : {
1965
- "shape" : "__boolean",
1966
- "locationName" : "general"
1967
- },
1968
- "GeneralLogGroup" : {
1969
- "shape" : "__string",
1970
- "locationName" : "generalLogGroup"
1971
- },
1972
- "Pending" : {
1973
- "shape" : "PendingLogs",
1974
- "locationName" : "pending"
1975
- }
1976
- }
1977
- },
1978
- "MaxResults" : {
1979
- "type" : "integer",
1980
- "min" : 1,
1981
- "max" : 100
1982
- },
1983
- "NotFoundException" : {
1984
- "type" : "structure",
1985
- "members" : {
1986
- "ErrorAttribute" : {
1987
- "shape" : "__string",
1988
- "locationName" : "errorAttribute"
1989
- },
1990
- "Message" : {
1991
- "shape" : "__string",
1992
- "locationName" : "message"
1993
- }
1994
- },
1995
- "exception" : true,
1996
- "error" : {
1997
- "httpStatusCode" : 404
1998
- }
1999
- },
2000
- "PendingLogs" : {
2001
- "type" : "structure",
2002
- "members" : {
2003
- "Audit" : {
2004
- "shape" : "__boolean",
2005
- "locationName" : "audit"
2006
- },
2007
- "General" : {
2008
- "shape" : "__boolean",
2009
- "locationName" : "general"
2010
- }
2011
- }
2012
- },
2013
- "RebootBrokerRequest" : {
2014
- "type" : "structure",
2015
- "members" : {
2016
- "BrokerId" : {
2017
- "shape" : "__string",
2018
- "location" : "uri",
2019
- "locationName" : "broker-id"
2020
- }
2021
- },
2022
- "required" : [ "BrokerId" ]
2023
- },
2024
- "RebootBrokerResponse" : {
2025
- "type" : "structure",
2026
- "members" : { }
2027
- },
2028
- "SanitizationWarning" : {
2029
- "type" : "structure",
2030
- "members" : {
2031
- "AttributeName" : {
2032
- "shape" : "__string",
2033
- "locationName" : "attributeName"
2034
- },
2035
- "ElementName" : {
2036
- "shape" : "__string",
2037
- "locationName" : "elementName"
2038
- },
2039
- "Reason" : {
2040
- "shape" : "SanitizationWarningReason",
2041
- "locationName" : "reason"
2042
- }
2043
- }
2044
- },
2045
- "SanitizationWarningReason" : {
2046
- "type" : "string",
2047
- "enum" : [ "DISALLOWED_ELEMENT_REMOVED", "DISALLOWED_ATTRIBUTE_REMOVED", "INVALID_ATTRIBUTE_VALUE_REMOVED" ]
2048
- },
2049
- "Tags" : {
2050
- "type" : "structure",
2051
- "members" : {
2052
- "Tags" : {
2053
- "shape" : "__mapOf__string",
2054
- "locationName" : "tags"
2055
- }
2056
- }
2057
- },
2058
- "UnauthorizedException" : {
2059
- "type" : "structure",
2060
- "members" : {
2061
- "ErrorAttribute" : {
2062
- "shape" : "__string",
2063
- "locationName" : "errorAttribute"
2064
- },
2065
- "Message" : {
2066
- "shape" : "__string",
2067
- "locationName" : "message"
2068
- }
2069
- },
2070
- "exception" : true,
2071
- "error" : {
2072
- "httpStatusCode" : 401
2073
- }
2074
- },
2075
- "UpdateBrokerInput" : {
2076
- "type" : "structure",
2077
- "members" : {
2078
- "AutoMinorVersionUpgrade" : {
2079
- "shape" : "__boolean",
2080
- "locationName" : "autoMinorVersionUpgrade"
2081
- },
2082
- "Configuration" : {
2083
- "shape" : "ConfigurationId",
2084
- "locationName" : "configuration"
2085
- },
2086
- "EngineVersion" : {
2087
- "shape" : "__string",
2088
- "locationName" : "engineVersion"
2089
- },
2090
- "HostInstanceType" : {
2091
- "shape" : "__string",
2092
- "locationName" : "hostInstanceType"
2093
- },
2094
- "Logs" : {
2095
- "shape" : "Logs",
2096
- "locationName" : "logs"
2097
- },
2098
- "SecurityGroups" : {
2099
- "shape" : "__listOf__string",
2100
- "locationName" : "securityGroups"
2101
- }
2102
- }
2103
- },
2104
- "UpdateBrokerOutput" : {
2105
- "type" : "structure",
2106
- "members" : {
2107
- "AutoMinorVersionUpgrade" : {
2108
- "shape" : "__boolean",
2109
- "locationName" : "autoMinorVersionUpgrade"
2110
- },
2111
- "BrokerId" : {
2112
- "shape" : "__string",
2113
- "locationName" : "brokerId"
2114
- },
2115
- "Configuration" : {
2116
- "shape" : "ConfigurationId",
2117
- "locationName" : "configuration"
2118
- },
2119
- "EngineVersion" : {
2120
- "shape" : "__string",
2121
- "locationName" : "engineVersion"
2122
- },
2123
- "HostInstanceType" : {
2124
- "shape" : "__string",
2125
- "locationName" : "hostInstanceType"
2126
- },
2127
- "Logs" : {
2128
- "shape" : "Logs",
2129
- "locationName" : "logs"
2130
- },
2131
- "SecurityGroups" : {
2132
- "shape" : "__listOf__string",
2133
- "locationName" : "securityGroups"
2134
- }
2135
- }
2136
- },
2137
- "UpdateBrokerRequest" : {
2138
- "type" : "structure",
2139
- "members" : {
2140
- "AutoMinorVersionUpgrade" : {
2141
- "shape" : "__boolean",
2142
- "locationName" : "autoMinorVersionUpgrade"
2143
- },
2144
- "BrokerId" : {
2145
- "shape" : "__string",
2146
- "location" : "uri",
2147
- "locationName" : "broker-id"
2148
- },
2149
- "Configuration" : {
2150
- "shape" : "ConfigurationId",
2151
- "locationName" : "configuration"
2152
- },
2153
- "EngineVersion" : {
2154
- "shape" : "__string",
2155
- "locationName" : "engineVersion"
2156
- },
2157
- "HostInstanceType" : {
2158
- "shape" : "__string",
2159
- "locationName" : "hostInstanceType"
2160
- },
2161
- "Logs" : {
2162
- "shape" : "Logs",
2163
- "locationName" : "logs"
2164
- },
2165
- "SecurityGroups" : {
2166
- "shape" : "__listOf__string",
2167
- "locationName" : "securityGroups"
2168
- }
2169
- },
2170
- "required" : [ "BrokerId" ]
2171
- },
2172
- "UpdateBrokerResponse" : {
2173
- "type" : "structure",
2174
- "members" : {
2175
- "AutoMinorVersionUpgrade" : {
2176
- "shape" : "__boolean",
2177
- "locationName" : "autoMinorVersionUpgrade"
2178
- },
2179
- "BrokerId" : {
2180
- "shape" : "__string",
2181
- "locationName" : "brokerId"
2182
- },
2183
- "Configuration" : {
2184
- "shape" : "ConfigurationId",
2185
- "locationName" : "configuration"
2186
- },
2187
- "EngineVersion" : {
2188
- "shape" : "__string",
2189
- "locationName" : "engineVersion"
2190
- },
2191
- "HostInstanceType" : {
2192
- "shape" : "__string",
2193
- "locationName" : "hostInstanceType"
2194
- },
2195
- "Logs" : {
2196
- "shape" : "Logs",
2197
- "locationName" : "logs"
2198
- },
2199
- "SecurityGroups" : {
2200
- "shape" : "__listOf__string",
2201
- "locationName" : "securityGroups"
2202
- }
2203
- }
2204
- },
2205
- "UpdateConfigurationInput" : {
2206
- "type" : "structure",
2207
- "members" : {
2208
- "Data" : {
2209
- "shape" : "__string",
2210
- "locationName" : "data"
2211
- },
2212
- "Description" : {
2213
- "shape" : "__string",
2214
- "locationName" : "description"
2215
- }
2216
- }
2217
- },
2218
- "UpdateConfigurationOutput" : {
2219
- "type" : "structure",
2220
- "members" : {
2221
- "Arn" : {
2222
- "shape" : "__string",
2223
- "locationName" : "arn"
2224
- },
2225
- "Created" : {
2226
- "shape" : "__timestampIso8601",
2227
- "locationName" : "created"
2228
- },
2229
- "Id" : {
2230
- "shape" : "__string",
2231
- "locationName" : "id"
2232
- },
2233
- "LatestRevision" : {
2234
- "shape" : "ConfigurationRevision",
2235
- "locationName" : "latestRevision"
2236
- },
2237
- "Name" : {
2238
- "shape" : "__string",
2239
- "locationName" : "name"
2240
- },
2241
- "Warnings" : {
2242
- "shape" : "__listOfSanitizationWarning",
2243
- "locationName" : "warnings"
2244
- }
2245
- }
2246
- },
2247
- "UpdateConfigurationRequest" : {
2248
- "type" : "structure",
2249
- "members" : {
2250
- "ConfigurationId" : {
2251
- "shape" : "__string",
2252
- "location" : "uri",
2253
- "locationName" : "configuration-id"
2254
- },
2255
- "Data" : {
2256
- "shape" : "__string",
2257
- "locationName" : "data"
2258
- },
2259
- "Description" : {
2260
- "shape" : "__string",
2261
- "locationName" : "description"
2262
- }
2263
- },
2264
- "required" : [ "ConfigurationId" ]
2265
- },
2266
- "UpdateConfigurationResponse" : {
2267
- "type" : "structure",
2268
- "members" : {
2269
- "Arn" : {
2270
- "shape" : "__string",
2271
- "locationName" : "arn"
2272
- },
2273
- "Created" : {
2274
- "shape" : "__timestampIso8601",
2275
- "locationName" : "created"
2276
- },
2277
- "Id" : {
2278
- "shape" : "__string",
2279
- "locationName" : "id"
2280
- },
2281
- "LatestRevision" : {
2282
- "shape" : "ConfigurationRevision",
2283
- "locationName" : "latestRevision"
2284
- },
2285
- "Name" : {
2286
- "shape" : "__string",
2287
- "locationName" : "name"
2288
- },
2289
- "Warnings" : {
2290
- "shape" : "__listOfSanitizationWarning",
2291
- "locationName" : "warnings"
2292
- }
2293
- }
2294
- },
2295
- "UpdateUserInput" : {
2296
- "type" : "structure",
2297
- "members" : {
2298
- "ConsoleAccess" : {
2299
- "shape" : "__boolean",
2300
- "locationName" : "consoleAccess"
2301
- },
2302
- "Groups" : {
2303
- "shape" : "__listOf__string",
2304
- "locationName" : "groups"
2305
- },
2306
- "Password" : {
2307
- "shape" : "__string",
2308
- "locationName" : "password"
2309
- }
2310
- }
2311
- },
2312
- "UpdateUserRequest" : {
2313
- "type" : "structure",
2314
- "members" : {
2315
- "BrokerId" : {
2316
- "shape" : "__string",
2317
- "location" : "uri",
2318
- "locationName" : "broker-id"
2319
- },
2320
- "ConsoleAccess" : {
2321
- "shape" : "__boolean",
2322
- "locationName" : "consoleAccess"
2323
- },
2324
- "Groups" : {
2325
- "shape" : "__listOf__string",
2326
- "locationName" : "groups"
2327
- },
2328
- "Password" : {
2329
- "shape" : "__string",
2330
- "locationName" : "password"
2331
- },
2332
- "Username" : {
2333
- "shape" : "__string",
2334
- "location" : "uri",
2335
- "locationName" : "username"
2336
- }
2337
- },
2338
- "required" : [ "Username", "BrokerId" ]
2339
- },
2340
- "UpdateUserResponse" : {
2341
- "type" : "structure",
2342
- "members" : { }
2343
- },
2344
- "User" : {
2345
- "type" : "structure",
2346
- "members" : {
2347
- "ConsoleAccess" : {
2348
- "shape" : "__boolean",
2349
- "locationName" : "consoleAccess"
2350
- },
2351
- "Groups" : {
2352
- "shape" : "__listOf__string",
2353
- "locationName" : "groups"
2354
- },
2355
- "Password" : {
2356
- "shape" : "__string",
2357
- "locationName" : "password"
2358
- },
2359
- "Username" : {
2360
- "shape" : "__string",
2361
- "locationName" : "username"
2362
- }
2363
- }
2364
- },
2365
- "UserPendingChanges" : {
2366
- "type" : "structure",
2367
- "members" : {
2368
- "ConsoleAccess" : {
2369
- "shape" : "__boolean",
2370
- "locationName" : "consoleAccess"
2371
- },
2372
- "Groups" : {
2373
- "shape" : "__listOf__string",
2374
- "locationName" : "groups"
2375
- },
2376
- "PendingChange" : {
2377
- "shape" : "ChangeType",
2378
- "locationName" : "pendingChange"
2379
- }
2380
- }
2381
- },
2382
- "UserSummary" : {
2383
- "type" : "structure",
2384
- "members" : {
2385
- "PendingChange" : {
2386
- "shape" : "ChangeType",
2387
- "locationName" : "pendingChange"
2388
- },
2389
- "Username" : {
2390
- "shape" : "__string",
2391
- "locationName" : "username"
2392
- }
2393
- }
2394
- },
2395
- "WeeklyStartTime" : {
2396
- "type" : "structure",
2397
- "members" : {
2398
- "DayOfWeek" : {
2399
- "shape" : "DayOfWeek",
2400
- "locationName" : "dayOfWeek"
2401
- },
2402
- "TimeOfDay" : {
2403
- "shape" : "__string",
2404
- "locationName" : "timeOfDay"
2405
- },
2406
- "TimeZone" : {
2407
- "shape" : "__string",
2408
- "locationName" : "timeZone"
2409
- }
2410
- }
2411
- },
2412
- "__boolean" : {
2413
- "type" : "boolean"
2414
- },
2415
- "__double" : {
2416
- "type" : "double"
2417
- },
2418
- "__integer" : {
2419
- "type" : "integer"
2420
- },
2421
- "__integerMin5Max100" : {
2422
- "type" : "integer",
2423
- "min" : 5,
2424
- "max" : 100
2425
- },
2426
- "__listOfAvailabilityZone" : {
2427
- "type" : "list",
2428
- "member" : {
2429
- "shape" : "AvailabilityZone"
2430
- }
2431
- },
2432
- "__listOfBrokerEngineType" : {
2433
- "type" : "list",
2434
- "member" : {
2435
- "shape" : "BrokerEngineType"
2436
- }
2437
- },
2438
- "__listOfBrokerInstance" : {
2439
- "type" : "list",
2440
- "member" : {
2441
- "shape" : "BrokerInstance"
2442
- }
2443
- },
2444
- "__listOfBrokerInstanceOption" : {
2445
- "type" : "list",
2446
- "member" : {
2447
- "shape" : "BrokerInstanceOption"
2448
- }
2449
- },
2450
- "__listOfBrokerSummary" : {
2451
- "type" : "list",
2452
- "member" : {
2453
- "shape" : "BrokerSummary"
2454
- }
2455
- },
2456
- "__listOfConfiguration" : {
2457
- "type" : "list",
2458
- "member" : {
2459
- "shape" : "Configuration"
2460
- }
2461
- },
2462
- "__listOfConfigurationId" : {
2463
- "type" : "list",
2464
- "member" : {
2465
- "shape" : "ConfigurationId"
2466
- }
2467
- },
2468
- "__listOfConfigurationRevision" : {
2469
- "type" : "list",
2470
- "member" : {
2471
- "shape" : "ConfigurationRevision"
2472
- }
2473
- },
2474
- "__listOfEngineVersion" : {
2475
- "type" : "list",
2476
- "member" : {
2477
- "shape" : "EngineVersion"
2478
- }
2479
- },
2480
- "__listOfSanitizationWarning" : {
2481
- "type" : "list",
2482
- "member" : {
2483
- "shape" : "SanitizationWarning"
2484
- }
2485
- },
2486
- "__listOfUser" : {
2487
- "type" : "list",
2488
- "member" : {
2489
- "shape" : "User"
2490
- }
2491
- },
2492
- "__listOfUserSummary" : {
2493
- "type" : "list",
2494
- "member" : {
2495
- "shape" : "UserSummary"
2496
- }
2497
- },
2498
- "__listOf__string" : {
2499
- "type" : "list",
2500
- "member" : {
2501
- "shape" : "__string"
2502
- }
2503
- },
2504
- "__long" : {
2505
- "type" : "long"
2506
- },
2507
- "__mapOf__string" : {
2508
- "type" : "map",
2509
- "key" : {
2510
- "shape" : "__string"
2511
- },
2512
- "value" : {
2513
- "shape" : "__string"
2514
- }
2515
- },
2516
- "__string" : {
2517
- "type" : "string"
2518
- },
2519
- "__timestampIso8601" : {
2520
- "type" : "timestamp",
2521
- "timestampFormat" : "iso8601"
2522
- },
2523
- "__timestampUnix" : {
2524
- "type" : "timestamp",
2525
- "timestampFormat" : "unixTimestamp"
2526
- }
2527
- },
2528
- "authorizers" : {
2529
- "authorization_strategy" : {
2530
- "name" : "authorization_strategy",
2531
- "type" : "provided",
2532
- "placement" : {
2533
- "location" : "header",
2534
- "name" : "Authorization"
2535
- }
2536
- }
2537
- }
2538
- }