aws-sdk-core 2.11.404 → 3.75.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1212) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -562
  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 -1085
  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 -4003
  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/application-autoscaling/2016-02-06/api-2.json +0 -779
  164. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  165. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  166. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  167. data/apis/application-insights/2018-11-25/api-2.json +0 -721
  168. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  169. data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
  170. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  171. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  172. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  173. data/apis/appmesh/2019-01-25/api-2.json +0 -3424
  174. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  175. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  176. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  177. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  178. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  179. data/apis/appstream/2016-12-01/smoke.json +0 -11
  180. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  181. data/apis/appsync/2017-07-25/api-2.json +0 -2285
  182. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  183. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  184. data/apis/athena/2017-05-18/api-2.json +0 -985
  185. data/apis/athena/2017-05-18/examples-1.json +0 -5
  186. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  187. data/apis/athena/2017-05-18/smoke.json +0 -11
  188. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  189. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  190. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  191. data/apis/autoscaling/2011-01-01/api-2.json +0 -2464
  192. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  193. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  194. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  195. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  196. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  197. data/apis/backup/2018-11-15/api-2.json +0 -2150
  198. data/apis/backup/2018-11-15/examples-1.json +0 -5
  199. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  200. data/apis/batch/2016-08-10/api-2.json +0 -1137
  201. data/apis/batch/2016-08-10/examples-1.json +0 -589
  202. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  203. data/apis/batch/2016-08-10/smoke.json +0 -11
  204. data/apis/budgets/2016-10-20/api-2.json +0 -830
  205. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  206. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  207. data/apis/ce/2017-10-25/api-2.json +0 -1387
  208. data/apis/ce/2017-10-25/examples-1.json +0 -5
  209. data/apis/ce/2017-10-25/paginators-1.json +0 -14
  210. data/apis/chime/2018-05-01/api-2.json +0 -4483
  211. data/apis/chime/2018-05-01/examples-1.json +0 -5
  212. data/apis/chime/2018-05-01/paginators-1.json +0 -59
  213. data/apis/cloud9/2017-09-23/api-2.json +0 -549
  214. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  215. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  216. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  217. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  218. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  219. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  220. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  221. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  222. data/apis/cloudformation/2010-05-15/api-2.json +0 -3389
  223. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  224. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  225. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  226. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  227. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  228. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  229. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  230. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  231. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  232. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  233. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  234. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  235. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  236. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  237. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  238. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  239. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  240. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  241. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  242. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  243. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  244. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  248. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  249. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  250. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  251. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  252. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  253. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  254. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  255. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  256. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  257. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  258. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  259. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  260. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  261. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  262. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  263. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  264. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  265. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  266. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  267. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  268. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  269. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  270. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  271. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  272. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  273. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  274. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  275. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  276. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  277. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  278. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  279. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  280. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  281. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  282. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  283. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  284. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  285. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  286. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  287. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  288. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  289. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  290. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  291. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  292. data/apis/codebuild/2016-10-06/api-2.json +0 -1295
  293. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  294. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  295. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  296. data/apis/codecommit/2015-04-13/api-2.json +0 -5383
  297. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  298. data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
  299. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  300. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  301. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  302. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  303. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  304. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  305. data/apis/codepipeline/2015-07-09/api-2.json +0 -2441
  306. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  307. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  308. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  309. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  310. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  311. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  312. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  313. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  314. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  315. data/apis/codestar/2017-04-19/smoke.json +0 -11
  316. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  317. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  318. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  319. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5395
  320. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  321. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  322. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  323. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  324. data/apis/comprehend/2017-11-27/api-2.json +0 -2367
  325. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  326. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  327. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
  328. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  329. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  330. data/apis/config/2014-11-12/api-2.json +0 -4340
  331. data/apis/config/2014-11-12/examples-1.json +0 -5
  332. data/apis/config/2014-11-12/paginators-1.json +0 -21
  333. data/apis/config/2014-11-12/smoke.json +0 -19
  334. data/apis/connect/2017-08-08/api-2.json +0 -2139
  335. data/apis/connect/2017-08-08/examples-1.json +0 -5
  336. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  337. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  338. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  339. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  340. data/apis/cur/2017-01-06/api-2.json +0 -277
  341. data/apis/cur/2017-01-06/examples-1.json +0 -102
  342. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  343. data/apis/cur/2017-01-06/smoke.json +0 -11
  344. data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
  345. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  346. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  347. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  348. data/apis/datasync/2018-11-09/api-2.json +0 -1354
  349. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  350. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  351. data/apis/dax/2017-04-19/api-2.json +0 -1140
  352. data/apis/dax/2017-04-19/examples-1.json +0 -5
  353. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  354. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  355. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  356. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  357. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  358. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  359. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  360. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  361. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  362. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  363. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  364. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  365. data/apis/discovery/2015-11-01/smoke.json +0 -11
  366. data/apis/dlm/2018-01-12/api-2.json +0 -633
  367. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  368. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  369. data/apis/dms/2016-01-01/api-2.json +0 -2296
  370. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  371. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  372. data/apis/dms/2016-01-01/smoke.json +0 -18
  373. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  374. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  375. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  376. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  377. data/apis/docdb/2014-10-31/smoke.json +0 -18
  378. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  379. data/apis/ds/2015-04-16/api-2.json +0 -2634
  380. data/apis/ds/2015-04-16/examples-1.json +0 -5
  381. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  382. data/apis/ds/2015-04-16/smoke.json +0 -20
  383. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  384. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  385. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  386. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  387. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  388. data/apis/dynamodb/2012-08-10/api-2.json +0 -3024
  389. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  390. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  391. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  392. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  393. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  394. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  395. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  396. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  397. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  398. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  399. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  400. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  401. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  402. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  403. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  404. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  405. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  406. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  407. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  408. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  409. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  410. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  411. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  412. data/apis/ec2/2016-11-15/api-2.json +0 -26786
  413. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  414. data/apis/ec2/2016-11-15/paginators-1.json +0 -462
  415. data/apis/ec2/2016-11-15/resources-1.json +0 -2688
  416. data/apis/ec2/2016-11-15/smoke.json +0 -20
  417. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  418. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  419. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  420. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  421. data/apis/ecr/2015-09-21/smoke.json +0 -18
  422. data/apis/ecs/2014-11-13/api-2.json +0 -2910
  423. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  424. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  425. data/apis/ecs/2014-11-13/smoke.json +0 -18
  426. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  427. data/apis/eks/2017-11-01/api-2.json +0 -1211
  428. data/apis/eks/2017-11-01/examples-1.json +0 -135
  429. data/apis/eks/2017-11-01/paginators-1.json +0 -22
  430. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  431. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  432. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  433. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  434. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  435. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  436. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  437. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  438. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  439. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  440. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -897
  441. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  442. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  443. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  444. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  445. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  446. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  447. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  448. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  449. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2343
  450. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  451. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  452. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  453. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  454. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2241
  455. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  456. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  457. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  458. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  459. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  460. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  461. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  462. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  463. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  464. data/apis/email/2010-12-01/api-2.json +0 -3182
  465. data/apis/email/2010-12-01/examples-1.json +0 -1021
  466. data/apis/email/2010-12-01/paginators-1.json +0 -18
  467. data/apis/email/2010-12-01/smoke.json +0 -18
  468. data/apis/email/2010-12-01/waiters-2.json +0 -18
  469. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  470. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  471. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  472. data/apis/es/2015-01-01/api-2.json +0 -1572
  473. data/apis/es/2015-01-01/examples-1.json +0 -5
  474. data/apis/es/2015-01-01/paginators-1.json +0 -29
  475. data/apis/es/2015-01-01/smoke.json +0 -18
  476. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  477. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  478. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  479. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  480. data/apis/events/2015-10-07/api-2.json +0 -1462
  481. data/apis/events/2015-10-07/examples-1.json +0 -5
  482. data/apis/events/2015-10-07/paginators-1.json +0 -4
  483. data/apis/events/2015-10-07/smoke.json +0 -18
  484. data/apis/firehose/2015-08-04/api-2.json +0 -1445
  485. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  486. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  487. data/apis/firehose/2015-08-04/smoke.json +0 -18
  488. data/apis/fms/2018-01-01/api-2.json +0 -701
  489. data/apis/fms/2018-01-01/examples-1.json +0 -5
  490. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  491. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  492. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  493. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  494. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  495. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  496. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  497. data/apis/fsx/2018-03-01/api-2.json +0 -1063
  498. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  499. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  500. data/apis/gamelift/2015-10-01/api-2.json +0 -3495
  501. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  502. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  503. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  504. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  505. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  506. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  507. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  508. data/apis/glacier/2012-06-01/smoke.json +0 -18
  509. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  510. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  511. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  512. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  513. data/apis/glue/2017-03-31/api-2.json +0 -6302
  514. data/apis/glue/2017-03-31/examples-1.json +0 -5
  515. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  516. data/apis/glue/2017-03-31/smoke.json +0 -11
  517. data/apis/greengrass/2017-06-07/api-2.json +0 -5106
  518. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  519. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  520. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  521. data/apis/guardduty/2017-11-28/api-2.json +0 -3508
  522. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  523. data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
  524. data/apis/health/2016-08-04/api-2.json +0 -554
  525. data/apis/health/2016-08-04/examples-1.json +0 -5
  526. data/apis/health/2016-08-04/paginators-1.json +0 -31
  527. data/apis/health/2016-08-04/smoke.json +0 -11
  528. data/apis/iam/2010-05-08/api-2.json +0 -5787
  529. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  530. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  531. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  532. data/apis/iam/2010-05-08/smoke.json +0 -18
  533. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  534. data/apis/importexport/2010-06-01/api-2.json +0 -667
  535. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  536. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  537. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  538. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  539. data/apis/inspector/2016-02-16/smoke.json +0 -18
  540. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  541. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  542. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  543. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  544. data/apis/iot/2015-05-28/api-2.json +0 -10148
  545. data/apis/iot/2015-05-28/examples-1.json +0 -5
  546. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  547. data/apis/iot/2015-05-28/smoke.json +0 -18
  548. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  549. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  550. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  551. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  552. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  553. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  554. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  555. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  556. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  557. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  558. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  559. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  560. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  561. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  562. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  563. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  564. data/apis/kafka/2018-11-14/api-2.json +0 -1950
  565. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  566. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  567. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  568. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  569. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  570. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  571. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  572. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  573. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  574. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  575. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  576. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  577. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  578. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  579. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  580. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
  581. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  582. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  583. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  584. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  585. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  586. data/apis/kms/2014-11-01/api-2.json +0 -1834
  587. data/apis/kms/2014-11-01/examples-1.json +0 -906
  588. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  589. data/apis/kms/2014-11-01/smoke.json +0 -19
  590. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  591. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  592. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  593. data/apis/lambda/2014-11-11/api-2.json +0 -668
  594. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  595. data/apis/lambda/2015-03-31/api-2.json +0 -2356
  596. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  597. data/apis/lambda/2015-03-31/paginators-1.json +0 -40
  598. data/apis/lambda/2015-03-31/smoke.json +0 -18
  599. data/apis/lambda/2015-03-31/waiters-2.json +0 -22
  600. data/apis/lex-models/2017-04-19/api-2.json +0 -2265
  601. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  602. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  603. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  604. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  605. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  606. data/apis/lightsail/2016-11-28/api-2.json +0 -5015
  607. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  608. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  609. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  610. data/apis/logs/2014-03-28/api-2.json +0 -1701
  611. data/apis/logs/2014-03-28/examples-1.json +0 -5
  612. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  613. data/apis/logs/2014-03-28/smoke.json +0 -19
  614. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  615. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  616. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  617. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  618. data/apis/macie/2017-12-19/api-2.json +0 -365
  619. data/apis/macie/2017-12-19/examples-1.json +0 -5
  620. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  621. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  622. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  623. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  624. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  625. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  626. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  627. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  628. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  629. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  630. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  631. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  632. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  633. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8559
  634. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  635. data/apis/medialive/2017-10-14/api-2.json +0 -9023
  636. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  637. data/apis/medialive/2017-10-14/waiters-2.json +0 -111
  638. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1514
  639. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  640. data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
  641. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  642. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  643. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  644. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  645. data/apis/mediastore/2017-09-01/api-2.json +0 -737
  646. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  647. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  648. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  649. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  650. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  651. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  652. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  653. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -207
  654. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  655. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  656. data/apis/mobile/2017-07-01/api-2.json +0 -551
  657. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  658. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  659. data/apis/monitoring/2010-08-01/api-2.json +0 -1526
  660. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  661. data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
  662. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  663. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  664. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  665. data/apis/mq/2017-11-27/api-2.json +0 -2538
  666. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  667. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  668. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  669. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  670. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  671. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  672. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  673. data/apis/neptune/2014-10-31/smoke.json +0 -18
  674. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  675. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  676. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  677. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  678. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  679. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  680. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  681. data/apis/opsworkscm/2016-11-01/api-2.json +0 -817
  682. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  683. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  684. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  685. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  686. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  687. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  688. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  689. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  690. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  691. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  692. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  693. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  694. data/apis/personalize/2018-05-22/api-2.json +0 -1863
  695. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  696. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  697. data/apis/pi/2018-02-27/api-2.json +0 -253
  698. data/apis/pi/2018-02-27/examples-1.json +0 -5
  699. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  700. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  701. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  702. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  703. data/apis/pinpoint/2016-12-01/api-2.json +0 -11189
  704. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  705. data/apis/polly/2016-06-10/api-2.json +0 -832
  706. data/apis/polly/2016-06-10/examples-1.json +0 -171
  707. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  708. data/apis/polly/2016-06-10/smoke.json +0 -11
  709. data/apis/pricing/2017-10-15/api-2.json +0 -227
  710. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  711. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  712. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  713. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  714. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  715. data/apis/qldb/2019-01-02/api-2.json +0 -776
  716. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  717. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  718. data/apis/quicksight/2018-04-01/api-2.json +0 -5482
  719. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  720. data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
  721. data/apis/ram/2018-01-04/api-2.json +0 -1021
  722. data/apis/ram/2018-01-04/examples-1.json +0 -5
  723. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  724. data/apis/rds-data/2018-08-01/api-2.json +0 -540
  725. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  726. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  727. data/apis/rds/2013-01-10/api-2.json +0 -2903
  728. data/apis/rds/2013-01-10/examples-1.json +0 -5
  729. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  730. data/apis/rds/2013-01-10/smoke.json +0 -18
  731. data/apis/rds/2013-02-12/api-2.json +0 -3059
  732. data/apis/rds/2013-02-12/examples-1.json +0 -5
  733. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  734. data/apis/rds/2013-02-12/smoke.json +0 -18
  735. data/apis/rds/2013-09-09/api-2.json +0 -3160
  736. data/apis/rds/2013-09-09/examples-1.json +0 -5
  737. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  738. data/apis/rds/2013-09-09/smoke.json +0 -18
  739. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  740. data/apis/rds/2014-09-01/api-2.json +0 -3273
  741. data/apis/rds/2014-09-01/examples-1.json +0 -5
  742. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  743. data/apis/rds/2014-09-01/smoke.json +0 -18
  744. data/apis/rds/2014-10-31/api-2.json +0 -6880
  745. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  746. data/apis/rds/2014-10-31/paginators-1.json +0 -140
  747. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  748. data/apis/rds/2014-10-31/smoke.json +0 -18
  749. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  750. data/apis/rds/2015-11-12/api-2.json +0 -5509
  751. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  752. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  753. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  754. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  755. data/apis/redshift/2012-12-01/api-2.json +0 -4995
  756. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  757. data/apis/redshift/2012-12-01/paginators-1.json +0 -100
  758. data/apis/redshift/2012-12-01/smoke.json +0 -18
  759. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  760. data/apis/rekognition/2016-06-27/api-2.json +0 -2148
  761. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  762. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  763. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  764. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  765. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  766. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  767. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  768. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  769. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  770. data/apis/robomaker/2018-06-29/api-2.json +0 -2160
  771. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  772. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  773. data/apis/route53/2013-04-01/api-2.json +0 -3780
  774. data/apis/route53/2013-04-01/examples-1.json +0 -762
  775. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  776. data/apis/route53/2013-04-01/smoke.json +0 -18
  777. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  778. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  779. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  780. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  781. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  782. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  783. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  784. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  785. data/apis/runtime.lex/2016-11-28/api-2.json +0 -708
  786. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  787. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  788. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  789. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  790. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  791. data/apis/s3/2006-03-01/api-2.json +0 -6653
  792. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  793. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  794. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  795. data/apis/s3/2006-03-01/smoke.json +0 -11
  796. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  797. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  798. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  799. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  800. data/apis/sagemaker/2017-07-24/api-2.json +0 -5289
  801. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  802. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  803. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  804. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  805. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  806. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  807. data/apis/sdb/2009-04-15/api-2.json +0 -955
  808. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  809. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  810. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  811. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  812. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  813. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  814. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  815. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  816. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  817. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  818. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  819. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  820. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  821. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  822. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  823. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  824. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  825. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  826. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  827. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  828. data/apis/sesv2/2019-09-27/api-2.json +0 -2093
  829. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  830. data/apis/sesv2/2019-09-27/paginators-1.json +0 -34
  831. data/apis/shield/2016-06-02/api-2.json +0 -893
  832. data/apis/shield/2016-06-02/examples-1.json +0 -5
  833. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  834. data/apis/shield/2016-06-02/smoke.json +0 -11
  835. data/apis/signer/2017-08-25/api-2.json +0 -817
  836. data/apis/signer/2017-08-25/examples-1.json +0 -5
  837. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  838. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  839. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  840. data/apis/sms/2016-10-24/api-2.json +0 -1366
  841. data/apis/sms/2016-10-24/examples-1.json +0 -5
  842. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  843. data/apis/sms/2016-10-24/smoke.json +0 -18
  844. data/apis/snowball/2016-06-30/api-2.json +0 -955
  845. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  846. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  847. data/apis/snowball/2016-06-30/smoke.json +0 -11
  848. data/apis/sns/2010-03-31/api-2.json +0 -1468
  849. data/apis/sns/2010-03-31/examples-1.json +0 -5
  850. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  851. data/apis/sns/2010-03-31/resources-1.json +0 -327
  852. data/apis/sns/2010-03-31/smoke.json +0 -19
  853. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  854. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  855. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  856. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  857. data/apis/sqs/2012-11-05/smoke.json +0 -18
  858. data/apis/ssm/2014-11-06/api-2.json +0 -9111
  859. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  860. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  861. data/apis/ssm/2014-11-06/smoke.json +0 -18
  862. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  863. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  864. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  865. data/apis/sso/2019-06-10/api-2.json +0 -281
  866. data/apis/sso/2019-06-10/examples-1.json +0 -5
  867. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  868. data/apis/states/2016-11-23/api-2.json +0 -1409
  869. data/apis/states/2016-11-23/examples-1.json +0 -5
  870. data/apis/states/2016-11-23/paginators-1.json +0 -28
  871. data/apis/states/2016-11-23/smoke.json +0 -11
  872. data/apis/storagegateway/2013-06-30/api-2.json +0 -3259
  873. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  874. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  875. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  876. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  877. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  878. data/apis/sts/2011-06-15/api-2.json +0 -598
  879. data/apis/sts/2011-06-15/examples-1.json +0 -234
  880. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  881. data/apis/sts/2011-06-15/smoke.json +0 -19
  882. data/apis/support/2013-04-15/api-2.json +0 -773
  883. data/apis/support/2013-04-15/examples-1.json +0 -5
  884. data/apis/support/2013-04-15/paginators-1.json +0 -25
  885. data/apis/support/2013-04-15/smoke.json +0 -22
  886. data/apis/swf/2012-01-25/api-2.json +0 -2792
  887. data/apis/swf/2012-01-25/examples-1.json +0 -5
  888. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  889. data/apis/textract/2018-06-27/api-2.json +0 -572
  890. data/apis/textract/2018-06-27/examples-1.json +0 -5
  891. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  892. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  893. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  894. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  895. data/apis/transcribe/2017-10-26/api-2.json +0 -538
  896. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  897. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  898. data/apis/transfer/2018-11-05/api-2.json +0 -940
  899. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  900. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  901. data/apis/translate/2017-07-01/api-2.json +0 -408
  902. data/apis/translate/2017-07-01/examples-1.json +0 -5
  903. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  904. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  905. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  906. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  907. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  908. data/apis/waf/2015-08-24/api-2.json +0 -3857
  909. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  910. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  911. data/apis/waf/2015-08-24/smoke.json +0 -21
  912. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  913. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  914. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  915. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  916. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  917. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  918. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  919. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  920. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  921. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  922. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  923. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  924. data/apis/workspaces/2015-04-08/api-2.json +0 -1992
  925. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  926. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  927. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  928. data/apis/xray/2016-04-12/api-2.json +0 -1352
  929. data/apis/xray/2016-04-12/examples-1.json +0 -5
  930. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  931. data/bin/aws.rb +0 -180
  932. data/endpoints.json +0 -5642
  933. data/lib/aws-sdk-core/acm.rb +0 -7
  934. data/lib/aws-sdk-core/acmpca.rb +0 -7
  935. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  936. data/lib/aws-sdk-core/amplify.rb +0 -6
  937. data/lib/aws-sdk-core/api/builder.rb +0 -129
  938. data/lib/aws-sdk-core/api/customizations.rb +0 -303
  939. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  940. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  941. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  942. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  943. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  944. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  945. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  946. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  947. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  948. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  949. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  950. data/lib/aws-sdk-core/apigateway.rb +0 -6
  951. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  952. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  953. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  954. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  955. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  956. data/lib/aws-sdk-core/appmesh.rb +0 -6
  957. data/lib/aws-sdk-core/appstream.rb +0 -7
  958. data/lib/aws-sdk-core/appsync.rb +0 -6
  959. data/lib/aws-sdk-core/athena.rb +0 -6
  960. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  961. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  962. data/lib/aws-sdk-core/backup.rb +0 -6
  963. data/lib/aws-sdk-core/batch.rb +0 -6
  964. data/lib/aws-sdk-core/budgets.rb +0 -6
  965. data/lib/aws-sdk-core/checksums.rb +0 -51
  966. data/lib/aws-sdk-core/chime.rb +0 -6
  967. data/lib/aws-sdk-core/client.rb +0 -62
  968. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  969. data/lib/aws-sdk-core/cloud9.rb +0 -6
  970. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  971. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  972. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  973. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  974. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  975. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  976. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  977. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  978. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  979. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  980. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  981. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  982. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  983. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  984. data/lib/aws-sdk-core/codebuild.rb +0 -6
  985. data/lib/aws-sdk-core/codecommit.rb +0 -6
  986. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  987. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  988. data/lib/aws-sdk-core/codestar.rb +0 -6
  989. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  990. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  991. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  992. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  993. data/lib/aws-sdk-core/comprehend.rb +0 -6
  994. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  995. data/lib/aws-sdk-core/configservice.rb +0 -6
  996. data/lib/aws-sdk-core/connect.rb +0 -6
  997. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  998. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  999. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1000. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1001. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1002. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1003. data/lib/aws-sdk-core/datasync.rb +0 -6
  1004. data/lib/aws-sdk-core/dax.rb +0 -6
  1005. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1006. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1007. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1008. data/lib/aws-sdk-core/dlm.rb +0 -6
  1009. data/lib/aws-sdk-core/docdb.rb +0 -7
  1010. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1011. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1012. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1013. data/lib/aws-sdk-core/ec2.rb +0 -8
  1014. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1015. data/lib/aws-sdk-core/ecr.rb +0 -6
  1016. data/lib/aws-sdk-core/ecs.rb +0 -7
  1017. data/lib/aws-sdk-core/efs.rb +0 -6
  1018. data/lib/aws-sdk-core/eks.rb +0 -7
  1019. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1020. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1021. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1022. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1023. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1024. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1025. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1026. data/lib/aws-sdk-core/emr.rb +0 -7
  1027. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1028. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1029. data/lib/aws-sdk-core/firehose.rb +0 -6
  1030. data/lib/aws-sdk-core/fms.rb +0 -6
  1031. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1032. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1033. data/lib/aws-sdk-core/fsx.rb +0 -6
  1034. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1035. data/lib/aws-sdk-core/glacier.rb +0 -8
  1036. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1037. data/lib/aws-sdk-core/glue.rb +0 -6
  1038. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1039. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1040. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1041. data/lib/aws-sdk-core/health.rb +0 -6
  1042. data/lib/aws-sdk-core/iam.rb +0 -8
  1043. data/lib/aws-sdk-core/importexport.rb +0 -5
  1044. data/lib/aws-sdk-core/inspector.rb +0 -6
  1045. data/lib/aws-sdk-core/iot.rb +0 -6
  1046. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1047. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1048. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1049. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1050. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1051. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1052. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1053. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1054. data/lib/aws-sdk-core/kafka.rb +0 -5
  1055. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1056. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1057. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1058. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1059. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1060. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1061. data/lib/aws-sdk-core/kms.rb +0 -6
  1062. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1063. data/lib/aws-sdk-core/lambda.rb +0 -7
  1064. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1065. data/lib/aws-sdk-core/lex.rb +0 -6
  1066. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1067. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1068. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1069. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1070. data/lib/aws-sdk-core/macie.rb +0 -6
  1071. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1072. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1073. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1074. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1075. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1076. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1077. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1078. data/lib/aws-sdk-core/medialive.rb +0 -6
  1079. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1080. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1081. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1082. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1083. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1084. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1085. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1086. data/lib/aws-sdk-core/mobile.rb +0 -6
  1087. data/lib/aws-sdk-core/mq.rb +0 -5
  1088. data/lib/aws-sdk-core/mturk.rb +0 -6
  1089. data/lib/aws-sdk-core/neptune.rb +0 -7
  1090. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1091. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1092. data/lib/aws-sdk-core/organizations.rb +0 -6
  1093. data/lib/aws-sdk-core/partitions.rb +0 -174
  1094. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1095. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1096. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1097. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1098. data/lib/aws-sdk-core/personalize.rb +0 -6
  1099. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1100. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1101. data/lib/aws-sdk-core/pi.rb +0 -6
  1102. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1103. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1104. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1105. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1106. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1107. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1108. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1109. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1110. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1111. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1112. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1113. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1114. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1115. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1116. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1117. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1118. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1119. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1120. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1121. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1122. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1123. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1124. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1125. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1126. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1127. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1128. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1129. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1130. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1131. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1132. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1133. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1134. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1135. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1136. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1137. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1138. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1139. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1140. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1141. data/lib/aws-sdk-core/polly.rb +0 -14
  1142. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1143. data/lib/aws-sdk-core/pricing.rb +0 -6
  1144. data/lib/aws-sdk-core/qldb.rb +0 -6
  1145. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1146. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1147. data/lib/aws-sdk-core/ram.rb +0 -6
  1148. data/lib/aws-sdk-core/rds.rb +0 -16
  1149. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1150. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1151. data/lib/aws-sdk-core/redshift.rb +0 -7
  1152. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1153. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1154. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1155. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1156. data/lib/aws-sdk-core/route53.rb +0 -7
  1157. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1158. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1159. data/lib/aws-sdk-core/s3.rb +0 -26
  1160. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1161. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1162. data/lib/aws-sdk-core/s3control.rb +0 -6
  1163. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1164. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1165. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1166. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1167. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1168. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1169. data/lib/aws-sdk-core/service.rb +0 -4
  1170. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1171. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1172. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1173. data/lib/aws-sdk-core/ses.rb +0 -7
  1174. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1175. data/lib/aws-sdk-core/shield.rb +0 -6
  1176. data/lib/aws-sdk-core/signer.rb +0 -7
  1177. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1178. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1179. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1180. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1181. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1182. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1183. data/lib/aws-sdk-core/sms.rb +0 -6
  1184. data/lib/aws-sdk-core/snowball.rb +0 -6
  1185. data/lib/aws-sdk-core/sns.rb +0 -7
  1186. data/lib/aws-sdk-core/sqs.rb +0 -7
  1187. data/lib/aws-sdk-core/ssm.rb +0 -6
  1188. data/lib/aws-sdk-core/sso.rb +0 -6
  1189. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1190. data/lib/aws-sdk-core/states.rb +0 -6
  1191. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1192. data/lib/aws-sdk-core/sts.rb +0 -6
  1193. data/lib/aws-sdk-core/support.rb +0 -6
  1194. data/lib/aws-sdk-core/swf.rb +0 -6
  1195. data/lib/aws-sdk-core/textract.rb +0 -6
  1196. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1197. data/lib/aws-sdk-core/transfer.rb +0 -6
  1198. data/lib/aws-sdk-core/translate.rb +0 -6
  1199. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1200. data/lib/aws-sdk-core/version.rb +0 -3
  1201. data/lib/aws-sdk-core/waf.rb +0 -6
  1202. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1203. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1204. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1205. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1206. data/lib/aws-sdk-core/worklink.rb +0 -6
  1207. data/lib/aws-sdk-core/workmail.rb +0 -6
  1208. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1209. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1210. data/lib/aws-sdk-core/xray.rb +0 -6
  1211. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1212. data/service-models.json +0 -805
@@ -1,2688 +0,0 @@
1
- {
2
- "service": {
3
- "actions": {
4
- "CreateDhcpOptions": {
5
- "request": { "operation": "CreateDhcpOptions" },
6
- "resource": {
7
- "type": "DhcpOptions",
8
- "identifiers": [
9
- { "target": "Id", "source": "response", "path": "DhcpOptions.DhcpOptionsId" }
10
- ],
11
- "path": "DhcpOptions"
12
- }
13
- },
14
- "CreateInstances": {
15
- "request": { "operation": "RunInstances" },
16
- "resource": {
17
- "type": "Instance",
18
- "identifiers": [
19
- { "target": "Id", "source": "response", "path": "Instances[].InstanceId" }
20
- ],
21
- "path": "Instances[]"
22
- }
23
- },
24
- "CreateInternetGateway": {
25
- "request": { "operation": "CreateInternetGateway" },
26
- "resource": {
27
- "type": "InternetGateway",
28
- "identifiers": [
29
- { "target": "Id", "source": "response", "path": "InternetGateway.InternetGatewayId" }
30
- ],
31
- "path": "InternetGateway"
32
- }
33
- },
34
- "CreateKeyPair": {
35
- "request": { "operation": "CreateKeyPair" },
36
- "resource": {
37
- "type": "KeyPair",
38
- "identifiers": [
39
- { "target": "Name", "source": "response", "path": "KeyName" }
40
- ],
41
- "path": "@"
42
- }
43
- },
44
- "CreateNatGateway": {
45
- "request": { "operation": "CreateNatGateway" },
46
- "resource": {
47
- "type": "NatGateway",
48
- "identifiers": [
49
- { "target": "Id", "source": "response", "path": "NatGateway.NatGatewayId" }
50
- ],
51
- "path": "NatGateway"
52
- }
53
- },
54
- "CreateNetworkAcl": {
55
- "request": { "operation": "CreateNetworkAcl" },
56
- "resource": {
57
- "type": "NetworkAcl",
58
- "identifiers": [
59
- { "target": "Id", "source": "response", "path": "NetworkAcl.NetworkAclId" }
60
- ],
61
- "path": "NetworkAcl"
62
- }
63
- },
64
- "CreateNetworkInterface": {
65
- "request": { "operation": "CreateNetworkInterface" },
66
- "resource": {
67
- "type": "NetworkInterface",
68
- "identifiers": [
69
- { "target": "Id", "source": "response", "path": "NetworkInterface.NetworkInterfaceId" }
70
- ],
71
- "path": "NetworkInterface"
72
- }
73
- },
74
- "CreatePlacementGroup": {
75
- "request": { "operation": "CreatePlacementGroup" },
76
- "resource": {
77
- "type": "PlacementGroup",
78
- "identifiers": [
79
- { "target": "Name", "source": "requestParameter", "path": "GroupName" }
80
- ]
81
- }
82
- },
83
- "CreateRouteTable": {
84
- "request": { "operation": "CreateRouteTable" },
85
- "resource": {
86
- "type": "RouteTable",
87
- "identifiers": [
88
- { "target": "Id", "source": "response", "path": "RouteTable.RouteTableId" }
89
- ],
90
- "path": "RouteTable"
91
- }
92
- },
93
- "CreateSecurityGroup": {
94
- "request": { "operation": "CreateSecurityGroup" },
95
- "resource": {
96
- "type": "SecurityGroup",
97
- "identifiers": [
98
- { "target": "Id", "source": "response", "path": "GroupId" }
99
- ]
100
- }
101
- },
102
- "CreateSnapshot": {
103
- "request": { "operation": "CreateSnapshot" },
104
- "resource": {
105
- "type": "Snapshot",
106
- "identifiers": [
107
- { "target": "Id", "source": "response", "path": "SnapshotId" }
108
- ],
109
- "path": "@"
110
- }
111
- },
112
- "CreateSubnet": {
113
- "request": { "operation": "CreateSubnet" },
114
- "resource": {
115
- "type": "Subnet",
116
- "identifiers": [
117
- { "target": "Id", "source": "response", "path": "Subnet.SubnetId" }
118
- ],
119
- "path": "Subnet"
120
- }
121
- },
122
- "CreateTags": {
123
- "request": { "operation": "CreateTags" }
124
- },
125
- "CreateVolume": {
126
- "request": { "operation": "CreateVolume" },
127
- "resource": {
128
- "type": "Volume",
129
- "identifiers": [
130
- { "target": "Id", "source": "response", "path": "VolumeId" }
131
- ],
132
- "path": "@"
133
- }
134
- },
135
- "CreateVpc": {
136
- "request": { "operation": "CreateVpc" },
137
- "resource": {
138
- "type": "Vpc",
139
- "identifiers": [
140
- { "target": "Id", "source": "response", "path": "Vpc.VpcId" }
141
- ],
142
- "path": "Vpc"
143
- }
144
- },
145
- "CreateVpcPeeringConnection": {
146
- "request": { "operation": "CreateVpcPeeringConnection" },
147
- "resource": {
148
- "type": "VpcPeeringConnection",
149
- "identifiers": [
150
- { "target": "Id", "source": "response", "path": "VpcPeeringConnection.VpcPeeringConnectionId" }
151
- ],
152
- "path": "VpcPeeringConnection"
153
- }
154
- },
155
- "DisassociateRouteTable": {
156
- "request": { "operation": "DisassociateRouteTable" }
157
- },
158
- "ImportKeyPair": {
159
- "request": { "operation": "ImportKeyPair" },
160
- "resource": {
161
- "type": "KeyPairInfo",
162
- "identifiers": [
163
- { "target": "Name", "source": "response", "path": "KeyName" }
164
- ]
165
- }
166
- },
167
- "RegisterImage": {
168
- "request": { "operation": "RegisterImage" },
169
- "resource": {
170
- "type": "Image",
171
- "identifiers": [
172
- { "target": "Id", "source": "response", "path": "ImageId" }
173
- ]
174
- }
175
- }
176
- },
177
- "has": {
178
- "DhcpOptions": {
179
- "resource": {
180
- "type": "DhcpOptions",
181
- "identifiers": [
182
- { "target": "Id", "source": "input" }
183
- ]
184
- }
185
- },
186
- "Image": {
187
- "resource": {
188
- "type": "Image",
189
- "identifiers": [
190
- { "target": "Id", "source": "input" }
191
- ]
192
- }
193
- },
194
- "Instance": {
195
- "resource": {
196
- "type": "Instance",
197
- "identifiers": [
198
- { "target": "Id", "source": "input" }
199
- ]
200
- }
201
- },
202
- "InternetGateway": {
203
- "resource": {
204
- "type": "InternetGateway",
205
- "identifiers": [
206
- { "target": "Id", "source": "input" }
207
- ]
208
- }
209
- },
210
- "KeyPair": {
211
- "resource": {
212
- "type": "KeyPairInfo",
213
- "identifiers": [
214
- { "target": "Name", "source": "input" }
215
- ]
216
- }
217
- },
218
- "NatGateway": {
219
- "resource": {
220
- "type": "NatGateway",
221
- "identifiers": [
222
- { "target": "Id", "source": "input" }
223
- ]
224
- }
225
- },
226
- "NetworkAcl": {
227
- "resource": {
228
- "type": "NetworkAcl",
229
- "identifiers": [
230
- { "target": "Id", "source": "input" }
231
- ]
232
- }
233
- },
234
- "NetworkInterface": {
235
- "resource": {
236
- "type": "NetworkInterface",
237
- "identifiers": [
238
- { "target": "Id", "source": "input" }
239
- ]
240
- }
241
- },
242
- "PlacementGroup": {
243
- "resource": {
244
- "type": "PlacementGroup",
245
- "identifiers": [
246
- { "target": "Name", "source": "input" }
247
- ]
248
- }
249
- },
250
- "RouteTable": {
251
- "resource": {
252
- "type": "RouteTable",
253
- "identifiers": [
254
- { "target": "Id", "source": "input" }
255
- ]
256
- }
257
- },
258
- "RouteTableAssociation": {
259
- "resource": {
260
- "type": "RouteTableAssociation",
261
- "identifiers": [
262
- { "target": "Id", "source": "input" }
263
- ]
264
- }
265
- },
266
- "SecurityGroup": {
267
- "resource": {
268
- "type": "SecurityGroup",
269
- "identifiers": [
270
- { "target": "Id", "source": "input" }
271
- ]
272
- }
273
- },
274
- "Snapshot": {
275
- "resource": {
276
- "type": "Snapshot",
277
- "identifiers": [
278
- { "target": "Id", "source": "input" }
279
- ]
280
- }
281
- },
282
- "Subnet": {
283
- "resource": {
284
- "type": "Subnet",
285
- "identifiers": [
286
- { "target": "Id", "source": "input" }
287
- ]
288
- }
289
- },
290
- "Volume": {
291
- "resource": {
292
- "type": "Volume",
293
- "identifiers": [
294
- { "target": "Id", "source": "input" }
295
- ]
296
- }
297
- },
298
- "Vpc": {
299
- "resource": {
300
- "type": "Vpc",
301
- "identifiers": [
302
- { "target": "Id", "source": "input" }
303
- ]
304
- }
305
- },
306
- "VpcPeeringConnection": {
307
- "resource": {
308
- "type": "VpcPeeringConnection",
309
- "identifiers": [
310
- { "target": "Id", "source": "input" }
311
- ]
312
- }
313
- }
314
- },
315
- "hasMany": {
316
- "ClassicAddresses": {
317
- "request": {
318
- "operation": "DescribeAddresses",
319
- "params": [
320
- { "target": "Filters[0].Name", "source": "string", "value": "domain" },
321
- { "target": "Filters[0].Values[0]", "source": "string", "value": "standard" }
322
- ]
323
- },
324
- "resource": {
325
- "type": "ClassicAddress",
326
- "identifiers": [
327
- { "target": "PublicIp", "source": "response", "path": "Addresses[].PublicIp" }
328
- ],
329
- "path": "Addresses[]"
330
- }
331
- },
332
- "DhcpOptionsSets": {
333
- "request": { "operation": "DescribeDhcpOptions" },
334
- "resource": {
335
- "type": "DhcpOptions",
336
- "identifiers": [
337
- { "target": "Id", "source": "response", "path": "DhcpOptions[].DhcpOptionsId" }
338
- ],
339
- "path": "DhcpOptions[]"
340
- }
341
- },
342
- "Images": {
343
- "request": { "operation": "DescribeImages" },
344
- "resource": {
345
- "type": "Image",
346
- "identifiers": [
347
- { "target": "Id", "source": "response", "path": "Images[].ImageId" }
348
- ],
349
- "path": "Images[]"
350
- }
351
- },
352
- "Instances": {
353
- "request": { "operation": "DescribeInstances" },
354
- "resource": {
355
- "type": "Instance",
356
- "identifiers": [
357
- { "target": "Id", "source": "response", "path": "Reservations[].Instances[].InstanceId" }
358
- ],
359
- "path": "Reservations[].Instances[]"
360
- }
361
- },
362
- "InternetGateways": {
363
- "request": { "operation": "DescribeInternetGateways" },
364
- "resource": {
365
- "type": "InternetGateway",
366
- "identifiers": [
367
- { "target": "Id", "source": "response", "path": "InternetGateways[].InternetGatewayId" }
368
- ],
369
- "path": "InternetGateways[]"
370
- }
371
- },
372
- "KeyPairs": {
373
- "request": { "operation": "DescribeKeyPairs" },
374
- "resource": {
375
- "type": "KeyPairInfo",
376
- "identifiers": [
377
- { "target": "Name", "source": "response", "path": "KeyPairs[].KeyName" }
378
- ],
379
- "path": "KeyPairs[]"
380
- }
381
- },
382
- "NatGateways": {
383
- "request": { "operation": "DescribeNatGateways" },
384
- "resource": {
385
- "type": "NatGateway",
386
- "identifiers": [
387
- { "target": "Id", "source": "response", "path": "NatGateways[].NatGatewayId" }
388
- ],
389
- "path": "NatGateways[]"
390
- }
391
- },
392
- "NetworkAcls": {
393
- "request": { "operation": "DescribeNetworkAcls" },
394
- "resource": {
395
- "type": "NetworkAcl",
396
- "identifiers": [
397
- { "target": "Id", "source": "response", "path": "NetworkAcls[].NetworkAclId" }
398
- ],
399
- "path": "NetworkAcls[]"
400
- }
401
- },
402
- "NetworkInterfaces": {
403
- "request": { "operation": "DescribeNetworkInterfaces" },
404
- "resource": {
405
- "type": "NetworkInterface",
406
- "identifiers": [
407
- { "target": "Id", "source": "response", "path": "NetworkInterfaces[].NetworkInterfaceId" }
408
- ],
409
- "path": "NetworkInterfaces[]"
410
- }
411
- },
412
- "PlacementGroups": {
413
- "request": { "operation": "DescribePlacementGroups" },
414
- "resource": {
415
- "type": "PlacementGroup",
416
- "identifiers": [
417
- { "target": "Name", "source": "response", "path": "PlacementGroups[].GroupName" }
418
- ],
419
- "path": "PlacementGroups[]"
420
- }
421
- },
422
- "RouteTables": {
423
- "request": { "operation": "DescribeRouteTables" },
424
- "resource": {
425
- "type": "RouteTable",
426
- "identifiers": [
427
- { "target": "Id", "source": "response", "path": "RouteTables[].RouteTableId" }
428
- ],
429
- "path": "RouteTables[]"
430
- }
431
- },
432
- "SecurityGroups": {
433
- "request": { "operation": "DescribeSecurityGroups" },
434
- "resource": {
435
- "type": "SecurityGroup",
436
- "identifiers": [
437
- { "target": "Id", "source": "response", "path": "SecurityGroups[].GroupId" }
438
- ],
439
- "path": "SecurityGroups[]"
440
- }
441
- },
442
- "Snapshots": {
443
- "request": { "operation": "DescribeSnapshots" },
444
- "resource": {
445
- "type": "Snapshot",
446
- "identifiers": [
447
- { "target": "Id", "source": "response", "path": "Snapshots[].SnapshotId" }
448
- ],
449
- "path": "Snapshots[]"
450
- }
451
- },
452
- "Subnets": {
453
- "request": { "operation": "DescribeSubnets" },
454
- "resource": {
455
- "type": "Subnet",
456
- "identifiers": [
457
- { "target": "Id", "source": "response", "path": "Subnets[].SubnetId" }
458
- ],
459
- "path": "Subnets[]"
460
- }
461
- },
462
- "Volumes": {
463
- "request": { "operation": "DescribeVolumes" },
464
- "resource": {
465
- "type": "Volume",
466
- "identifiers": [
467
- { "target": "Id", "source": "response", "path": "Volumes[].VolumeId" }
468
- ],
469
- "path": "Volumes[]"
470
- }
471
- },
472
- "VpcAddresses": {
473
- "request": {
474
- "operation": "DescribeAddresses",
475
- "params": [
476
- { "target": "Filters[0].Name", "source": "string", "value": "domain" },
477
- { "target": "Filters[0].Values[0]", "source": "string", "value": "vpc" }
478
- ]
479
- },
480
- "resource": {
481
- "type": "VpcAddress",
482
- "identifiers": [
483
- { "target": "AllocationId", "source": "response", "path": "Addresses[].AllocationId" }
484
- ],
485
- "path": "Addresses[]"
486
- }
487
- },
488
- "VpcPeeringConnections": {
489
- "request": { "operation": "DescribeVpcPeeringConnections" },
490
- "resource": {
491
- "type": "VpcPeeringConnection",
492
- "identifiers": [
493
- { "target": "Id", "source": "response", "path": "VpcPeeringConnections[].VpcPeeringConnectionId" }
494
- ],
495
- "path": "VpcPeeringConnections[]"
496
- }
497
- },
498
- "Vpcs": {
499
- "request": { "operation": "DescribeVpcs" },
500
- "resource": {
501
- "type": "Vpc",
502
- "identifiers": [
503
- { "target": "Id", "source": "response", "path": "Vpcs[].VpcId" }
504
- ],
505
- "path": "Vpcs[]"
506
- }
507
- }
508
- }
509
- },
510
- "resources": {
511
- "ClassicAddress": {
512
- "identifiers": [
513
- {
514
- "name": "PublicIp"
515
- }
516
- ],
517
- "shape": "Address",
518
- "load": {
519
- "request": {
520
- "operation": "DescribeAddresses",
521
- "params": [
522
- { "target": "PublicIps[]", "source": "identifier", "name": "PublicIp" }
523
- ]
524
- },
525
- "path": "Addresses[0]"
526
- },
527
- "actions": {
528
- "Associate": {
529
- "request": {
530
- "operation": "AssociateAddress",
531
- "params": [
532
- { "target": "PublicIp", "source": "identifier", "name": "PublicIp" }
533
- ]
534
- }
535
- },
536
- "Disassociate": {
537
- "request": {
538
- "operation": "DisassociateAddress",
539
- "params": [
540
- { "target": "PublicIp", "source": "data", "path": "PublicIp" }
541
- ]
542
- }
543
- },
544
- "Release": {
545
- "request": {
546
- "operation": "ReleaseAddress",
547
- "params": [
548
- { "target": "PublicIp", "source": "data", "path": "PublicIp" }
549
- ]
550
- }
551
- }
552
- }
553
- },
554
- "DhcpOptions": {
555
- "identifiers": [
556
- {
557
- "name": "Id",
558
- "memberName": "DhcpOptionsId"
559
- }
560
- ],
561
- "shape": "DhcpOptions",
562
- "load": {
563
- "request": {
564
- "operation": "DescribeDhcpOptions",
565
- "params": [
566
- { "target": "DhcpOptionsIds[0]", "source": "identifier", "name": "Id" }
567
- ]
568
- },
569
- "path": "DhcpOptions[0]"
570
- },
571
- "actions": {
572
- "AssociateWithVpc": {
573
- "request": {
574
- "operation": "AssociateDhcpOptions",
575
- "params": [
576
- { "target": "DhcpOptionsId", "source": "identifier", "name": "Id" }
577
- ]
578
- }
579
- },
580
- "CreateTags": {
581
- "request": {
582
- "operation": "CreateTags",
583
- "params": [
584
- { "target": "Resources[0]", "source": "identifier", "name": "Id" }
585
- ]
586
- },
587
- "resource": {
588
- "type": "Tag",
589
- "identifiers": [
590
- { "target": "ResourceId", "source": "identifier", "name": "Id" },
591
- { "target": "Key", "source": "requestParameter", "path": "Tags[].Key" },
592
- { "target": "Value", "source": "requestParameter", "path": "Tags[].Value" }
593
- ]
594
- }
595
- },
596
- "Delete": {
597
- "request": {
598
- "operation": "DeleteDhcpOptions",
599
- "params": [
600
- { "target": "DhcpOptionsId", "source": "identifier", "name": "Id" }
601
- ]
602
- }
603
- }
604
- }
605
- },
606
- "Image": {
607
- "identifiers": [
608
- {
609
- "name": "Id",
610
- "memberName": "ImageId"
611
- }
612
- ],
613
- "shape": "Image",
614
- "load": {
615
- "request": {
616
- "operation": "DescribeImages",
617
- "params": [
618
- { "target": "ImageIds[0]", "source": "identifier", "name": "Id" }
619
- ]
620
- },
621
- "path": "Images[0]"
622
- },
623
- "actions": {
624
- "CreateTags": {
625
- "request": {
626
- "operation": "CreateTags",
627
- "params": [
628
- { "target": "Resources[0]", "source": "identifier", "name": "Id" }
629
- ]
630
- },
631
- "resource": {
632
- "type": "Tag",
633
- "identifiers": [
634
- { "target": "ResourceId", "source": "identifier", "name": "Id" },
635
- { "target": "Key", "source": "requestParameter", "path": "Tags[].Key" },
636
- { "target": "Value", "source": "requestParameter", "path": "Tags[].Value" }
637
- ]
638
- }
639
- },
640
- "Deregister": {
641
- "request": {
642
- "operation": "DeregisterImage",
643
- "params": [
644
- { "target": "ImageId", "source": "identifier", "name": "Id" }
645
- ]
646
- }
647
- },
648
- "DescribeAttribute": {
649
- "request": {
650
- "operation": "DescribeImageAttribute",
651
- "params": [
652
- { "target": "ImageId", "source": "identifier", "name": "Id" }
653
- ]
654
- }
655
- },
656
- "ModifyAttribute": {
657
- "request": {
658
- "operation": "ModifyImageAttribute",
659
- "params": [
660
- { "target": "ImageId", "source": "identifier", "name": "Id" }
661
- ]
662
- }
663
- },
664
- "ResetAttribute": {
665
- "request": {
666
- "operation": "ResetImageAttribute",
667
- "params": [
668
- { "target": "ImageId", "source": "identifier", "name": "Id" }
669
- ]
670
- }
671
- }
672
- },
673
- "waiters": {
674
- "Exists": {
675
- "waiterName": "ImageExists",
676
- "params": [
677
- { "target": "ImageIds[]", "source": "identifier", "name": "Id" }
678
- ],
679
- "path": "Images[0]"
680
- }
681
- }
682
- },
683
- "Instance": {
684
- "identifiers": [
685
- {
686
- "name": "Id",
687
- "memberName": "InstanceId"
688
- }
689
- ],
690
- "shape": "Instance",
691
- "load": {
692
- "request": {
693
- "operation": "DescribeInstances",
694
- "params": [
695
- { "target": "InstanceIds[0]", "source": "identifier", "name": "Id" }
696
- ]
697
- },
698
- "path": "Reservations[0].Instances[0]"
699
- },
700
- "actions": {
701
- "AttachClassicLinkVpc": {
702
- "request": {
703
- "operation": "AttachClassicLinkVpc",
704
- "params": [
705
- { "target": "InstanceId", "source": "identifier", "name": "Id" }
706
- ]
707
- }
708
- },
709
- "AttachVolume": {
710
- "request": {
711
- "operation": "AttachVolume",
712
- "params": [
713
- { "target": "InstanceId", "source": "identifier", "name": "Id" }
714
- ]
715
- }
716
- },
717
- "ConsoleOutput": {
718
- "request": {
719
- "operation": "GetConsoleOutput",
720
- "params": [
721
- { "target": "InstanceId", "source": "identifier", "name": "Id" }
722
- ]
723
- }
724
- },
725
- "CreateImage": {
726
- "request": {
727
- "operation": "CreateImage",
728
- "params": [
729
- { "target": "InstanceId", "source": "identifier", "name": "Id" }
730
- ]
731
- },
732
- "resource": {
733
- "type": "Image",
734
- "identifiers": [
735
- { "target": "Id", "source": "response", "path": "ImageId" }
736
- ]
737
- }
738
- },
739
- "CreateTags": {
740
- "request": {
741
- "operation": "CreateTags",
742
- "params": [
743
- { "target": "Resources[0]", "source": "identifier", "name": "Id" }
744
- ]
745
- },
746
- "resource": {
747
- "type": "Tag",
748
- "identifiers": [
749
- { "target": "ResourceId", "source": "identifier", "name": "Id" },
750
- { "target": "Key", "source": "requestParameter", "path": "Tags[].Key" },
751
- { "target": "Value", "source": "requestParameter", "path": "Tags[].Value" }
752
- ]
753
- }
754
- },
755
- "DescribeAttribute": {
756
- "request": {
757
- "operation": "DescribeInstanceAttribute",
758
- "params": [
759
- { "target": "InstanceId", "source": "identifier", "name": "Id" }
760
- ]
761
- }
762
- },
763
- "DetachClassicLinkVpc": {
764
- "request": {
765
- "operation": "DetachClassicLinkVpc",
766
- "params": [
767
- { "target": "InstanceId", "source": "identifier", "name": "Id" }
768
- ]
769
- }
770
- },
771
- "DetachVolume": {
772
- "request": {
773
- "operation": "DetachVolume",
774
- "params": [
775
- { "target": "InstanceId", "source": "identifier", "name": "Id" }
776
- ]
777
- }
778
- },
779
- "ModifyAttribute": {
780
- "request": {
781
- "operation": "ModifyInstanceAttribute",
782
- "params": [
783
- { "target": "InstanceId", "source": "identifier", "name": "Id" }
784
- ]
785
- }
786
- },
787
- "Monitor": {
788
- "request": {
789
- "operation": "MonitorInstances",
790
- "params": [
791
- { "target": "InstanceIds[0]", "source": "identifier", "name": "Id" }
792
- ]
793
- }
794
- },
795
- "PasswordData": {
796
- "request": {
797
- "operation": "GetPasswordData",
798
- "params": [
799
- { "target": "InstanceId", "source": "identifier", "name": "Id" }
800
- ]
801
- }
802
- },
803
- "Reboot": {
804
- "request": {
805
- "operation": "RebootInstances",
806
- "params": [
807
- { "target": "InstanceIds[0]", "source": "identifier", "name": "Id" }
808
- ]
809
- }
810
- },
811
- "ReportStatus": {
812
- "request": {
813
- "operation": "ReportInstanceStatus",
814
- "params": [
815
- { "target": "Instances[0]", "source": "identifier", "name": "Id" }
816
- ]
817
- }
818
- },
819
- "ResetAttribute": {
820
- "request": {
821
- "operation": "ResetInstanceAttribute",
822
- "params": [
823
- { "target": "InstanceId", "source": "identifier", "name": "Id" }
824
- ]
825
- }
826
- },
827
- "ResetKernel": {
828
- "request": {
829
- "operation": "ResetInstanceAttribute",
830
- "params": [
831
- { "target": "InstanceId", "source": "identifier", "name": "Id" },
832
- { "target": "Attribute", "source": "string", "value": "kernel" }
833
- ]
834
- }
835
- },
836
- "ResetRamdisk": {
837
- "request": {
838
- "operation": "ResetInstanceAttribute",
839
- "params": [
840
- { "target": "InstanceId", "source": "identifier", "name": "Id" },
841
- { "target": "Attribute", "source": "string", "value": "ramdisk" }
842
- ]
843
- }
844
- },
845
- "ResetSourceDestCheck": {
846
- "request": {
847
- "operation": "ResetInstanceAttribute",
848
- "params": [
849
- { "target": "InstanceId", "source": "identifier", "name": "Id" },
850
- { "target": "Attribute", "source": "string", "value": "sourceDestCheck" }
851
- ]
852
- }
853
- },
854
- "Start": {
855
- "request": {
856
- "operation": "StartInstances",
857
- "params": [
858
- { "target": "InstanceIds[0]", "source": "identifier", "name": "Id" }
859
- ]
860
- }
861
- },
862
- "Stop": {
863
- "request": {
864
- "operation": "StopInstances",
865
- "params": [
866
- { "target": "InstanceIds[0]", "source": "identifier", "name": "Id" }
867
- ]
868
- }
869
- },
870
- "Terminate": {
871
- "request": {
872
- "operation": "TerminateInstances",
873
- "params": [
874
- { "target": "InstanceIds[0]", "source": "identifier", "name": "Id" }
875
- ]
876
- }
877
- },
878
- "Unmonitor": {
879
- "request": {
880
- "operation": "UnmonitorInstances",
881
- "params": [
882
- { "target": "InstanceIds[0]", "source": "identifier", "name": "Id" }
883
- ]
884
- }
885
- }
886
- },
887
- "batchActions": {
888
- "CreateTags": {
889
- "request": {
890
- "operation": "CreateTags",
891
- "params": [
892
- { "target": "Resources[]", "source": "identifier", "name": "Id" }
893
- ]
894
- }
895
- },
896
- "Monitor": {
897
- "request": {
898
- "operation": "MonitorInstances",
899
- "params": [
900
- { "target": "InstanceIds[]", "source": "identifier", "name": "Id" }
901
- ]
902
- }
903
- },
904
- "Reboot": {
905
- "request": {
906
- "operation": "RebootInstances",
907
- "params": [
908
- { "target": "InstanceIds[]", "source": "identifier", "name": "Id" }
909
- ]
910
- }
911
- },
912
- "Start": {
913
- "request": {
914
- "operation": "StartInstances",
915
- "params": [
916
- { "target": "InstanceIds[]", "source": "identifier", "name": "Id" }
917
- ]
918
- }
919
- },
920
- "Stop": {
921
- "request": {
922
- "operation": "StopInstances",
923
- "params": [
924
- { "target": "InstanceIds[]", "source": "identifier", "name": "Id" }
925
- ]
926
- }
927
- },
928
- "Terminate": {
929
- "request": {
930
- "operation": "TerminateInstances",
931
- "params": [
932
- { "target": "InstanceIds[]", "source": "identifier", "name": "Id" }
933
- ]
934
- }
935
- },
936
- "Unmonitor": {
937
- "request": {
938
- "operation": "UnmonitorInstances",
939
- "params": [
940
- { "target": "InstanceIds[]", "source": "identifier", "name": "Id" }
941
- ]
942
- }
943
- }
944
- },
945
- "waiters": {
946
- "Exists": {
947
- "waiterName": "InstanceExists",
948
- "params": [
949
- { "target": "InstanceIds[]", "source": "identifier", "name": "Id" }
950
- ],
951
- "path": "Reservations[0].Instances[0]"
952
- },
953
- "Running": {
954
- "waiterName": "InstanceRunning",
955
- "params": [
956
- { "target": "InstanceIds[]", "source": "identifier", "name": "Id" }
957
- ],
958
- "path": "Reservations[0].Instances[0]"
959
- },
960
- "Stopped": {
961
- "waiterName": "InstanceStopped",
962
- "params": [
963
- { "target": "InstanceIds[]", "source": "identifier", "name": "Id" }
964
- ],
965
- "path": "Reservations[0].Instances[0]"
966
- },
967
- "Terminated": {
968
- "waiterName": "InstanceTerminated",
969
- "params": [
970
- { "target": "InstanceIds[]", "source": "identifier", "name": "Id" }
971
- ],
972
- "path": "Reservations[0].Instances[0]"
973
- }
974
- },
975
- "has": {
976
- "ClassicAddress": {
977
- "resource": {
978
- "type": "ClassicAddress",
979
- "identifiers": [
980
- { "target": "PublicIp", "source": "data", "path": "PublicIpAddress" }
981
- ]
982
- }
983
- },
984
- "Image": {
985
- "resource": {
986
- "type": "Image",
987
- "identifiers": [
988
- { "target": "Id", "source": "data", "path": "ImageId" }
989
- ]
990
- }
991
- },
992
- "KeyPair": {
993
- "resource": {
994
- "type": "KeyPairInfo",
995
- "identifiers": [
996
- { "target": "Name", "source": "data", "path": "KeyName" }
997
- ]
998
- }
999
- },
1000
- "NetworkInterfaces": {
1001
- "resource": {
1002
- "type": "NetworkInterface",
1003
- "identifiers": [
1004
- { "target": "Id", "source": "data", "path": "NetworkInterfaces[].NetworkInterfaceId" }
1005
- ],
1006
- "path": "NetworkInterfaces[]"
1007
- }
1008
- },
1009
- "PlacementGroup": {
1010
- "resource": {
1011
- "type": "PlacementGroup",
1012
- "identifiers": [
1013
- { "target": "Name", "source": "data", "path": "Placement.GroupName" }
1014
- ]
1015
- }
1016
- },
1017
- "Subnet": {
1018
- "resource": {
1019
- "type": "Subnet",
1020
- "identifiers": [
1021
- { "target": "Id", "source": "data", "path": "SubnetId" }
1022
- ]
1023
- }
1024
- },
1025
- "Vpc": {
1026
- "resource": {
1027
- "type": "Vpc",
1028
- "identifiers": [
1029
- { "target": "Id", "source": "data", "path": "VpcId" }
1030
- ]
1031
- }
1032
- }
1033
- },
1034
- "hasMany": {
1035
- "Volumes": {
1036
- "request": {
1037
- "operation": "DescribeVolumes",
1038
- "params": [
1039
- { "target": "Filters[0].Name", "source": "string", "value": "attachment.instance-id" },
1040
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Id" }
1041
- ]
1042
- },
1043
- "resource": {
1044
- "type": "Volume",
1045
- "identifiers": [
1046
- { "target": "Id", "source": "response", "path": "Volumes[].VolumeId" }
1047
- ],
1048
- "path": "Volumes[]"
1049
- }
1050
- },
1051
- "VpcAddresses": {
1052
- "request": {
1053
- "operation": "DescribeAddresses",
1054
- "params": [
1055
- { "target": "Filters[0].Name", "source": "string", "value": "instance-id" },
1056
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Id" }
1057
- ]
1058
- },
1059
- "resource": {
1060
- "type": "VpcAddress",
1061
- "identifiers": [
1062
- { "target": "AllocationId", "source": "response", "path": "Addresses[].AllocationId" }
1063
- ],
1064
- "path": "Addresses[]"
1065
- }
1066
- }
1067
- }
1068
- },
1069
- "InternetGateway": {
1070
- "identifiers": [
1071
- {
1072
- "name": "Id",
1073
- "memberName": "InternetGatewayId"
1074
- }
1075
- ],
1076
- "shape": "InternetGateway",
1077
- "load": {
1078
- "request": {
1079
- "operation": "DescribeInternetGateways",
1080
- "params": [
1081
- { "target": "InternetGatewayIds[0]", "source": "identifier", "name": "Id" }
1082
- ]
1083
- },
1084
- "path": "InternetGateways[0]"
1085
- },
1086
- "actions": {
1087
- "AttachToVpc": {
1088
- "request": {
1089
- "operation": "AttachInternetGateway",
1090
- "params": [
1091
- { "target": "InternetGatewayId", "source": "identifier", "name": "Id" }
1092
- ]
1093
- }
1094
- },
1095
- "CreateTags": {
1096
- "request": {
1097
- "operation": "CreateTags",
1098
- "params": [
1099
- { "target": "Resources[0]", "source": "identifier", "name": "Id" }
1100
- ]
1101
- },
1102
- "resource": {
1103
- "type": "Tag",
1104
- "identifiers": [
1105
- { "target": "ResourceId", "source": "identifier", "name": "Id" },
1106
- { "target": "Key", "source": "requestParameter", "path": "Tags[].Key" },
1107
- { "target": "Value", "source": "requestParameter", "path": "Tags[].Value" }
1108
- ]
1109
- }
1110
- },
1111
- "Delete": {
1112
- "request": {
1113
- "operation": "DeleteInternetGateway",
1114
- "params": [
1115
- { "target": "InternetGatewayId", "source": "identifier", "name": "Id" }
1116
- ]
1117
- }
1118
- },
1119
- "DetachFromVpc": {
1120
- "request": {
1121
- "operation": "DetachInternetGateway",
1122
- "params": [
1123
- { "target": "InternetGatewayId", "source": "identifier", "name": "Id" }
1124
- ]
1125
- }
1126
- }
1127
- }
1128
- },
1129
- "KeyPair": {
1130
- "identifiers": [
1131
- {
1132
- "name": "Name",
1133
- "memberName": "KeyName"
1134
- }
1135
- ],
1136
- "shape": "KeyPair",
1137
- "actions": {
1138
- "Delete": {
1139
- "request": {
1140
- "operation": "DeleteKeyPair",
1141
- "params": [
1142
- { "target": "KeyName", "source": "identifier", "name": "Name" }
1143
- ]
1144
- }
1145
- }
1146
- }
1147
- },
1148
- "KeyPairInfo": {
1149
- "identifiers": [
1150
- {
1151
- "name": "Name",
1152
- "memberName": "KeyName"
1153
- }
1154
- ],
1155
- "shape": "KeyPairInfo",
1156
- "load": {
1157
- "request": {
1158
- "operation": "DescribeKeyPairs",
1159
- "params": [
1160
- { "target": "KeyNames[0]", "source": "identifier", "name": "Name" }
1161
- ]
1162
- },
1163
- "path": "KeyPairs[0]"
1164
- },
1165
- "actions": {
1166
- "Delete": {
1167
- "request": {
1168
- "operation": "DeleteKeyPair",
1169
- "params": [
1170
- { "target": "KeyName", "source": "identifier", "name": "Name" }
1171
- ]
1172
- }
1173
- }
1174
- }
1175
- },
1176
- "NetworkAcl": {
1177
- "identifiers": [
1178
- {
1179
- "name": "Id",
1180
- "memberName": "NetworkAclId"
1181
- }
1182
- ],
1183
- "shape": "NetworkAcl",
1184
- "load": {
1185
- "request": {
1186
- "operation": "DescribeNetworkAcls",
1187
- "params": [
1188
- { "target": "NetworkAclIds[0]", "source": "identifier", "name": "Id" }
1189
- ]
1190
- },
1191
- "path": "NetworkAcls[0]"
1192
- },
1193
- "actions": {
1194
- "CreateEntry": {
1195
- "request": {
1196
- "operation": "CreateNetworkAclEntry",
1197
- "params": [
1198
- { "target": "NetworkAclId", "source": "identifier", "name": "Id" }
1199
- ]
1200
- }
1201
- },
1202
- "CreateTags": {
1203
- "request": {
1204
- "operation": "CreateTags",
1205
- "params": [
1206
- { "target": "Resources[0]", "source": "identifier", "name": "Id" }
1207
- ]
1208
- },
1209
- "resource": {
1210
- "type": "Tag",
1211
- "identifiers": [
1212
- { "target": "ResourceId", "source": "identifier", "name": "Id" },
1213
- { "target": "Key", "source": "requestParameter", "path": "Tags[].Key" },
1214
- { "target": "Value", "source": "requestParameter", "path": "Tags[].Value" }
1215
- ]
1216
- }
1217
- },
1218
- "Delete": {
1219
- "request": {
1220
- "operation": "DeleteNetworkAcl",
1221
- "params": [
1222
- { "target": "NetworkAclId", "source": "identifier", "name": "Id" }
1223
- ]
1224
- }
1225
- },
1226
- "DeleteEntry": {
1227
- "request": {
1228
- "operation": "DeleteNetworkAclEntry",
1229
- "params": [
1230
- { "target": "NetworkAclId", "source": "identifier", "name": "Id" }
1231
- ]
1232
- }
1233
- },
1234
- "ReplaceAssociation": {
1235
- "request": {
1236
- "operation": "ReplaceNetworkAclAssociation",
1237
- "params": [
1238
- { "target": "NetworkAclId", "source": "identifier", "name": "Id" }
1239
- ]
1240
- }
1241
- },
1242
- "ReplaceEntry": {
1243
- "request": {
1244
- "operation": "ReplaceNetworkAclEntry",
1245
- "params": [
1246
- { "target": "NetworkAclId", "source": "identifier", "name": "Id" }
1247
- ]
1248
- }
1249
- }
1250
- },
1251
- "has": {
1252
- "Vpc": {
1253
- "resource": {
1254
- "type": "Vpc",
1255
- "identifiers": [
1256
- { "target": "Id", "source": "data", "path": "VpcId" }
1257
- ]
1258
- }
1259
- }
1260
- }
1261
- },
1262
- "NatGateway": {
1263
- "identifiers": [
1264
- {
1265
- "name": "Id",
1266
- "memberName": "NatGatewayId"
1267
- }
1268
- ],
1269
- "shape": "NatGateway",
1270
- "load": {
1271
- "request": {
1272
- "operation": "DescribeNatGateways",
1273
- "params": [
1274
- { "target": "NatGatewayIds[0]", "source": "identifier", "name": "Id" }
1275
- ]
1276
- },
1277
- "path": "NatGateways[0]"
1278
- },
1279
- "actions": {
1280
- "CreateTags": {
1281
- "request": {
1282
- "operation": "CreateTags",
1283
- "params": [
1284
- { "target": "Resources[0]", "source": "identifier", "name": "Id" }
1285
- ]
1286
- },
1287
- "resource": {
1288
- "type": "Tag",
1289
- "identifiers": [
1290
- { "target": "ResourceId", "source": "identifier", "name": "Id" },
1291
- { "target": "Key", "source": "requestParameter", "path": "Tags[].Key" },
1292
- { "target": "Value", "source": "requestParameter", "path": "Tags[].Value" }
1293
- ]
1294
- }
1295
- },
1296
- "Delete": {
1297
- "request": {
1298
- "operation": "DeleteNatGateway",
1299
- "params": [
1300
- { "target": "NatGatewayId", "source": "identifier", "name": "Id" }
1301
- ]
1302
- }
1303
- }
1304
- },
1305
- "has": {
1306
- "Subnet": {
1307
- "resource": {
1308
- "type": "Subnet",
1309
- "identifiers": [
1310
- { "target": "Id", "source": "data", "path": "SubnetId" }
1311
- ]
1312
- }
1313
- },
1314
- "Address": {
1315
- "resource": {
1316
- "type": "VpcAddress",
1317
- "identifiers": [
1318
- { "target": "AllocationId", "source": "data", "path": "AllocationId" }
1319
- ]
1320
- }
1321
- }
1322
- }
1323
- },
1324
- "NetworkInterface": {
1325
- "identifiers": [
1326
- {
1327
- "name": "Id",
1328
- "memberName": "NetworkInterfaceId"
1329
- }
1330
- ],
1331
- "shape": "NetworkInterface",
1332
- "load": {
1333
- "request": {
1334
- "operation": "DescribeNetworkInterfaces",
1335
- "params": [
1336
- { "target": "NetworkInterfaceIds[0]", "source": "identifier", "name": "Id" }
1337
- ]
1338
- },
1339
- "path": "NetworkInterfaces[0]"
1340
- },
1341
- "actions": {
1342
- "AssignPrivateIpAddresses": {
1343
- "request": {
1344
- "operation": "AssignPrivateIpAddresses",
1345
- "params": [
1346
- { "target": "NetworkInterfaceId", "source": "identifier", "name": "Id" }
1347
- ]
1348
- }
1349
- },
1350
- "Attach": {
1351
- "request": {
1352
- "operation": "AttachNetworkInterface",
1353
- "params": [
1354
- { "target": "NetworkInterfaceId", "source": "identifier", "name": "Id" }
1355
- ]
1356
- }
1357
- },
1358
- "CreateTags": {
1359
- "request": {
1360
- "operation": "CreateTags",
1361
- "params": [
1362
- { "target": "Resources[0]", "source": "identifier", "name": "Id" }
1363
- ]
1364
- },
1365
- "resource": {
1366
- "type": "Tag",
1367
- "identifiers": [
1368
- { "target": "ResourceId", "source": "identifier", "name": "Id" },
1369
- { "target": "Key", "source": "requestParameter", "path": "Tags[].Key" },
1370
- { "target": "Value", "source": "requestParameter", "path": "Tags[].Value" }
1371
- ]
1372
- }
1373
- },
1374
- "Delete": {
1375
- "request": {
1376
- "operation": "DeleteNetworkInterface",
1377
- "params": [
1378
- { "target": "NetworkInterfaceId", "source": "identifier", "name": "Id" }
1379
- ]
1380
- }
1381
- },
1382
- "DescribeAttribute": {
1383
- "request": {
1384
- "operation": "DescribeNetworkInterfaceAttribute",
1385
- "params": [
1386
- { "target": "NetworkInterfaceId", "source": "identifier", "name": "Id" }
1387
- ]
1388
- }
1389
- },
1390
- "Detach": {
1391
- "request": {
1392
- "operation": "DetachNetworkInterface",
1393
- "params": [
1394
- { "target": "AttachmentId", "source": "data", "path": "Attachment.AttachmentId" }
1395
- ]
1396
- }
1397
- },
1398
- "ModifyAttribute": {
1399
- "request": {
1400
- "operation": "ModifyNetworkInterfaceAttribute",
1401
- "params": [
1402
- { "target": "NetworkInterfaceId", "source": "identifier", "name": "Id" }
1403
- ]
1404
- }
1405
- },
1406
- "ResetAttribute": {
1407
- "request": {
1408
- "operation": "ResetNetworkInterfaceAttribute",
1409
- "params": [
1410
- { "target": "NetworkInterfaceId", "source": "identifier", "name": "Id" }
1411
- ]
1412
- }
1413
- },
1414
- "UnassignPrivateIpAddresses": {
1415
- "request": {
1416
- "operation": "UnassignPrivateIpAddresses",
1417
- "params": [
1418
- { "target": "NetworkInterfaceId", "source": "identifier", "name": "Id" }
1419
- ]
1420
- }
1421
- }
1422
- },
1423
- "has": {
1424
- "Association": {
1425
- "resource": {
1426
- "type": "NetworkInterfaceAssociation",
1427
- "identifiers": [
1428
- { "target": "Id", "source": "data", "path": "Association.AssociationId" }
1429
- ],
1430
- "path": "Association"
1431
- }
1432
- },
1433
- "Subnet": {
1434
- "resource": {
1435
- "type": "Subnet",
1436
- "identifiers": [
1437
- { "target": "Id", "source": "data", "path": "SubnetId" }
1438
- ]
1439
- }
1440
- },
1441
- "Vpc": {
1442
- "resource": {
1443
- "type": "Vpc",
1444
- "identifiers": [
1445
- { "target": "Id", "source": "data", "path": "VpcId" }
1446
- ]
1447
- }
1448
- }
1449
- }
1450
- },
1451
- "NetworkInterfaceAssociation": {
1452
- "identifiers": [
1453
- {
1454
- "name": "Id"
1455
- }
1456
- ],
1457
- "shape": "InstanceNetworkInterfaceAssociation",
1458
- "load": {
1459
- "request": {
1460
- "operation": "DescribeNetworkInterfaces",
1461
- "params": [
1462
- { "target": "Filters[0].Name", "source": "string", "value": "association.association-id" },
1463
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Id" }
1464
- ]
1465
- },
1466
- "path": "NetworkInterfaces[0].Association"
1467
- },
1468
- "actions": {
1469
- "Delete": {
1470
- "request": {
1471
- "operation": "DisassociateAddress",
1472
- "params": [
1473
- { "target": "AssociationId", "source": "identifier", "name": "Id" }
1474
- ]
1475
- }
1476
- }
1477
- },
1478
- "has": {
1479
- "Address": {
1480
- "resource": {
1481
- "type": "VpcAddress",
1482
- "identifiers": [
1483
- { "target": "AllocationId", "source": "data", "path": "AllocationId" }
1484
- ]
1485
- }
1486
- }
1487
- }
1488
- },
1489
- "PlacementGroup": {
1490
- "identifiers": [
1491
- {
1492
- "name": "Name",
1493
- "memberName": "GroupName"
1494
- }
1495
- ],
1496
- "shape": "PlacementGroup",
1497
- "load": {
1498
- "request": {
1499
- "operation": "DescribePlacementGroups",
1500
- "params": [
1501
- { "target": "GroupNames[0]", "source": "identifier", "name": "Name" }
1502
- ]
1503
- },
1504
- "path": "PlacementGroups[0]"
1505
- },
1506
- "actions": {
1507
- "Delete": {
1508
- "request": {
1509
- "operation": "DeletePlacementGroup",
1510
- "params": [
1511
- { "target": "GroupName", "source": "identifier", "name": "Name" }
1512
- ]
1513
- }
1514
- }
1515
- },
1516
- "hasMany": {
1517
- "Instances": {
1518
- "request": {
1519
- "operation": "DescribeInstances",
1520
- "params": [
1521
- { "target": "Filters[0].Name", "source": "string", "value": "placement-group-name" },
1522
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Name" }
1523
- ]
1524
- },
1525
- "resource": {
1526
- "type": "Instance",
1527
- "identifiers": [
1528
- { "target": "Id", "source": "response", "path": "Reservations[].Instances[].InstanceId" }
1529
- ],
1530
- "path": "Reservations[].Instances[]"
1531
- }
1532
- }
1533
- }
1534
- },
1535
- "Route": {
1536
- "identifiers": [
1537
- { "name": "RouteTableId" },
1538
- {
1539
- "name": "DestinationCidrBlock",
1540
- "memberName": "DestinationCidrBlock"
1541
- }
1542
- ],
1543
- "shape": "Route",
1544
- "actions": {
1545
- "Delete": {
1546
- "request": {
1547
- "operation": "DeleteRoute",
1548
- "params": [
1549
- { "target": "RouteTableId", "source": "identifier", "name": "RouteTableId" },
1550
- { "target": "DestinationCidrBlock", "source": "identifier", "name": "DestinationCidrBlock" }
1551
- ]
1552
- }
1553
- },
1554
- "Replace": {
1555
- "request": {
1556
- "operation": "ReplaceRoute",
1557
- "params": [
1558
- { "target": "RouteTableId", "source": "identifier", "name": "RouteTableId" },
1559
- { "target": "DestinationCidrBlock", "source": "identifier", "name": "DestinationCidrBlock" }
1560
- ]
1561
- }
1562
- }
1563
- },
1564
- "has": {
1565
- "RouteTable": {
1566
- "resource": {
1567
- "type": "RouteTable",
1568
- "identifiers": [
1569
- { "target": "Id", "source": "identifier", "name": "RouteTableId" }
1570
- ]
1571
- }
1572
- }
1573
- }
1574
- },
1575
- "RouteTable": {
1576
- "identifiers": [
1577
- {
1578
- "name": "Id",
1579
- "memberName": "RouteTableId"
1580
- }
1581
- ],
1582
- "shape": "RouteTable",
1583
- "load": {
1584
- "request": {
1585
- "operation": "DescribeRouteTables",
1586
- "params": [
1587
- { "target": "RouteTableIds[0]", "source": "identifier", "name": "Id" }
1588
- ]
1589
- },
1590
- "path": "RouteTables[0]"
1591
- },
1592
- "actions": {
1593
- "AssociateWithSubnet": {
1594
- "request": {
1595
- "operation": "AssociateRouteTable",
1596
- "params": [
1597
- { "target": "RouteTableId", "source": "identifier", "name": "Id" }
1598
- ]
1599
- },
1600
- "resource": {
1601
- "type": "RouteTableAssociation",
1602
- "identifiers": [
1603
- { "target": "Id", "source": "response", "path": "AssociationId" }
1604
- ]
1605
- }
1606
- },
1607
- "CreateRoute": {
1608
- "request": {
1609
- "operation": "CreateRoute",
1610
- "params": [
1611
- { "target": "RouteTableId", "source": "identifier", "name": "Id" }
1612
- ]
1613
- },
1614
- "resource": {
1615
- "type": "Route",
1616
- "identifiers": [
1617
- { "target": "RouteTableId", "source": "identifier", "name": "Id" },
1618
- { "target": "DestinationCidrBlock", "source": "requestParameter", "path": "DestinationCidrBlock" }
1619
- ]
1620
- }
1621
- },
1622
- "CreateTags": {
1623
- "request": {
1624
- "operation": "CreateTags",
1625
- "params": [
1626
- { "target": "Resources[0]", "source": "identifier", "name": "Id" }
1627
- ]
1628
- },
1629
- "resource": {
1630
- "type": "Tag",
1631
- "identifiers": [
1632
- { "target": "ResourceId", "source": "identifier", "name": "Id" },
1633
- { "target": "Key", "source": "requestParameter", "path": "Tags[].Key" },
1634
- { "target": "Value", "source": "requestParameter", "path": "Tags[].Value" }
1635
- ]
1636
- }
1637
- },
1638
- "Delete": {
1639
- "request": {
1640
- "operation": "DeleteRouteTable",
1641
- "params": [
1642
- { "target": "RouteTableId", "source": "identifier", "name": "Id" }
1643
- ]
1644
- }
1645
- }
1646
- },
1647
- "has": {
1648
- "Associations": {
1649
- "resource": {
1650
- "type": "RouteTableAssociation",
1651
- "identifiers": [
1652
- { "target": "Id", "source": "data", "path": "Associations[].RouteTableAssociationId" }
1653
- ],
1654
- "path": "Associations[]"
1655
- }
1656
- },
1657
- "Routes": {
1658
- "resource": {
1659
- "type": "Route",
1660
- "identifiers": [
1661
- { "target": "RouteTableId", "source": "identifier", "name": "Id" },
1662
- { "target": "DestinationCidrBlock", "source": "data", "path": "Routes[].DestinationCidrBlock" }
1663
- ],
1664
- "path": "Routes[]"
1665
- }
1666
- },
1667
- "Vpc": {
1668
- "resource": {
1669
- "type": "Vpc",
1670
- "identifiers": [
1671
- { "target": "Id", "source": "data", "path": "VpcId" }
1672
- ]
1673
- }
1674
- }
1675
- }
1676
- },
1677
- "RouteTableAssociation": {
1678
- "identifiers": [
1679
- {
1680
- "name": "Id",
1681
- "memberName": "RouteTableAssociationId"
1682
- }
1683
- ],
1684
- "shape": "RouteTableAssociation",
1685
- "actions": {
1686
- "Delete": {
1687
- "request": {
1688
- "operation": "DisassociateRouteTable",
1689
- "params": [
1690
- { "target": "AssociationId", "source": "identifier", "name": "Id" }
1691
- ]
1692
- }
1693
- },
1694
- "ReplaceSubnet": {
1695
- "request": {
1696
- "operation": "ReplaceRouteTableAssociation",
1697
- "params": [
1698
- { "target": "AssociationId", "source": "identifier", "name": "Id" }
1699
- ]
1700
- },
1701
- "resource": {
1702
- "type": "RouteTableAssociation",
1703
- "identifiers": [
1704
- { "target": "Id", "source": "response", "path": "NewAssociationId" }
1705
- ]
1706
- }
1707
- }
1708
- },
1709
- "has": {
1710
- "RouteTable": {
1711
- "resource": {
1712
- "type": "RouteTable",
1713
- "identifiers": [
1714
- { "target": "Id", "source": "data", "path": "RouteTableId" }
1715
- ]
1716
- }
1717
- },
1718
- "Subnet": {
1719
- "resource": {
1720
- "type": "Subnet",
1721
- "identifiers": [
1722
- { "target": "Id", "source": "data", "path": "SubnetId" }
1723
- ]
1724
- }
1725
- }
1726
- }
1727
- },
1728
- "SecurityGroup": {
1729
- "identifiers": [
1730
- {
1731
- "name": "Id",
1732
- "memberName": "GroupId"
1733
- }
1734
- ],
1735
- "shape": "SecurityGroup",
1736
- "load": {
1737
- "request": {
1738
- "operation": "DescribeSecurityGroups",
1739
- "params": [
1740
- { "target": "GroupIds[0]", "source": "identifier", "name": "Id" }
1741
- ]
1742
- },
1743
- "path": "SecurityGroups[0]"
1744
- },
1745
- "actions": {
1746
- "AuthorizeEgress": {
1747
- "request": {
1748
- "operation": "AuthorizeSecurityGroupEgress",
1749
- "params": [
1750
- { "target": "GroupId", "source": "identifier", "name": "Id" }
1751
- ]
1752
- }
1753
- },
1754
- "AuthorizeIngress": {
1755
- "request": {
1756
- "operation": "AuthorizeSecurityGroupIngress",
1757
- "params": [
1758
- { "target": "GroupId", "source": "identifier", "name": "Id" }
1759
- ]
1760
- }
1761
- },
1762
- "CreateTags": {
1763
- "request": {
1764
- "operation": "CreateTags",
1765
- "params": [
1766
- { "target": "Resources[0]", "source": "identifier", "name": "Id" }
1767
- ]
1768
- },
1769
- "resource": {
1770
- "type": "Tag",
1771
- "identifiers": [
1772
- { "target": "ResourceId", "source": "identifier", "name": "Id" },
1773
- { "target": "Key", "source": "requestParameter", "path": "Tags[].Key" },
1774
- { "target": "Value", "source": "requestParameter", "path": "Tags[].Value" }
1775
- ]
1776
- }
1777
- },
1778
- "Delete": {
1779
- "request": {
1780
- "operation": "DeleteSecurityGroup",
1781
- "params": [
1782
- { "target": "GroupId", "source": "identifier", "name": "Id" }
1783
- ]
1784
- }
1785
- },
1786
- "RevokeEgress": {
1787
- "request": {
1788
- "operation": "RevokeSecurityGroupEgress",
1789
- "params": [
1790
- { "target": "GroupId", "source": "identifier", "name": "Id" }
1791
- ]
1792
- }
1793
- },
1794
- "RevokeIngress": {
1795
- "request": {
1796
- "operation": "RevokeSecurityGroupIngress",
1797
- "params": [
1798
- { "target": "GroupId", "source": "identifier", "name": "Id" }
1799
- ]
1800
- }
1801
- }
1802
- }
1803
- },
1804
- "Snapshot": {
1805
- "identifiers": [
1806
- {
1807
- "name": "Id",
1808
- "memberName": "SnapshotId"
1809
- }
1810
- ],
1811
- "shape": "Snapshot",
1812
- "load": {
1813
- "request": {
1814
- "operation": "DescribeSnapshots",
1815
- "params": [
1816
- { "target": "SnapshotIds[0]", "source": "identifier", "name": "Id" }
1817
- ]
1818
- },
1819
- "path": "Snapshots[0]"
1820
- },
1821
- "actions": {
1822
- "Copy": {
1823
- "request": {
1824
- "operation": "CopySnapshot",
1825
- "params": [
1826
- { "target": "SourceSnapshotId", "source": "identifier", "name": "Id" }
1827
- ]
1828
- }
1829
- },
1830
- "CreateTags": {
1831
- "request": {
1832
- "operation": "CreateTags",
1833
- "params": [
1834
- { "target": "Resources[0]", "source": "identifier", "name": "Id" }
1835
- ]
1836
- },
1837
- "resource": {
1838
- "type": "Tag",
1839
- "identifiers": [
1840
- { "target": "ResourceId", "source": "identifier", "name": "Id" },
1841
- { "target": "Key", "source": "requestParameter", "path": "Tags[].Key" },
1842
- { "target": "Value", "source": "requestParameter", "path": "Tags[].Value" }
1843
- ]
1844
- }
1845
- },
1846
- "Delete": {
1847
- "request": {
1848
- "operation": "DeleteSnapshot",
1849
- "params": [
1850
- { "target": "SnapshotId", "source": "identifier", "name": "Id" }
1851
- ]
1852
- }
1853
- },
1854
- "DescribeAttribute": {
1855
- "request": {
1856
- "operation": "DescribeSnapshotAttribute",
1857
- "params": [
1858
- { "target": "SnapshotId", "source": "identifier", "name": "Id" }
1859
- ]
1860
- }
1861
- },
1862
- "ModifyAttribute": {
1863
- "request": {
1864
- "operation": "ModifySnapshotAttribute",
1865
- "params": [
1866
- { "target": "SnapshotId", "source": "identifier", "name": "Id" }
1867
- ]
1868
- }
1869
- },
1870
- "ResetAttribute": {
1871
- "request": {
1872
- "operation": "ResetSnapshotAttribute",
1873
- "params": [
1874
- { "target": "SnapshotId", "source": "identifier", "name": "Id" }
1875
- ]
1876
- }
1877
- }
1878
- },
1879
- "waiters": {
1880
- "Completed": {
1881
- "waiterName": "SnapshotCompleted",
1882
- "params": [
1883
- { "target": "SnapshotIds[]", "source": "identifier", "name": "Id" }
1884
- ],
1885
- "path": "Snapshots[]"
1886
- }
1887
- },
1888
- "has": {
1889
- "Volume": {
1890
- "resource": {
1891
- "type": "Volume",
1892
- "identifiers": [
1893
- { "target": "Id", "source": "data", "path": "VolumeId" }
1894
- ]
1895
- }
1896
- }
1897
- }
1898
- },
1899
- "Subnet": {
1900
- "identifiers": [
1901
- {
1902
- "name": "Id",
1903
- "memberName": "SubnetId"
1904
- }
1905
- ],
1906
- "shape": "Subnet",
1907
- "load": {
1908
- "request": {
1909
- "operation": "DescribeSubnets",
1910
- "params": [
1911
- { "target": "SubnetIds[0]", "source": "identifier", "name": "Id" }
1912
- ]
1913
- },
1914
- "path": "Subnets[0]"
1915
- },
1916
- "actions": {
1917
- "CreateInstances": {
1918
- "request": {
1919
- "operation": "RunInstances",
1920
- "params": [
1921
- { "target": "SubnetId", "source": "identifier", "name": "Id" }
1922
- ]
1923
- },
1924
- "resource": {
1925
- "type": "Instance",
1926
- "identifiers": [
1927
- { "target": "Id", "source": "response", "path": "Instances[].InstanceId" }
1928
- ],
1929
- "path": "Instances[]"
1930
- }
1931
- },
1932
- "CreateNetworkInterface": {
1933
- "request": {
1934
- "operation": "CreateNetworkInterface",
1935
- "params": [
1936
- { "target": "SubnetId", "source": "identifier", "name": "Id" }
1937
- ]
1938
- },
1939
- "resource": {
1940
- "type": "NetworkInterface",
1941
- "identifiers": [
1942
- { "target": "Id", "source": "response", "path": "NetworkInterface.NetworkInterfaceId" }
1943
- ],
1944
- "path": "NetworkInterface"
1945
- }
1946
- },
1947
- "CreateTags": {
1948
- "request": {
1949
- "operation": "CreateTags",
1950
- "params": [
1951
- { "target": "Resources[0]", "source": "identifier", "name": "Id" }
1952
- ]
1953
- },
1954
- "resource": {
1955
- "type": "Tag",
1956
- "identifiers": [
1957
- { "target": "ResourceId", "source": "identifier", "name": "Id" },
1958
- { "target": "Key", "source": "requestParameter", "path": "Tags[].Key" },
1959
- { "target": "Value", "source": "requestParameter", "path": "Tags[].Value" }
1960
- ]
1961
- }
1962
- },
1963
- "Delete": {
1964
- "request": {
1965
- "operation": "DeleteSubnet",
1966
- "params": [
1967
- { "target": "SubnetId", "source": "identifier", "name": "Id" }
1968
- ]
1969
- }
1970
- }
1971
- },
1972
- "has": {
1973
- "Vpc": {
1974
- "resource": {
1975
- "type": "Vpc",
1976
- "identifiers": [
1977
- { "target": "Id", "source": "data", "path": "VpcId" }
1978
- ]
1979
- }
1980
- }
1981
- },
1982
- "hasMany": {
1983
- "Instances": {
1984
- "request": {
1985
- "operation": "DescribeInstances",
1986
- "params": [
1987
- { "target": "Filters[0].Name", "source": "string", "value": "subnet-id" },
1988
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Id" }
1989
- ]
1990
- },
1991
- "resource": {
1992
- "type": "Instance",
1993
- "identifiers": [
1994
- { "target": "Id", "source": "response", "path": "Reservations[].Instances[].InstanceId" }
1995
- ],
1996
- "path": "Reservations[].Instances[]"
1997
- }
1998
- },
1999
- "NatGateways": {
2000
- "request": {
2001
- "operation": "DescribeNatGateways",
2002
- "params": [
2003
- { "target": "Filter[0].Name", "source": "string", "value": "subnet-id" },
2004
- { "target": "Filter[0].Values[0]", "source": "identifier", "name": "Id" }
2005
- ]
2006
- },
2007
- "resource": {
2008
- "type": "NatGateway",
2009
- "identifiers": [
2010
- { "target": "Id", "source": "response", "path": "NatGateways[].NatGatewayId" }
2011
- ],
2012
- "path": "NatGateways[]"
2013
- }
2014
- },
2015
- "NetworkInterfaces": {
2016
- "request": {
2017
- "operation": "DescribeNetworkInterfaces",
2018
- "params": [
2019
- { "target": "Filters[0].Name", "source": "string", "value": "subnet-id" },
2020
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Id" }
2021
- ]
2022
- },
2023
- "resource": {
2024
- "type": "NetworkInterface",
2025
- "identifiers": [
2026
- { "target": "Id", "source": "response", "path": "NetworkInterfaces[].NetworkInterfaceId" }
2027
- ],
2028
- "path": "NetworkInterfaces[]"
2029
- }
2030
- }
2031
- }
2032
- },
2033
- "Tag": {
2034
- "identifiers": [
2035
- {
2036
- "name": "ResourceId",
2037
- "memberName": "ResourceId"
2038
- },
2039
- {
2040
- "name": "Key",
2041
- "memberName": "Key"
2042
- },
2043
- {
2044
- "name": "Value",
2045
- "memberName": "Value"
2046
- }
2047
- ],
2048
- "shape": "TagDescription",
2049
- "load": {
2050
- "request": {
2051
- "operation": "DescribeTags",
2052
- "params": [
2053
- { "target": "Filters[0].Name", "source": "string", "value": "key" },
2054
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Key" },
2055
- { "target": "Filters[1].Name", "source": "string", "value": "value" },
2056
- { "target": "Filters[1].Values[0]", "source": "identifier", "name": "Value" }
2057
- ]
2058
- },
2059
- "path": "Tags[0]"
2060
- },
2061
- "actions": {
2062
- "Delete": {
2063
- "request": {
2064
- "operation": "DeleteTags",
2065
- "params": [
2066
- { "target": "Resources[0]", "source": "identifier", "name": "ResourceId" },
2067
- { "target": "Tags[0].Key", "source": "identifier", "name": "Key" },
2068
- { "target": "Tags[0].Value", "source": "identifier", "name": "Value" }
2069
- ]
2070
- }
2071
- }
2072
- },
2073
- "batchActions": {
2074
- "Delete": {
2075
- "request": {
2076
- "operation": "DeleteTags",
2077
- "params": [
2078
- { "target": "Resources[]", "source": "identifier", "name": "ResourceId" },
2079
- { "target": "Tags[*].Key", "source": "identifier", "name": "Key" },
2080
- { "target": "Tags[*].Value", "source": "identifier", "name": "Value" }
2081
- ]
2082
- }
2083
- }
2084
- }
2085
- },
2086
- "Volume": {
2087
- "identifiers": [
2088
- {
2089
- "name": "Id",
2090
- "memberName": "VolumeId"
2091
- }
2092
- ],
2093
- "shape": "Volume",
2094
- "load": {
2095
- "request": {
2096
- "operation": "DescribeVolumes",
2097
- "params": [
2098
- { "target": "VolumeIds[0]", "source": "identifier", "name": "Id" }
2099
- ]
2100
- },
2101
- "path": "Volumes[0]"
2102
- },
2103
- "actions": {
2104
- "AttachToInstance": {
2105
- "request": {
2106
- "operation": "AttachVolume",
2107
- "params": [
2108
- { "target": "VolumeId", "source": "identifier", "name": "Id" }
2109
- ]
2110
- }
2111
- },
2112
- "CreateSnapshot": {
2113
- "request": {
2114
- "operation": "CreateSnapshot",
2115
- "params": [
2116
- { "target": "VolumeId", "source": "identifier", "name": "Id" }
2117
- ]
2118
- },
2119
- "resource": {
2120
- "type": "Snapshot",
2121
- "identifiers": [
2122
- { "target": "Id", "source": "response", "path": "SnapshotId" }
2123
- ],
2124
- "path": "@"
2125
- }
2126
- },
2127
- "CreateTags": {
2128
- "request": {
2129
- "operation": "CreateTags",
2130
- "params": [
2131
- { "target": "Resources[0]", "source": "identifier", "name": "Id" }
2132
- ]
2133
- },
2134
- "resource": {
2135
- "type": "Tag",
2136
- "identifiers": [
2137
- { "target": "ResourceId", "source": "identifier", "name": "Id" },
2138
- { "target": "Key", "source": "requestParameter", "path": "Tags[].Key" },
2139
- { "target": "Value", "source": "requestParameter", "path": "Tags[].Value" }
2140
- ]
2141
- }
2142
- },
2143
- "Delete": {
2144
- "request": {
2145
- "operation": "DeleteVolume",
2146
- "params": [
2147
- { "target": "VolumeId", "source": "identifier", "name": "Id" }
2148
- ]
2149
- }
2150
- },
2151
- "DescribeAttribute": {
2152
- "request": {
2153
- "operation": "DescribeVolumeAttribute",
2154
- "params": [
2155
- { "target": "VolumeId", "source": "identifier", "name": "Id" }
2156
- ]
2157
- }
2158
- },
2159
- "DescribeStatus": {
2160
- "request": {
2161
- "operation": "DescribeVolumeStatus",
2162
- "params": [
2163
- { "target": "VolumeIds[0]", "source": "identifier", "name": "Id" }
2164
- ]
2165
- }
2166
- },
2167
- "DetachFromInstance": {
2168
- "request": {
2169
- "operation": "DetachVolume",
2170
- "params": [
2171
- { "target": "VolumeId", "source": "identifier", "name": "Id" }
2172
- ]
2173
- }
2174
- },
2175
- "EnableIo": {
2176
- "request": {
2177
- "operation": "EnableVolumeIO",
2178
- "params": [
2179
- { "target": "VolumeId", "source": "identifier", "name": "Id" }
2180
- ]
2181
- }
2182
- },
2183
- "ModifyAttribute": {
2184
- "request": {
2185
- "operation": "ModifyVolumeAttribute",
2186
- "params": [
2187
- { "target": "VolumeId", "source": "identifier", "name": "Id" }
2188
- ]
2189
- }
2190
- }
2191
- },
2192
- "hasMany": {
2193
- "Snapshots": {
2194
- "request": {
2195
- "operation": "DescribeSnapshots",
2196
- "params": [
2197
- { "target": "Filters[0].Name", "source": "string", "value": "volume-id" },
2198
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Id" }
2199
- ]
2200
- },
2201
- "resource": {
2202
- "type": "Snapshot",
2203
- "identifiers": [
2204
- { "target": "Id", "source": "response", "path": "Snapshots[].SnapshotId" }
2205
- ],
2206
- "path": "Snapshots[]"
2207
- }
2208
- }
2209
- }
2210
- },
2211
- "Vpc": {
2212
- "identifiers": [
2213
- {
2214
- "name": "Id",
2215
- "memberName": "VpcId"
2216
- }
2217
- ],
2218
- "shape": "Vpc",
2219
- "load": {
2220
- "request": {
2221
- "operation": "DescribeVpcs",
2222
- "params": [
2223
- { "target": "VpcIds[0]", "source": "identifier", "name": "Id" }
2224
- ]
2225
- },
2226
- "path": "Vpcs[0]"
2227
- },
2228
- "actions": {
2229
- "AssociateDhcpOptions": {
2230
- "request": {
2231
- "operation": "AssociateDhcpOptions",
2232
- "params": [
2233
- { "target": "VpcId", "source": "identifier", "name": "Id" }
2234
- ]
2235
- }
2236
- },
2237
- "AttachClassicLinkInstance": {
2238
- "request": {
2239
- "operation": "AttachClassicLinkVpc",
2240
- "params": [
2241
- { "target": "VpcId", "source": "identifier", "name": "Id" }
2242
- ]
2243
- }
2244
- },
2245
- "AttachInternetGateway": {
2246
- "request": {
2247
- "operation": "AttachInternetGateway",
2248
- "params": [
2249
- { "target": "VpcId", "source": "identifier", "name": "Id" }
2250
- ]
2251
- }
2252
- },
2253
- "CreateNetworkAcl": {
2254
- "request": {
2255
- "operation": "CreateNetworkAcl",
2256
- "params": [
2257
- { "target": "VpcId", "source": "identifier", "name": "Id" }
2258
- ]
2259
- },
2260
- "resource": {
2261
- "type": "NetworkAcl",
2262
- "identifiers": [
2263
- { "target": "Id", "source": "response", "path": "NetworkAcl.NetworkAclId" }
2264
- ],
2265
- "path": "NetworkAcl"
2266
- }
2267
- },
2268
- "CreateRouteTable": {
2269
- "request": {
2270
- "operation": "CreateRouteTable",
2271
- "params": [
2272
- { "target": "VpcId", "source": "identifier", "name": "Id" }
2273
- ]
2274
- },
2275
- "resource": {
2276
- "type": "RouteTable",
2277
- "identifiers": [
2278
- { "target": "Id", "source": "response", "path": "RouteTable.RouteTableId" }
2279
- ],
2280
- "path": "RouteTable"
2281
- }
2282
- },
2283
- "CreateSecurityGroup": {
2284
- "request": {
2285
- "operation": "CreateSecurityGroup",
2286
- "params": [
2287
- { "target": "VpcId", "source": "identifier", "name": "Id" }
2288
- ]
2289
- },
2290
- "resource": {
2291
- "type": "SecurityGroup",
2292
- "identifiers": [
2293
- { "target": "Id", "source": "response", "path": "GroupId" }
2294
- ]
2295
- }
2296
- },
2297
- "CreateSubnet": {
2298
- "request": {
2299
- "operation": "CreateSubnet",
2300
- "params": [
2301
- { "target": "VpcId", "source": "identifier", "name": "Id" }
2302
- ]
2303
- },
2304
- "resource": {
2305
- "type": "Subnet",
2306
- "identifiers": [
2307
- { "target": "Id", "source": "response", "path": "Subnet.SubnetId" }
2308
- ],
2309
- "path": "Subnet"
2310
- }
2311
- },
2312
- "CreateTags": {
2313
- "request": {
2314
- "operation": "CreateTags",
2315
- "params": [
2316
- { "target": "Resources[0]", "source": "identifier", "name": "Id" }
2317
- ]
2318
- },
2319
- "resource": {
2320
- "type": "Tag",
2321
- "identifiers": [
2322
- { "target": "ResourceId", "source": "identifier", "name": "Id" },
2323
- { "target": "Key", "source": "requestParameter", "path": "Tags[].Key" },
2324
- { "target": "Value", "source": "requestParameter", "path": "Tags[].Value" }
2325
- ]
2326
- }
2327
- },
2328
- "Delete": {
2329
- "request": {
2330
- "operation": "DeleteVpc",
2331
- "params": [
2332
- { "target": "VpcId", "source": "identifier", "name": "Id" }
2333
- ]
2334
- }
2335
- },
2336
- "DescribeAttribute": {
2337
- "request": {
2338
- "operation": "DescribeVpcAttribute",
2339
- "params": [
2340
- { "target": "VpcId", "source": "identifier", "name": "Id" }
2341
- ]
2342
- }
2343
- },
2344
- "DetachClassicLinkInstance": {
2345
- "request": {
2346
- "operation": "DetachClassicLinkVpc",
2347
- "params": [
2348
- { "target": "VpcId", "source": "identifier", "name": "Id" }
2349
- ]
2350
- }
2351
- },
2352
- "DetachInternetGateway": {
2353
- "request": {
2354
- "operation": "DetachInternetGateway",
2355
- "params": [
2356
- { "target": "VpcId", "source": "identifier", "name": "Id" }
2357
- ]
2358
- }
2359
- },
2360
- "DisableClassicLink": {
2361
- "request": {
2362
- "operation": "DisableVpcClassicLink",
2363
- "params": [
2364
- { "target": "VpcId", "source": "identifier", "name": "Id" }
2365
- ]
2366
- }
2367
- },
2368
- "EnableClassicLink": {
2369
- "request": {
2370
- "operation": "EnableVpcClassicLink",
2371
- "params": [
2372
- { "target": "VpcId", "source": "identifier", "name": "Id" }
2373
- ]
2374
- }
2375
- },
2376
- "ModifyAttribute": {
2377
- "request": {
2378
- "operation": "ModifyVpcAttribute",
2379
- "params": [
2380
- { "target": "VpcId", "source": "identifier", "name": "Id" }
2381
- ]
2382
- }
2383
- },
2384
- "RequestVpcPeeringConnection": {
2385
- "request": {
2386
- "operation": "CreateVpcPeeringConnection",
2387
- "params": [
2388
- { "target": "VpcId", "source": "identifier", "name": "Id" }
2389
- ]
2390
- },
2391
- "resource": {
2392
- "type": "VpcPeeringConnection",
2393
- "identifiers": [
2394
- { "target": "Id", "source": "response", "path": "VpcPeeringConnection.VpcPeeringConnectionId" }
2395
- ],
2396
- "path": "VpcPeeringConnection"
2397
- }
2398
- }
2399
- },
2400
- "waiters": {
2401
- "Available": {
2402
- "waiterName": "VpcAvailable",
2403
- "params": [
2404
- { "target": "VpcIds[]", "source": "identifier", "name": "Id" }
2405
- ]
2406
- },
2407
- "Exists": {
2408
- "waiterName": "VpcExists",
2409
- "params": [
2410
- { "target": "VpcIds[]", "source": "identifier", "name": "Id" }
2411
- ]
2412
- }
2413
- },
2414
- "has": {
2415
- "DhcpOptions": {
2416
- "resource": {
2417
- "type": "DhcpOptions",
2418
- "identifiers": [
2419
- { "target": "Id", "source": "data", "path": "DhcpOptionsId" }
2420
- ]
2421
- }
2422
- }
2423
- },
2424
- "hasMany": {
2425
- "AcceptedVpcPeeringConnections": {
2426
- "request": {
2427
- "operation": "DescribeVpcPeeringConnections",
2428
- "params": [
2429
- { "target": "Filters[0].Name", "source": "string", "value": "accepter-vpc-info.vpc-id" },
2430
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Id" }
2431
- ]
2432
- },
2433
- "resource": {
2434
- "type": "VpcPeeringConnection",
2435
- "identifiers": [
2436
- { "target": "Id", "source": "response", "path": "VpcPeeringConnections[].VpcPeeringConnectionId" }
2437
- ],
2438
- "path": "VpcPeeringConnections[]"
2439
- }
2440
- },
2441
- "Instances": {
2442
- "request": {
2443
- "operation": "DescribeInstances",
2444
- "params": [
2445
- { "target": "Filters[0].Name", "source": "string", "value": "vpc-id" },
2446
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Id" }
2447
- ]
2448
- },
2449
- "resource": {
2450
- "type": "Instance",
2451
- "identifiers": [
2452
- { "target": "Id", "source": "response", "path": "Reservations[].Instances[].InstanceId" }
2453
- ],
2454
- "path": "Reservations[].Instances[]"
2455
- }
2456
- },
2457
- "InternetGateways": {
2458
- "request": {
2459
- "operation": "DescribeInternetGateways",
2460
- "params": [
2461
- { "target": "Filters[0].Name", "source": "string", "value": "attachment.vpc-id" },
2462
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Id" }
2463
- ]
2464
- },
2465
- "resource": {
2466
- "type": "InternetGateway",
2467
- "identifiers": [
2468
- { "target": "Id", "source": "response", "path": "InternetGateways[].InternetGatewayId" }
2469
- ],
2470
- "path": "InternetGateways[]"
2471
- }
2472
- },
2473
- "NetworkAcls": {
2474
- "request": {
2475
- "operation": "DescribeNetworkAcls",
2476
- "params": [
2477
- { "target": "Filters[0].Name", "source": "string", "value": "vpc-id" },
2478
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Id" }
2479
- ]
2480
- },
2481
- "resource": {
2482
- "type": "NetworkAcl",
2483
- "identifiers": [
2484
- { "target": "Id", "source": "response", "path": "NetworkAcls[].NetworkAclId" }
2485
- ],
2486
- "path": "NetworkAcls[]"
2487
- }
2488
- },
2489
- "NetworkInterfaces": {
2490
- "request": {
2491
- "operation": "DescribeNetworkInterfaces",
2492
- "params": [
2493
- { "target": "Filters[0].Name", "source": "string", "value": "vpc-id" },
2494
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Id" }
2495
- ]
2496
- },
2497
- "resource": {
2498
- "type": "NetworkInterface",
2499
- "identifiers": [
2500
- { "target": "Id", "source": "response", "path": "NetworkInterfaces[].NetworkInterfaceId" }
2501
- ],
2502
- "path": "NetworkInterfaces[]"
2503
- }
2504
- },
2505
- "RequestedVpcPeeringConnections": {
2506
- "request": {
2507
- "operation": "DescribeVpcPeeringConnections",
2508
- "params": [
2509
- { "target": "Filters[0].Name", "source": "string", "value": "requester-vpc-info.vpc-id" },
2510
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Id" }
2511
- ]
2512
- },
2513
- "resource": {
2514
- "type": "VpcPeeringConnection",
2515
- "identifiers": [
2516
- { "target": "Id", "source": "response", "path": "VpcPeeringConnections[].VpcPeeringConnectionId" }
2517
- ],
2518
- "path": "VpcPeeringConnections[]"
2519
- }
2520
- },
2521
- "RouteTables": {
2522
- "request": {
2523
- "operation": "DescribeRouteTables",
2524
- "params": [
2525
- { "target": "Filters[0].Name", "source": "string", "value": "vpc-id" },
2526
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Id" }
2527
- ]
2528
- },
2529
- "resource": {
2530
- "type": "RouteTable",
2531
- "identifiers": [
2532
- { "target": "Id", "source": "response", "path": "RouteTables[].RouteTableId" }
2533
- ],
2534
- "path": "RouteTables[]"
2535
- }
2536
- },
2537
- "SecurityGroups": {
2538
- "request": {
2539
- "operation": "DescribeSecurityGroups",
2540
- "params": [
2541
- { "target": "Filters[0].Name", "source": "string", "value": "vpc-id" },
2542
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Id" }
2543
- ]
2544
- },
2545
- "resource": {
2546
- "type": "SecurityGroup",
2547
- "identifiers": [
2548
- { "target": "Id", "source": "response", "path": "SecurityGroups[].GroupId" }
2549
- ],
2550
- "path": "SecurityGroups[]"
2551
- }
2552
- },
2553
- "Subnets": {
2554
- "request": {
2555
- "operation": "DescribeSubnets",
2556
- "params": [
2557
- { "target": "Filters[0].Name", "source": "string", "value": "vpc-id" },
2558
- { "target": "Filters[0].Values[0]", "source": "identifier", "name": "Id" }
2559
- ]
2560
- },
2561
- "resource": {
2562
- "type": "Subnet",
2563
- "identifiers": [
2564
- { "target": "Id", "source": "response", "path": "Subnets[].SubnetId" }
2565
- ],
2566
- "path": "Subnets[]"
2567
- }
2568
- }
2569
- }
2570
- },
2571
- "VpcPeeringConnection": {
2572
- "identifiers": [
2573
- {
2574
- "name": "Id",
2575
- "memberName": "VpcPeeringConnectionId"
2576
- }
2577
- ],
2578
- "shape": "VpcPeeringConnection",
2579
- "load": {
2580
- "request": {
2581
- "operation": "DescribeVpcPeeringConnections",
2582
- "params": [
2583
- { "target": "VpcPeeringConnectionIds[0]", "source": "identifier", "name": "Id" }
2584
- ]
2585
- },
2586
- "path": "VpcPeeringConnections[0]"
2587
- },
2588
- "actions": {
2589
- "Accept": {
2590
- "request": {
2591
- "operation": "AcceptVpcPeeringConnection",
2592
- "params": [
2593
- { "target": "VpcPeeringConnectionId", "source": "identifier", "name": "Id" }
2594
- ]
2595
- }
2596
- },
2597
- "Delete": {
2598
- "request": {
2599
- "operation": "DeleteVpcPeeringConnection",
2600
- "params": [
2601
- { "target": "VpcPeeringConnectionId", "source": "identifier", "name": "Id" }
2602
- ]
2603
- }
2604
- },
2605
- "Reject": {
2606
- "request": {
2607
- "operation": "RejectVpcPeeringConnection",
2608
- "params": [
2609
- { "target": "VpcPeeringConnectionId", "source": "identifier", "name": "Id" }
2610
- ]
2611
- }
2612
- }
2613
- },
2614
- "waiters": {
2615
- "Exists": {
2616
- "waiterName": "VpcPeeringConnectionExists",
2617
- "params": [
2618
- { "target": "VpcPeeringConnectionIds[]", "source": "identifier", "name": "Id" }
2619
- ],
2620
- "path": "VpcPeeringConnections[0]"
2621
- }
2622
- },
2623
- "has": {
2624
- "AccepterVpc": {
2625
- "resource": {
2626
- "type": "Vpc",
2627
- "identifiers": [
2628
- { "target": "Id", "source": "data", "path": "AccepterVpcInfo.VpcId" }
2629
- ]
2630
- }
2631
- },
2632
- "RequesterVpc": {
2633
- "resource": {
2634
- "type": "Vpc",
2635
- "identifiers": [
2636
- { "target": "Id", "source": "data", "path": "RequesterVpcInfo.VpcId" }
2637
- ]
2638
- }
2639
- }
2640
- }
2641
- },
2642
- "VpcAddress": {
2643
- "identifiers": [
2644
- {
2645
- "name": "AllocationId"
2646
- }
2647
- ],
2648
- "shape": "Address",
2649
- "load": {
2650
- "request": {
2651
- "operation": "DescribeAddresses",
2652
- "params": [
2653
- { "target": "AllocationIds[0]", "source": "identifier", "name": "AllocationId" }
2654
- ]
2655
- },
2656
- "path": "Addresses[0]"
2657
- },
2658
- "actions": {
2659
- "Associate": {
2660
- "request": {
2661
- "operation": "AssociateAddress",
2662
- "params": [
2663
- { "target": "AllocationId", "source": "identifier", "name": "AllocationId" }
2664
- ]
2665
- }
2666
- },
2667
- "Release": {
2668
- "request": {
2669
- "operation": "ReleaseAddress",
2670
- "params": [
2671
- { "target": "AllocationId", "source": "data", "path": "AllocationId" }
2672
- ]
2673
- }
2674
- }
2675
- },
2676
- "has": {
2677
- "Association": {
2678
- "resource": {
2679
- "type": "NetworkInterfaceAssociation",
2680
- "identifiers": [
2681
- { "target": "Id", "source": "data", "path": "AssociationId" }
2682
- ]
2683
- }
2684
- }
2685
- }
2686
- }
2687
- }
2688
- }