aws-sdk-core 2.11.396 → 3.72.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1194) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -558
  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 +11 -12
  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/errors.rb +123 -22
  20. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  21. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  22. data/lib/aws-sdk-core/instance_profile_credentials.rb +4 -3
  23. data/lib/aws-sdk-core/json.rb +9 -10
  24. data/lib/aws-sdk-core/json/builder.rb +4 -2
  25. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  26. data/lib/aws-sdk-core/json/handler.rb +22 -3
  27. data/lib/aws-sdk-core/json/parser.rb +1 -1
  28. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  29. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  30. data/lib/aws-sdk-core/pager.rb +30 -25
  31. data/lib/aws-sdk-core/param_converter.rb +3 -3
  32. data/lib/aws-sdk-core/param_validator.rb +60 -26
  33. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  34. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  35. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  36. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  37. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  39. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  40. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  41. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  42. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  43. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  44. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  45. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  46. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  47. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  48. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  49. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  50. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  51. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  52. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  53. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +24 -16
  54. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  55. data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
  56. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  57. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  58. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  59. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  60. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  61. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  62. data/lib/aws-sdk-core/query.rb +5 -0
  63. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  64. data/lib/aws-sdk-core/query/handler.rb +20 -16
  65. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  66. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  67. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  68. data/lib/aws-sdk-core/rest.rb +10 -0
  69. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  70. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  71. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  72. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  73. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  74. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  75. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  76. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  77. data/lib/aws-sdk-core/shared_config.rb +172 -15
  78. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  79. data/lib/aws-sdk-core/structure.rb +22 -13
  80. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  81. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  82. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  83. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  84. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  85. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  86. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  87. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  88. data/lib/aws-sdk-core/util.rb +66 -0
  89. data/lib/aws-sdk-core/waiters.rb +3 -0
  90. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  91. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  92. data/lib/aws-sdk-core/xml.rb +9 -0
  93. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  94. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  95. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  96. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  97. data/lib/aws-sdk-sts.rb +45 -0
  98. data/lib/aws-sdk-sts/client.rb +1840 -0
  99. data/lib/aws-sdk-sts/client_api.rb +320 -0
  100. data/lib/aws-sdk-sts/customizations.rb +0 -0
  101. data/lib/aws-sdk-sts/errors.rb +142 -0
  102. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  103. data/lib/aws-sdk-sts/resource.rb +23 -0
  104. data/lib/aws-sdk-sts/types.rb +1312 -0
  105. data/lib/seahorse.rb +60 -60
  106. data/lib/seahorse/client/async_base.rb +50 -0
  107. data/lib/seahorse/client/async_response.rb +62 -0
  108. data/lib/seahorse/client/base.rb +5 -9
  109. data/lib/seahorse/client/configuration.rb +4 -2
  110. data/lib/seahorse/client/h2/connection.rb +244 -0
  111. data/lib/seahorse/client/h2/handler.rb +151 -0
  112. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  113. data/lib/seahorse/client/http/async_response.rb +42 -0
  114. data/lib/seahorse/client/http/response.rb +10 -5
  115. data/lib/seahorse/client/logging/formatter.rb +2 -0
  116. data/lib/seahorse/client/logging/handler.rb +2 -0
  117. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  118. data/lib/seahorse/client/net_http/handler.rb +5 -0
  119. data/lib/seahorse/client/net_http/patches.rb +9 -1
  120. data/lib/seahorse/client/networking_error.rb +28 -0
  121. data/lib/seahorse/client/plugin.rb +66 -6
  122. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  123. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  124. data/lib/seahorse/client/plugins/h2.rb +64 -0
  125. data/lib/seahorse/client/plugins/logging.rb +17 -19
  126. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  127. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  128. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  129. data/lib/seahorse/client/request_context.rb +5 -0
  130. data/lib/seahorse/model/api.rb +33 -0
  131. data/lib/seahorse/model/authorizer.rb +21 -0
  132. data/lib/seahorse/model/operation.rb +11 -0
  133. data/lib/seahorse/model/shapes.rb +44 -2
  134. data/lib/seahorse/util.rb +1 -22
  135. metadata +98 -1068
  136. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -838
  137. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  138. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -4
  139. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  140. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  141. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  142. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  143. data/apis/acm/2015-12-08/api-2.json +0 -843
  144. data/apis/acm/2015-12-08/examples-1.json +0 -5
  145. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  146. data/apis/acm/2015-12-08/smoke.json +0 -18
  147. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  148. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
  149. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  150. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  151. data/apis/amplify/2017-07-25/api-2.json +0 -2171
  152. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  153. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  154. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  155. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  156. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  157. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  158. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  159. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  160. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  161. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  162. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
  163. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  164. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  165. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  166. data/apis/application-insights/2018-11-25/api-2.json +0 -721
  167. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  168. data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
  169. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  170. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  171. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  172. data/apis/appmesh/2019-01-25/api-2.json +0 -3424
  173. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  174. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  175. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  176. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  177. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  178. data/apis/appstream/2016-12-01/smoke.json +0 -11
  179. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  180. data/apis/appsync/2017-07-25/api-2.json +0 -2003
  181. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  182. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  183. data/apis/athena/2017-05-18/api-2.json +0 -985
  184. data/apis/athena/2017-05-18/examples-1.json +0 -5
  185. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  186. data/apis/athena/2017-05-18/smoke.json +0 -11
  187. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  188. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  189. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  190. data/apis/autoscaling/2011-01-01/api-2.json +0 -2455
  191. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  192. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  193. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  194. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  195. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  196. data/apis/backup/2018-11-15/api-2.json +0 -2150
  197. data/apis/backup/2018-11-15/examples-1.json +0 -5
  198. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  199. data/apis/batch/2016-08-10/api-2.json +0 -1137
  200. data/apis/batch/2016-08-10/examples-1.json +0 -589
  201. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  202. data/apis/batch/2016-08-10/smoke.json +0 -11
  203. data/apis/budgets/2016-10-20/api-2.json +0 -830
  204. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  205. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  206. data/apis/ce/2017-10-25/api-2.json +0 -1385
  207. data/apis/ce/2017-10-25/examples-1.json +0 -5
  208. data/apis/ce/2017-10-25/paginators-1.json +0 -14
  209. data/apis/chime/2018-05-01/api-2.json +0 -3499
  210. data/apis/chime/2018-05-01/examples-1.json +0 -5
  211. data/apis/chime/2018-05-01/paginators-1.json +0 -39
  212. data/apis/cloud9/2017-09-23/api-2.json +0 -549
  213. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  214. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  215. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  216. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  217. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  218. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  219. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  220. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  221. data/apis/cloudformation/2010-05-15/api-2.json +0 -2752
  222. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  223. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -42
  224. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  225. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  226. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -237
  227. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  228. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  229. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  230. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  231. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  232. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  233. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  234. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  235. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  236. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  237. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  238. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  239. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  240. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  241. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  242. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  243. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  244. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  245. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  246. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  247. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  248. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  249. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  250. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  251. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  252. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  253. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  254. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  255. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  256. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  257. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  258. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  259. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  260. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  261. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  262. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  263. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  264. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  265. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  266. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  267. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  268. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  269. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  270. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  271. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  272. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  273. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  274. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  275. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  276. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  277. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  278. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  279. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  280. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  281. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  282. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  283. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  284. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  285. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1048
  286. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  287. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  288. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  289. data/apis/codebuild/2016-10-06/api-2.json +0 -1290
  290. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  291. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  292. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  293. data/apis/codecommit/2015-04-13/api-2.json +0 -4248
  294. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  295. data/apis/codecommit/2015-04-13/paginators-1.json +0 -49
  296. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  297. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  298. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  299. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  300. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  301. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  302. data/apis/codepipeline/2015-07-09/api-2.json +0 -2441
  303. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  304. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  305. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  306. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  307. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  308. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  309. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  310. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  311. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  312. data/apis/codestar/2017-04-19/smoke.json +0 -11
  313. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  314. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  315. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  316. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5371
  317. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  318. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  319. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  320. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  321. data/apis/comprehend/2017-11-27/api-2.json +0 -2367
  322. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  323. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  324. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
  325. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  326. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  327. data/apis/config/2014-11-12/api-2.json +0 -3496
  328. data/apis/config/2014-11-12/examples-1.json +0 -5
  329. data/apis/config/2014-11-12/paginators-1.json +0 -21
  330. data/apis/config/2014-11-12/smoke.json +0 -19
  331. data/apis/connect/2017-08-08/api-2.json +0 -1926
  332. data/apis/connect/2017-08-08/examples-1.json +0 -5
  333. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  334. data/apis/cur/2017-01-06/api-2.json +0 -277
  335. data/apis/cur/2017-01-06/examples-1.json +0 -102
  336. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  337. data/apis/cur/2017-01-06/smoke.json +0 -11
  338. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  339. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  340. data/apis/datasync/2018-11-09/api-2.json +0 -1337
  341. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  342. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  343. data/apis/dax/2017-04-19/api-2.json +0 -1140
  344. data/apis/dax/2017-04-19/examples-1.json +0 -5
  345. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  346. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  347. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  348. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  349. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  350. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  351. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  352. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  353. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  354. data/apis/discovery/2015-11-01/api-2.json +0 -1334
  355. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  356. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  357. data/apis/discovery/2015-11-01/smoke.json +0 -11
  358. data/apis/dlm/2018-01-12/api-2.json +0 -444
  359. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  360. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  361. data/apis/dms/2016-01-01/api-2.json +0 -2296
  362. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  363. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  364. data/apis/dms/2016-01-01/smoke.json +0 -18
  365. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  366. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  367. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  368. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  369. data/apis/docdb/2014-10-31/smoke.json +0 -18
  370. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  371. data/apis/ds/2015-04-16/api-2.json +0 -2634
  372. data/apis/ds/2015-04-16/examples-1.json +0 -5
  373. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  374. data/apis/ds/2015-04-16/smoke.json +0 -20
  375. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  376. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  377. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  378. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  379. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  380. data/apis/dynamodb/2012-08-10/api-2.json +0 -2812
  381. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  382. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  383. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  384. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  385. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  386. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  387. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  388. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  389. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  390. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  391. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  392. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  393. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  394. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  395. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  396. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  397. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  398. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  399. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  400. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  401. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  402. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  403. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  404. data/apis/ec2/2016-11-15/api-2.json +0 -25611
  405. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  406. data/apis/ec2/2016-11-15/paginators-1.json +0 -450
  407. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  408. data/apis/ec2/2016-11-15/smoke.json +0 -20
  409. data/apis/ec2/2016-11-15/waiters-2.json +0 -622
  410. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  411. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  412. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  413. data/apis/ecr/2015-09-21/smoke.json +0 -18
  414. data/apis/ecs/2014-11-13/api-2.json +0 -2902
  415. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  416. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  417. data/apis/ecs/2014-11-13/smoke.json +0 -18
  418. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  419. data/apis/eks/2017-11-01/api-2.json +0 -750
  420. data/apis/eks/2017-11-01/examples-1.json +0 -114
  421. data/apis/eks/2017-11-01/paginators-1.json +0 -16
  422. data/apis/eks/2017-11-01/waiters-2.json +0 -54
  423. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  424. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  425. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  426. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  427. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  428. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  429. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  430. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  431. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  432. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -897
  433. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  434. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  435. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  436. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  437. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  438. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  439. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  440. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  441. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2299
  442. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  443. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  444. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  445. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  446. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2187
  447. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  448. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  449. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  450. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  451. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  452. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  453. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  454. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  455. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  456. data/apis/email/2010-12-01/api-2.json +0 -3182
  457. data/apis/email/2010-12-01/examples-1.json +0 -1021
  458. data/apis/email/2010-12-01/paginators-1.json +0 -18
  459. data/apis/email/2010-12-01/smoke.json +0 -18
  460. data/apis/email/2010-12-01/waiters-2.json +0 -18
  461. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  462. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  463. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  464. data/apis/es/2015-01-01/api-2.json +0 -1572
  465. data/apis/es/2015-01-01/examples-1.json +0 -5
  466. data/apis/es/2015-01-01/paginators-1.json +0 -29
  467. data/apis/es/2015-01-01/smoke.json +0 -18
  468. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  469. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  470. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  471. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  472. data/apis/events/2015-10-07/api-2.json +0 -1462
  473. data/apis/events/2015-10-07/examples-1.json +0 -5
  474. data/apis/events/2015-10-07/paginators-1.json +0 -4
  475. data/apis/events/2015-10-07/smoke.json +0 -18
  476. data/apis/firehose/2015-08-04/api-2.json +0 -1383
  477. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  478. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  479. data/apis/firehose/2015-08-04/smoke.json +0 -18
  480. data/apis/fms/2018-01-01/api-2.json +0 -701
  481. data/apis/fms/2018-01-01/examples-1.json +0 -5
  482. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  483. data/apis/forecast/2018-06-26/api-2.json +0 -1373
  484. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  485. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  486. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  487. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  488. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  489. data/apis/fsx/2018-03-01/api-2.json +0 -1050
  490. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  491. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  492. data/apis/gamelift/2015-10-01/api-2.json +0 -3495
  493. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  494. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  495. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  496. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  497. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  498. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  499. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  500. data/apis/glacier/2012-06-01/smoke.json +0 -18
  501. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  502. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  503. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  504. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  505. data/apis/glue/2017-03-31/api-2.json +0 -6297
  506. data/apis/glue/2017-03-31/examples-1.json +0 -5
  507. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  508. data/apis/glue/2017-03-31/smoke.json +0 -11
  509. data/apis/greengrass/2017-06-07/api-2.json +0 -5106
  510. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  511. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  512. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  513. data/apis/guardduty/2017-11-28/api-2.json +0 -3206
  514. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  515. data/apis/guardduty/2017-11-28/paginators-1.json +0 -46
  516. data/apis/health/2016-08-04/api-2.json +0 -554
  517. data/apis/health/2016-08-04/examples-1.json +0 -5
  518. data/apis/health/2016-08-04/paginators-1.json +0 -31
  519. data/apis/health/2016-08-04/smoke.json +0 -11
  520. data/apis/iam/2010-05-08/api-2.json +0 -5778
  521. data/apis/iam/2010-05-08/examples-1.json +0 -1572
  522. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  523. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  524. data/apis/iam/2010-05-08/smoke.json +0 -18
  525. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  526. data/apis/importexport/2010-06-01/api-2.json +0 -667
  527. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  528. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  529. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  530. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  531. data/apis/inspector/2016-02-16/smoke.json +0 -18
  532. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  533. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  534. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  535. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  536. data/apis/iot/2015-05-28/api-2.json +0 -9676
  537. data/apis/iot/2015-05-28/examples-1.json +0 -5
  538. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  539. data/apis/iot/2015-05-28/smoke.json +0 -18
  540. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  541. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  542. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  543. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  544. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  545. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  546. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  547. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  548. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  549. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  550. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  551. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  552. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  553. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  554. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  555. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  556. data/apis/kafka/2018-11-14/api-2.json +0 -1950
  557. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  558. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  559. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  560. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  561. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  562. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  563. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  564. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  565. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  566. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  567. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  568. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  569. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  570. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  571. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  572. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
  573. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  574. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  575. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  576. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  577. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  578. data/apis/kms/2014-11-01/api-2.json +0 -1834
  579. data/apis/kms/2014-11-01/examples-1.json +0 -906
  580. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  581. data/apis/kms/2014-11-01/smoke.json +0 -19
  582. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  583. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  584. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  585. data/apis/lambda/2014-11-11/api-2.json +0 -668
  586. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  587. data/apis/lambda/2015-03-31/api-2.json +0 -2353
  588. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  589. data/apis/lambda/2015-03-31/paginators-1.json +0 -40
  590. data/apis/lambda/2015-03-31/smoke.json +0 -18
  591. data/apis/lambda/2015-03-31/waiters-2.json +0 -22
  592. data/apis/lex-models/2017-04-19/api-2.json +0 -2261
  593. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  594. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  595. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  596. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  597. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  598. data/apis/lightsail/2016-11-28/api-2.json +0 -5015
  599. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  600. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  601. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  602. data/apis/logs/2014-03-28/api-2.json +0 -1701
  603. data/apis/logs/2014-03-28/examples-1.json +0 -5
  604. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  605. data/apis/logs/2014-03-28/smoke.json +0 -19
  606. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  607. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  608. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  609. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  610. data/apis/macie/2017-12-19/api-2.json +0 -365
  611. data/apis/macie/2017-12-19/examples-1.json +0 -5
  612. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  613. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  614. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  615. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  616. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  617. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  618. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  619. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  620. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  621. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  622. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  623. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  624. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  625. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8350
  626. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  627. data/apis/medialive/2017-10-14/api-2.json +0 -9023
  628. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  629. data/apis/medialive/2017-10-14/waiters-2.json +0 -111
  630. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1498
  631. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  632. data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
  633. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  634. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  635. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  636. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  637. data/apis/mediastore/2017-09-01/api-2.json +0 -735
  638. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  639. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  640. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  641. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  642. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -344
  643. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  644. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  645. data/apis/mobile/2017-07-01/api-2.json +0 -551
  646. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  647. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  648. data/apis/monitoring/2010-08-01/api-2.json +0 -1526
  649. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  650. data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
  651. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  652. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  653. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  654. data/apis/mq/2017-11-27/api-2.json +0 -2538
  655. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  656. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  657. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  658. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  659. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  660. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  661. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  662. data/apis/neptune/2014-10-31/smoke.json +0 -18
  663. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  664. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  665. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  666. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  667. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  668. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  669. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  670. data/apis/opsworkscm/2016-11-01/api-2.json +0 -817
  671. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  672. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  673. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  674. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  675. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  676. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  677. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  678. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  679. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  680. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  681. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  682. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  683. data/apis/personalize/2018-05-22/api-2.json +0 -1712
  684. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  685. data/apis/personalize/2018-05-22/paginators-1.json +0 -58
  686. data/apis/pi/2018-02-27/api-2.json +0 -253
  687. data/apis/pi/2018-02-27/examples-1.json +0 -5
  688. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  689. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  690. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  691. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  692. data/apis/pinpoint/2016-12-01/api-2.json +0 -10826
  693. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  694. data/apis/polly/2016-06-10/api-2.json +0 -832
  695. data/apis/polly/2016-06-10/examples-1.json +0 -171
  696. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  697. data/apis/polly/2016-06-10/smoke.json +0 -11
  698. data/apis/pricing/2017-10-15/api-2.json +0 -227
  699. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  700. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  701. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  702. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  703. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  704. data/apis/qldb/2019-01-02/api-2.json +0 -776
  705. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  706. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  707. data/apis/quicksight/2018-04-01/api-2.json +0 -1223
  708. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  709. data/apis/quicksight/2018-04-01/paginators-1.json +0 -4
  710. data/apis/ram/2018-01-04/api-2.json +0 -1021
  711. data/apis/ram/2018-01-04/examples-1.json +0 -5
  712. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  713. data/apis/rds-data/2018-08-01/api-2.json +0 -540
  714. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  715. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  716. data/apis/rds/2013-01-10/api-2.json +0 -2903
  717. data/apis/rds/2013-01-10/examples-1.json +0 -5
  718. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  719. data/apis/rds/2013-01-10/smoke.json +0 -18
  720. data/apis/rds/2013-02-12/api-2.json +0 -3059
  721. data/apis/rds/2013-02-12/examples-1.json +0 -5
  722. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  723. data/apis/rds/2013-02-12/smoke.json +0 -18
  724. data/apis/rds/2013-09-09/api-2.json +0 -3160
  725. data/apis/rds/2013-09-09/examples-1.json +0 -5
  726. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  727. data/apis/rds/2013-09-09/smoke.json +0 -18
  728. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  729. data/apis/rds/2014-09-01/api-2.json +0 -3273
  730. data/apis/rds/2014-09-01/examples-1.json +0 -5
  731. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  732. data/apis/rds/2014-09-01/smoke.json +0 -18
  733. data/apis/rds/2014-10-31/api-2.json +0 -6880
  734. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  735. data/apis/rds/2014-10-31/paginators-1.json +0 -140
  736. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  737. data/apis/rds/2014-10-31/smoke.json +0 -18
  738. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  739. data/apis/rds/2015-11-12/api-2.json +0 -5509
  740. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  741. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  742. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  743. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  744. data/apis/redshift/2012-12-01/api-2.json +0 -4995
  745. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  746. data/apis/redshift/2012-12-01/paginators-1.json +0 -100
  747. data/apis/redshift/2012-12-01/smoke.json +0 -18
  748. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  749. data/apis/rekognition/2016-06-27/api-2.json +0 -2142
  750. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  751. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  752. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  753. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  754. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  755. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  756. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  757. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  758. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  759. data/apis/robomaker/2018-06-29/api-2.json +0 -2160
  760. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  761. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  762. data/apis/route53/2013-04-01/api-2.json +0 -3780
  763. data/apis/route53/2013-04-01/examples-1.json +0 -762
  764. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  765. data/apis/route53/2013-04-01/smoke.json +0 -18
  766. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  767. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  768. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  769. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  770. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  771. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  772. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  773. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  774. data/apis/runtime.lex/2016-11-28/api-2.json +0 -693
  775. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  776. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  777. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -152
  778. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  779. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  780. data/apis/s3/2006-03-01/api-2.json +0 -6587
  781. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  782. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  783. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  784. data/apis/s3/2006-03-01/smoke.json +0 -11
  785. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  786. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  787. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  788. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  789. data/apis/sagemaker/2017-07-24/api-2.json +0 -5281
  790. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  791. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  792. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  793. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  794. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  795. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  796. data/apis/sdb/2009-04-15/api-2.json +0 -955
  797. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  798. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  799. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  800. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  801. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  802. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  803. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  804. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  805. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  806. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  807. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  808. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  809. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  810. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  811. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  812. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  813. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  814. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  815. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  816. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  817. data/apis/shield/2016-06-02/api-2.json +0 -893
  818. data/apis/shield/2016-06-02/examples-1.json +0 -5
  819. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  820. data/apis/shield/2016-06-02/smoke.json +0 -11
  821. data/apis/signer/2017-08-25/api-2.json +0 -817
  822. data/apis/signer/2017-08-25/examples-1.json +0 -5
  823. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  824. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  825. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  826. data/apis/sms/2016-10-24/api-2.json +0 -1366
  827. data/apis/sms/2016-10-24/examples-1.json +0 -5
  828. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  829. data/apis/sms/2016-10-24/smoke.json +0 -18
  830. data/apis/snowball/2016-06-30/api-2.json +0 -955
  831. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  832. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  833. data/apis/snowball/2016-06-30/smoke.json +0 -11
  834. data/apis/sns/2010-03-31/api-2.json +0 -1468
  835. data/apis/sns/2010-03-31/examples-1.json +0 -5
  836. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  837. data/apis/sns/2010-03-31/resources-1.json +0 -327
  838. data/apis/sns/2010-03-31/smoke.json +0 -19
  839. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  840. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  841. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  842. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  843. data/apis/sqs/2012-11-05/smoke.json +0 -18
  844. data/apis/ssm/2014-11-06/api-2.json +0 -8916
  845. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  846. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  847. data/apis/ssm/2014-11-06/smoke.json +0 -18
  848. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  849. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  850. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  851. data/apis/sso/2019-06-10/api-2.json +0 -281
  852. data/apis/sso/2019-06-10/examples-1.json +0 -5
  853. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  854. data/apis/states/2016-11-23/api-2.json +0 -1409
  855. data/apis/states/2016-11-23/examples-1.json +0 -5
  856. data/apis/states/2016-11-23/paginators-1.json +0 -28
  857. data/apis/states/2016-11-23/smoke.json +0 -11
  858. data/apis/storagegateway/2013-06-30/api-2.json +0 -3166
  859. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  860. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  861. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  862. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  863. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  864. data/apis/sts/2011-06-15/api-2.json +0 -562
  865. data/apis/sts/2011-06-15/examples-1.json +0 -207
  866. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  867. data/apis/sts/2011-06-15/smoke.json +0 -19
  868. data/apis/support/2013-04-15/api-2.json +0 -773
  869. data/apis/support/2013-04-15/examples-1.json +0 -5
  870. data/apis/support/2013-04-15/paginators-1.json +0 -25
  871. data/apis/support/2013-04-15/smoke.json +0 -22
  872. data/apis/swf/2012-01-25/api-2.json +0 -2792
  873. data/apis/swf/2012-01-25/examples-1.json +0 -5
  874. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  875. data/apis/textract/2018-06-27/api-2.json +0 -572
  876. data/apis/textract/2018-06-27/examples-1.json +0 -5
  877. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  878. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  879. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  880. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  881. data/apis/transcribe/2017-10-26/api-2.json +0 -524
  882. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  883. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  884. data/apis/transfer/2018-11-05/api-2.json +0 -940
  885. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  886. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  887. data/apis/translate/2017-07-01/api-2.json +0 -408
  888. data/apis/translate/2017-07-01/examples-1.json +0 -5
  889. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  890. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  891. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  892. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  893. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  894. data/apis/waf/2015-08-24/api-2.json +0 -3857
  895. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  896. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  897. data/apis/waf/2015-08-24/smoke.json +0 -21
  898. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  899. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  900. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  901. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  902. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  903. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  904. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  905. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  906. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  907. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  908. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  909. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  910. data/apis/workspaces/2015-04-08/api-2.json +0 -1764
  911. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  912. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  913. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  914. data/apis/xray/2016-04-12/api-2.json +0 -1352
  915. data/apis/xray/2016-04-12/examples-1.json +0 -5
  916. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  917. data/bin/aws.rb +0 -180
  918. data/endpoints.json +0 -5618
  919. data/lib/aws-sdk-core/acm.rb +0 -7
  920. data/lib/aws-sdk-core/acmpca.rb +0 -7
  921. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  922. data/lib/aws-sdk-core/amplify.rb +0 -6
  923. data/lib/aws-sdk-core/api/builder.rb +0 -129
  924. data/lib/aws-sdk-core/api/customizations.rb +0 -303
  925. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  926. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  927. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  928. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  929. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  930. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  931. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  932. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  933. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  934. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  935. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  936. data/lib/aws-sdk-core/apigateway.rb +0 -6
  937. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  938. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  939. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  940. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  941. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  942. data/lib/aws-sdk-core/appmesh.rb +0 -6
  943. data/lib/aws-sdk-core/appstream.rb +0 -7
  944. data/lib/aws-sdk-core/appsync.rb +0 -6
  945. data/lib/aws-sdk-core/athena.rb +0 -6
  946. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  947. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  948. data/lib/aws-sdk-core/backup.rb +0 -6
  949. data/lib/aws-sdk-core/batch.rb +0 -6
  950. data/lib/aws-sdk-core/budgets.rb +0 -6
  951. data/lib/aws-sdk-core/checksums.rb +0 -51
  952. data/lib/aws-sdk-core/chime.rb +0 -6
  953. data/lib/aws-sdk-core/client.rb +0 -62
  954. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  955. data/lib/aws-sdk-core/cloud9.rb +0 -6
  956. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  957. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  958. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  959. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  960. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  961. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  962. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  963. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  964. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  965. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  966. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  967. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  968. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  969. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  970. data/lib/aws-sdk-core/codebuild.rb +0 -6
  971. data/lib/aws-sdk-core/codecommit.rb +0 -6
  972. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  973. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  974. data/lib/aws-sdk-core/codestar.rb +0 -6
  975. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  976. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  977. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  978. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  979. data/lib/aws-sdk-core/comprehend.rb +0 -6
  980. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  981. data/lib/aws-sdk-core/configservice.rb +0 -6
  982. data/lib/aws-sdk-core/connect.rb +0 -6
  983. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  984. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  985. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  986. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  987. data/lib/aws-sdk-core/datasync.rb +0 -6
  988. data/lib/aws-sdk-core/dax.rb +0 -6
  989. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  990. data/lib/aws-sdk-core/directconnect.rb +0 -6
  991. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  992. data/lib/aws-sdk-core/dlm.rb +0 -6
  993. data/lib/aws-sdk-core/docdb.rb +0 -7
  994. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  995. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  996. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  997. data/lib/aws-sdk-core/ec2.rb +0 -8
  998. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  999. data/lib/aws-sdk-core/ecr.rb +0 -6
  1000. data/lib/aws-sdk-core/ecs.rb +0 -7
  1001. data/lib/aws-sdk-core/efs.rb +0 -6
  1002. data/lib/aws-sdk-core/eks.rb +0 -7
  1003. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1004. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1005. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1006. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1007. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1008. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1009. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1010. data/lib/aws-sdk-core/emr.rb +0 -7
  1011. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1012. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1013. data/lib/aws-sdk-core/firehose.rb +0 -6
  1014. data/lib/aws-sdk-core/fms.rb +0 -6
  1015. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1016. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1017. data/lib/aws-sdk-core/fsx.rb +0 -6
  1018. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1019. data/lib/aws-sdk-core/glacier.rb +0 -8
  1020. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1021. data/lib/aws-sdk-core/glue.rb +0 -6
  1022. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1023. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1024. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1025. data/lib/aws-sdk-core/health.rb +0 -6
  1026. data/lib/aws-sdk-core/iam.rb +0 -8
  1027. data/lib/aws-sdk-core/importexport.rb +0 -5
  1028. data/lib/aws-sdk-core/inspector.rb +0 -6
  1029. data/lib/aws-sdk-core/iot.rb +0 -6
  1030. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1031. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1032. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1033. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1034. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1035. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1036. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1037. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1038. data/lib/aws-sdk-core/kafka.rb +0 -5
  1039. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1040. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1041. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1042. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1043. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1044. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1045. data/lib/aws-sdk-core/kms.rb +0 -6
  1046. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1047. data/lib/aws-sdk-core/lambda.rb +0 -7
  1048. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1049. data/lib/aws-sdk-core/lex.rb +0 -6
  1050. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1051. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1052. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1053. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1054. data/lib/aws-sdk-core/macie.rb +0 -6
  1055. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1056. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1057. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1058. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1059. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1060. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1061. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1062. data/lib/aws-sdk-core/medialive.rb +0 -6
  1063. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1064. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1065. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1066. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1067. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1068. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1069. data/lib/aws-sdk-core/mobile.rb +0 -6
  1070. data/lib/aws-sdk-core/mq.rb +0 -5
  1071. data/lib/aws-sdk-core/mturk.rb +0 -6
  1072. data/lib/aws-sdk-core/neptune.rb +0 -7
  1073. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1074. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1075. data/lib/aws-sdk-core/organizations.rb +0 -6
  1076. data/lib/aws-sdk-core/partitions.rb +0 -174
  1077. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1078. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1079. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1080. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1081. data/lib/aws-sdk-core/personalize.rb +0 -6
  1082. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1083. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1084. data/lib/aws-sdk-core/pi.rb +0 -6
  1085. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1086. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1087. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1088. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1089. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1090. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1091. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1092. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1093. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1094. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1095. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1096. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1097. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1098. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1099. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1100. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1101. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1102. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1103. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1104. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1105. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1106. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1107. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1108. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1109. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1110. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1111. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1112. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1113. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1114. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1115. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1116. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1117. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1118. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1119. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1120. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1121. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1122. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1123. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1124. data/lib/aws-sdk-core/polly.rb +0 -14
  1125. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1126. data/lib/aws-sdk-core/pricing.rb +0 -6
  1127. data/lib/aws-sdk-core/qldb.rb +0 -6
  1128. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1129. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1130. data/lib/aws-sdk-core/ram.rb +0 -6
  1131. data/lib/aws-sdk-core/rds.rb +0 -16
  1132. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1133. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1134. data/lib/aws-sdk-core/redshift.rb +0 -7
  1135. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1136. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1137. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1138. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1139. data/lib/aws-sdk-core/route53.rb +0 -7
  1140. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1141. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1142. data/lib/aws-sdk-core/s3.rb +0 -26
  1143. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1144. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1145. data/lib/aws-sdk-core/s3control.rb +0 -6
  1146. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1147. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1148. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1149. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1150. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1151. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1152. data/lib/aws-sdk-core/service.rb +0 -4
  1153. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1154. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1155. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1156. data/lib/aws-sdk-core/ses.rb +0 -7
  1157. data/lib/aws-sdk-core/shield.rb +0 -6
  1158. data/lib/aws-sdk-core/signer.rb +0 -7
  1159. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1160. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1161. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1162. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1163. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1164. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1165. data/lib/aws-sdk-core/sms.rb +0 -6
  1166. data/lib/aws-sdk-core/snowball.rb +0 -6
  1167. data/lib/aws-sdk-core/sns.rb +0 -7
  1168. data/lib/aws-sdk-core/sqs.rb +0 -7
  1169. data/lib/aws-sdk-core/ssm.rb +0 -6
  1170. data/lib/aws-sdk-core/sso.rb +0 -6
  1171. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1172. data/lib/aws-sdk-core/states.rb +0 -6
  1173. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1174. data/lib/aws-sdk-core/sts.rb +0 -6
  1175. data/lib/aws-sdk-core/support.rb +0 -6
  1176. data/lib/aws-sdk-core/swf.rb +0 -6
  1177. data/lib/aws-sdk-core/textract.rb +0 -6
  1178. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1179. data/lib/aws-sdk-core/transfer.rb +0 -6
  1180. data/lib/aws-sdk-core/translate.rb +0 -6
  1181. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1182. data/lib/aws-sdk-core/version.rb +0 -3
  1183. data/lib/aws-sdk-core/waf.rb +0 -6
  1184. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1185. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1186. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1187. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1188. data/lib/aws-sdk-core/worklink.rb +0 -6
  1189. data/lib/aws-sdk-core/workmail.rb +0 -6
  1190. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1191. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1192. data/lib/aws-sdk-core/xray.rb +0 -6
  1193. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1194. data/service-models.json +0 -789
@@ -1,3740 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- "AllocateAddress": [
5
- {
6
- "input": {
7
- "Domain": "vpc"
8
- },
9
- "output": {
10
- "AllocationId": "eipalloc-64d5890a",
11
- "Domain": "vpc",
12
- "PublicIp": "203.0.113.0"
13
- },
14
- "comments": {
15
- "input": {
16
- },
17
- "output": {
18
- }
19
- },
20
- "description": "This example allocates an Elastic IP address to use with an instance in a VPC.",
21
- "id": "ec2-allocate-address-1",
22
- "title": "To allocate an Elastic IP address for EC2-VPC"
23
- },
24
- {
25
- "output": {
26
- "Domain": "standard",
27
- "PublicIp": "198.51.100.0"
28
- },
29
- "comments": {
30
- "input": {
31
- },
32
- "output": {
33
- }
34
- },
35
- "description": "This example allocates an Elastic IP address to use with an instance in EC2-Classic.",
36
- "id": "ec2-allocate-address-2",
37
- "title": "To allocate an Elastic IP address for EC2-Classic"
38
- }
39
- ],
40
- "AssignPrivateIpAddresses": [
41
- {
42
- "input": {
43
- "NetworkInterfaceId": "eni-e5aa89a3",
44
- "PrivateIpAddresses": [
45
- "10.0.0.82"
46
- ]
47
- },
48
- "comments": {
49
- "input": {
50
- },
51
- "output": {
52
- }
53
- },
54
- "description": "This example assigns the specified secondary private IP address to the specified network interface.",
55
- "id": "ec2-assign-private-ip-addresses-1",
56
- "title": "To assign a specific secondary private IP address to an interface"
57
- },
58
- {
59
- "input": {
60
- "NetworkInterfaceId": "eni-e5aa89a3",
61
- "SecondaryPrivateIpAddressCount": 2
62
- },
63
- "comments": {
64
- "input": {
65
- },
66
- "output": {
67
- }
68
- },
69
- "description": "This example assigns two secondary private IP addresses to the specified network interface. Amazon EC2 automatically assigns these IP addresses from the available IP addresses in the CIDR block range of the subnet the network interface is associated with.",
70
- "id": "ec2-assign-private-ip-addresses-2",
71
- "title": "To assign secondary private IP addresses that Amazon EC2 selects to an interface"
72
- }
73
- ],
74
- "AssociateAddress": [
75
- {
76
- "input": {
77
- "AllocationId": "eipalloc-64d5890a",
78
- "InstanceId": "i-0b263919b6498b123"
79
- },
80
- "output": {
81
- "AssociationId": "eipassoc-2bebb745"
82
- },
83
- "comments": {
84
- "input": {
85
- },
86
- "output": {
87
- }
88
- },
89
- "description": "This example associates the specified Elastic IP address with the specified instance in a VPC.",
90
- "id": "ec2-associate-address-1",
91
- "title": "To associate an Elastic IP address in EC2-VPC"
92
- },
93
- {
94
- "input": {
95
- "AllocationId": "eipalloc-64d5890a",
96
- "NetworkInterfaceId": "eni-1a2b3c4d"
97
- },
98
- "output": {
99
- "AssociationId": "eipassoc-2bebb745"
100
- },
101
- "comments": {
102
- "input": {
103
- },
104
- "output": {
105
- }
106
- },
107
- "description": "This example associates the specified Elastic IP address with the specified network interface.",
108
- "id": "ec2-associate-address-2",
109
- "title": "To associate an Elastic IP address with a network interface"
110
- },
111
- {
112
- "input": {
113
- "InstanceId": "i-07ffe74c7330ebf53",
114
- "PublicIp": "198.51.100.0"
115
- },
116
- "comments": {
117
- "input": {
118
- },
119
- "output": {
120
- }
121
- },
122
- "description": "This example associates an Elastic IP address with an instance in EC2-Classic.",
123
- "id": "ec2-associate-address-3",
124
- "title": "To associate an Elastic IP address in EC2-Classic"
125
- }
126
- ],
127
- "AssociateDhcpOptions": [
128
- {
129
- "input": {
130
- "DhcpOptionsId": "dopt-d9070ebb",
131
- "VpcId": "vpc-a01106c2"
132
- },
133
- "comments": {
134
- "input": {
135
- },
136
- "output": {
137
- }
138
- },
139
- "description": "This example associates the specified DHCP options set with the specified VPC.",
140
- "id": "ec2-associate-dhcp-options-1",
141
- "title": "To associate a DHCP options set with a VPC"
142
- },
143
- {
144
- "input": {
145
- "DhcpOptionsId": "default",
146
- "VpcId": "vpc-a01106c2"
147
- },
148
- "comments": {
149
- "input": {
150
- },
151
- "output": {
152
- }
153
- },
154
- "description": "This example associates the default DHCP options set with the specified VPC.",
155
- "id": "ec2-associate-dhcp-options-2",
156
- "title": "To associate the default DHCP options set with a VPC"
157
- }
158
- ],
159
- "AssociateRouteTable": [
160
- {
161
- "input": {
162
- "RouteTableId": "rtb-22574640",
163
- "SubnetId": "subnet-9d4a7b6"
164
- },
165
- "output": {
166
- "AssociationId": "rtbassoc-781d0d1a"
167
- },
168
- "comments": {
169
- "input": {
170
- },
171
- "output": {
172
- }
173
- },
174
- "description": "This example associates the specified route table with the specified subnet.",
175
- "id": "ec2-associate-route-table-1",
176
- "title": "To associate a route table with a subnet"
177
- }
178
- ],
179
- "AttachInternetGateway": [
180
- {
181
- "input": {
182
- "InternetGatewayId": "igw-c0a643a9",
183
- "VpcId": "vpc-a01106c2"
184
- },
185
- "comments": {
186
- "input": {
187
- },
188
- "output": {
189
- }
190
- },
191
- "description": "This example attaches the specified Internet gateway to the specified VPC.",
192
- "id": "ec2-attach-internet-gateway-1",
193
- "title": "To attach an Internet gateway to a VPC"
194
- }
195
- ],
196
- "AttachNetworkInterface": [
197
- {
198
- "input": {
199
- "DeviceIndex": 1,
200
- "InstanceId": "i-1234567890abcdef0",
201
- "NetworkInterfaceId": "eni-e5aa89a3"
202
- },
203
- "output": {
204
- "AttachmentId": "eni-attach-66c4350a"
205
- },
206
- "comments": {
207
- "input": {
208
- },
209
- "output": {
210
- }
211
- },
212
- "description": "This example attaches the specified network interface to the specified instance.",
213
- "id": "ec2-attach-network-interface-1",
214
- "title": "To attach a network interface to an instance"
215
- }
216
- ],
217
- "AttachVolume": [
218
- {
219
- "input": {
220
- "Device": "/dev/sdf",
221
- "InstanceId": "i-01474ef662b89480",
222
- "VolumeId": "vol-1234567890abcdef0"
223
- },
224
- "output": {
225
- "AttachTime": "2016-08-29T18:52:32.724Z",
226
- "Device": "/dev/sdf",
227
- "InstanceId": "i-01474ef662b89480",
228
- "State": "attaching",
229
- "VolumeId": "vol-1234567890abcdef0"
230
- },
231
- "comments": {
232
- "input": {
233
- },
234
- "output": {
235
- }
236
- },
237
- "description": "This example attaches a volume (``vol-1234567890abcdef0``) to an instance (``i-01474ef662b89480``) as ``/dev/sdf``.",
238
- "id": "to-attach-a-volume-to-an-instance-1472499213109",
239
- "title": "To attach a volume to an instance"
240
- }
241
- ],
242
- "CancelSpotFleetRequests": [
243
- {
244
- "input": {
245
- "SpotFleetRequestIds": [
246
- "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"
247
- ],
248
- "TerminateInstances": true
249
- },
250
- "output": {
251
- "SuccessfulFleetRequests": [
252
- {
253
- "CurrentSpotFleetRequestState": "cancelled_running",
254
- "PreviousSpotFleetRequestState": "active",
255
- "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"
256
- }
257
- ]
258
- },
259
- "comments": {
260
- "input": {
261
- },
262
- "output": {
263
- }
264
- },
265
- "description": "This example cancels the specified Spot fleet request and terminates its associated Spot Instances.",
266
- "id": "ec2-cancel-spot-fleet-requests-1",
267
- "title": "To cancel a Spot fleet request"
268
- },
269
- {
270
- "input": {
271
- "SpotFleetRequestIds": [
272
- "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"
273
- ],
274
- "TerminateInstances": false
275
- },
276
- "output": {
277
- "SuccessfulFleetRequests": [
278
- {
279
- "CurrentSpotFleetRequestState": "cancelled_terminating",
280
- "PreviousSpotFleetRequestState": "active",
281
- "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"
282
- }
283
- ]
284
- },
285
- "comments": {
286
- "input": {
287
- },
288
- "output": {
289
- }
290
- },
291
- "description": "This example cancels the specified Spot fleet request without terminating its associated Spot Instances.",
292
- "id": "ec2-cancel-spot-fleet-requests-2",
293
- "title": "To cancel a Spot fleet request without terminating its Spot Instances"
294
- }
295
- ],
296
- "CancelSpotInstanceRequests": [
297
- {
298
- "input": {
299
- "SpotInstanceRequestIds": [
300
- "sir-08b93456"
301
- ]
302
- },
303
- "output": {
304
- "CancelledSpotInstanceRequests": [
305
- {
306
- "SpotInstanceRequestId": "sir-08b93456",
307
- "State": "cancelled"
308
- }
309
- ]
310
- },
311
- "comments": {
312
- "input": {
313
- },
314
- "output": {
315
- }
316
- },
317
- "description": "This example cancels a Spot Instance request.",
318
- "id": "ec2-cancel-spot-instance-requests-1",
319
- "title": "To cancel Spot Instance requests"
320
- }
321
- ],
322
- "ConfirmProductInstance": [
323
- {
324
- "input": {
325
- "InstanceId": "i-1234567890abcdef0",
326
- "ProductCode": "774F4FF8"
327
- },
328
- "output": {
329
- "OwnerId": "123456789012"
330
- },
331
- "comments": {
332
- "input": {
333
- },
334
- "output": {
335
- }
336
- },
337
- "description": "This example determines whether the specified product code is associated with the specified instance.",
338
- "id": "to-confirm-the-product-instance-1472712108494",
339
- "title": "To confirm the product instance"
340
- }
341
- ],
342
- "CopySnapshot": [
343
- {
344
- "input": {
345
- "Description": "This is my copied snapshot.",
346
- "DestinationRegion": "us-east-1",
347
- "SourceRegion": "us-west-2",
348
- "SourceSnapshotId": "snap-066877671789bd71b"
349
- },
350
- "output": {
351
- "SnapshotId": "snap-066877671789bd71b"
352
- },
353
- "comments": {
354
- "input": {
355
- },
356
- "output": {
357
- }
358
- },
359
- "description": "This example copies a snapshot with the snapshot ID of ``snap-066877671789bd71b`` from the ``us-west-2`` region to the ``us-east-1`` region and adds a short description to identify the snapshot.",
360
- "id": "to-copy-a-snapshot-1472502259774",
361
- "title": "To copy a snapshot"
362
- }
363
- ],
364
- "CreateCustomerGateway": [
365
- {
366
- "input": {
367
- "BgpAsn": 65534,
368
- "PublicIp": "12.1.2.3",
369
- "Type": "ipsec.1"
370
- },
371
- "output": {
372
- "CustomerGateway": {
373
- "BgpAsn": "65534",
374
- "CustomerGatewayId": "cgw-0e11f167",
375
- "IpAddress": "12.1.2.3",
376
- "State": "available",
377
- "Type": "ipsec.1"
378
- }
379
- },
380
- "comments": {
381
- "input": {
382
- },
383
- "output": {
384
- }
385
- },
386
- "description": "This example creates a customer gateway with the specified IP address for its outside interface.",
387
- "id": "ec2-create-customer-gateway-1",
388
- "title": "To create a customer gateway"
389
- }
390
- ],
391
- "CreateDhcpOptions": [
392
- {
393
- "input": {
394
- "DhcpConfigurations": [
395
- {
396
- "Key": "domain-name-servers",
397
- "Values": [
398
- "10.2.5.1",
399
- "10.2.5.2"
400
- ]
401
- }
402
- ]
403
- },
404
- "output": {
405
- "DhcpOptions": {
406
- "DhcpConfigurations": [
407
- {
408
- "Key": "domain-name-servers",
409
- "Values": [
410
- {
411
- "Value": "10.2.5.2"
412
- },
413
- {
414
- "Value": "10.2.5.1"
415
- }
416
- ]
417
- }
418
- ],
419
- "DhcpOptionsId": "dopt-d9070ebb"
420
- }
421
- },
422
- "comments": {
423
- "input": {
424
- },
425
- "output": {
426
- }
427
- },
428
- "description": "This example creates a DHCP options set.",
429
- "id": "ec2-create-dhcp-options-1",
430
- "title": "To create a DHCP options set"
431
- }
432
- ],
433
- "CreateInternetGateway": [
434
- {
435
- "output": {
436
- "InternetGateway": {
437
- "Attachments": [
438
-
439
- ],
440
- "InternetGatewayId": "igw-c0a643a9",
441
- "Tags": [
442
-
443
- ]
444
- }
445
- },
446
- "comments": {
447
- "input": {
448
- },
449
- "output": {
450
- }
451
- },
452
- "description": "This example creates an Internet gateway.",
453
- "id": "ec2-create-internet-gateway-1",
454
- "title": "To create an Internet gateway"
455
- }
456
- ],
457
- "CreateKeyPair": [
458
- {
459
- "input": {
460
- "KeyName": "my-key-pair"
461
- },
462
- "comments": {
463
- "input": {
464
- },
465
- "output": {
466
- }
467
- },
468
- "description": "This example creates a key pair named my-key-pair.",
469
- "id": "ec2-create-key-pair-1",
470
- "title": "To create a key pair"
471
- }
472
- ],
473
- "CreateNatGateway": [
474
- {
475
- "input": {
476
- "AllocationId": "eipalloc-37fc1a52",
477
- "SubnetId": "subnet-1a2b3c4d"
478
- },
479
- "output": {
480
- "NatGateway": {
481
- "CreateTime": "2015-12-17T12:45:26.732Z",
482
- "NatGatewayAddresses": [
483
- {
484
- "AllocationId": "eipalloc-37fc1a52"
485
- }
486
- ],
487
- "NatGatewayId": "nat-08d48af2a8e83edfd",
488
- "State": "pending",
489
- "SubnetId": "subnet-1a2b3c4d",
490
- "VpcId": "vpc-1122aabb"
491
- }
492
- },
493
- "comments": {
494
- "input": {
495
- },
496
- "output": {
497
- }
498
- },
499
- "description": "This example creates a NAT gateway in subnet subnet-1a2b3c4d and associates an Elastic IP address with the allocation ID eipalloc-37fc1a52 with the NAT gateway.",
500
- "id": "ec2-create-nat-gateway-1",
501
- "title": "To create a NAT gateway"
502
- }
503
- ],
504
- "CreateNetworkAcl": [
505
- {
506
- "input": {
507
- "VpcId": "vpc-a01106c2"
508
- },
509
- "output": {
510
- "NetworkAcl": {
511
- "Associations": [
512
-
513
- ],
514
- "Entries": [
515
- {
516
- "CidrBlock": "0.0.0.0/0",
517
- "Egress": true,
518
- "Protocol": "-1",
519
- "RuleAction": "deny",
520
- "RuleNumber": 32767
521
- },
522
- {
523
- "CidrBlock": "0.0.0.0/0",
524
- "Egress": false,
525
- "Protocol": "-1",
526
- "RuleAction": "deny",
527
- "RuleNumber": 32767
528
- }
529
- ],
530
- "IsDefault": false,
531
- "NetworkAclId": "acl-5fb85d36",
532
- "Tags": [
533
-
534
- ],
535
- "VpcId": "vpc-a01106c2"
536
- }
537
- },
538
- "comments": {
539
- "input": {
540
- },
541
- "output": {
542
- }
543
- },
544
- "description": "This example creates a network ACL for the specified VPC.",
545
- "id": "ec2-create-network-acl-1",
546
- "title": "To create a network ACL"
547
- }
548
- ],
549
- "CreateNetworkAclEntry": [
550
- {
551
- "input": {
552
- "CidrBlock": "0.0.0.0/0",
553
- "Egress": false,
554
- "NetworkAclId": "acl-5fb85d36",
555
- "PortRange": {
556
- "From": 53,
557
- "To": 53
558
- },
559
- "Protocol": "udp",
560
- "RuleAction": "allow",
561
- "RuleNumber": 100
562
- },
563
- "comments": {
564
- "input": {
565
- },
566
- "output": {
567
- }
568
- },
569
- "description": "This example creates an entry for the specified network ACL. The rule allows ingress traffic from anywhere (0.0.0.0/0) on UDP port 53 (DNS) into any associated subnet.",
570
- "id": "ec2-create-network-acl-entry-1",
571
- "title": "To create a network ACL entry"
572
- }
573
- ],
574
- "CreateNetworkInterface": [
575
- {
576
- "input": {
577
- "Description": "my network interface",
578
- "Groups": [
579
- "sg-903004f8"
580
- ],
581
- "PrivateIpAddress": "10.0.2.17",
582
- "SubnetId": "subnet-9d4a7b6c"
583
- },
584
- "output": {
585
- "NetworkInterface": {
586
- "AvailabilityZone": "us-east-1d",
587
- "Description": "my network interface",
588
- "Groups": [
589
- {
590
- "GroupId": "sg-903004f8",
591
- "GroupName": "default"
592
- }
593
- ],
594
- "MacAddress": "02:1a:80:41:52:9c",
595
- "NetworkInterfaceId": "eni-e5aa89a3",
596
- "OwnerId": "123456789012",
597
- "PrivateIpAddress": "10.0.2.17",
598
- "PrivateIpAddresses": [
599
- {
600
- "Primary": true,
601
- "PrivateIpAddress": "10.0.2.17"
602
- }
603
- ],
604
- "RequesterManaged": false,
605
- "SourceDestCheck": true,
606
- "Status": "pending",
607
- "SubnetId": "subnet-9d4a7b6c",
608
- "TagSet": [
609
-
610
- ],
611
- "VpcId": "vpc-a01106c2"
612
- }
613
- },
614
- "comments": {
615
- "input": {
616
- },
617
- "output": {
618
- }
619
- },
620
- "description": "This example creates a network interface for the specified subnet.",
621
- "id": "ec2-create-network-interface-1",
622
- "title": "To create a network interface"
623
- }
624
- ],
625
- "CreatePlacementGroup": [
626
- {
627
- "input": {
628
- "GroupName": "my-cluster",
629
- "Strategy": "cluster"
630
- },
631
- "output": {
632
- },
633
- "comments": {
634
- "input": {
635
- },
636
- "output": {
637
- }
638
- },
639
- "description": "This example creates a placement group with the specified name.",
640
- "id": "to-create-a-placement-group-1472712245768",
641
- "title": "To create a placement group"
642
- }
643
- ],
644
- "CreateRoute": [
645
- {
646
- "input": {
647
- "DestinationCidrBlock": "0.0.0.0/0",
648
- "GatewayId": "igw-c0a643a9",
649
- "RouteTableId": "rtb-22574640"
650
- },
651
- "comments": {
652
- "input": {
653
- },
654
- "output": {
655
- }
656
- },
657
- "description": "This example creates a route for the specified route table. The route matches all traffic (0.0.0.0/0) and routes it to the specified Internet gateway.",
658
- "id": "ec2-create-route-1",
659
- "title": "To create a route"
660
- }
661
- ],
662
- "CreateRouteTable": [
663
- {
664
- "input": {
665
- "VpcId": "vpc-a01106c2"
666
- },
667
- "output": {
668
- "RouteTable": {
669
- "Associations": [
670
-
671
- ],
672
- "PropagatingVgws": [
673
-
674
- ],
675
- "RouteTableId": "rtb-22574640",
676
- "Routes": [
677
- {
678
- "DestinationCidrBlock": "10.0.0.0/16",
679
- "GatewayId": "local",
680
- "State": "active"
681
- }
682
- ],
683
- "Tags": [
684
-
685
- ],
686
- "VpcId": "vpc-a01106c2"
687
- }
688
- },
689
- "comments": {
690
- "input": {
691
- },
692
- "output": {
693
- }
694
- },
695
- "description": "This example creates a route table for the specified VPC.",
696
- "id": "ec2-create-route-table-1",
697
- "title": "To create a route table"
698
- }
699
- ],
700
- "CreateSnapshot": [
701
- {
702
- "input": {
703
- "Description": "This is my root volume snapshot.",
704
- "VolumeId": "vol-1234567890abcdef0"
705
- },
706
- "output": {
707
- "Description": "This is my root volume snapshot.",
708
- "OwnerId": "012345678910",
709
- "SnapshotId": "snap-066877671789bd71b",
710
- "StartTime": "2014-02-28T21:06:01.000Z",
711
- "State": "pending",
712
- "Tags": [
713
-
714
- ],
715
- "VolumeId": "vol-1234567890abcdef0",
716
- "VolumeSize": 8
717
- },
718
- "comments": {
719
- "input": {
720
- },
721
- "output": {
722
- }
723
- },
724
- "description": "This example creates a snapshot of the volume with a volume ID of ``vol-1234567890abcdef0`` and a short description to identify the snapshot.",
725
- "id": "to-create-a-snapshot-1472502529790",
726
- "title": "To create a snapshot"
727
- }
728
- ],
729
- "CreateSpotDatafeedSubscription": [
730
- {
731
- "input": {
732
- "Bucket": "my-s3-bucket",
733
- "Prefix": "spotdata"
734
- },
735
- "output": {
736
- "SpotDatafeedSubscription": {
737
- "Bucket": "my-s3-bucket",
738
- "OwnerId": "123456789012",
739
- "Prefix": "spotdata",
740
- "State": "Active"
741
- }
742
- },
743
- "comments": {
744
- "input": {
745
- },
746
- "output": {
747
- }
748
- },
749
- "description": "This example creates a Spot Instance data feed for your AWS account.",
750
- "id": "ec2-create-spot-datafeed-subscription-1",
751
- "title": "To create a Spot Instance datafeed"
752
- }
753
- ],
754
- "CreateSubnet": [
755
- {
756
- "input": {
757
- "CidrBlock": "10.0.1.0/24",
758
- "VpcId": "vpc-a01106c2"
759
- },
760
- "output": {
761
- "Subnet": {
762
- "AvailabilityZone": "us-west-2c",
763
- "AvailableIpAddressCount": 251,
764
- "CidrBlock": "10.0.1.0/24",
765
- "State": "pending",
766
- "SubnetId": "subnet-9d4a7b6c",
767
- "VpcId": "vpc-a01106c2"
768
- }
769
- },
770
- "comments": {
771
- "input": {
772
- },
773
- "output": {
774
- }
775
- },
776
- "description": "This example creates a subnet in the specified VPC with the specified CIDR block. We recommend that you let us select an Availability Zone for you.",
777
- "id": "ec2-create-subnet-1",
778
- "title": "To create a subnet"
779
- }
780
- ],
781
- "CreateTags": [
782
- {
783
- "input": {
784
- "Resources": [
785
- "ami-78a54011"
786
- ],
787
- "Tags": [
788
- {
789
- "Key": "Stack",
790
- "Value": "production"
791
- }
792
- ]
793
- },
794
- "comments": {
795
- "input": {
796
- },
797
- "output": {
798
- }
799
- },
800
- "description": "This example adds the tag Stack=production to the specified image, or overwrites an existing tag for the AMI where the tag key is Stack.",
801
- "id": "ec2-create-tags-1",
802
- "title": "To add a tag to a resource"
803
- }
804
- ],
805
- "CreateVolume": [
806
- {
807
- "input": {
808
- "AvailabilityZone": "us-east-1a",
809
- "Size": 80,
810
- "VolumeType": "gp2"
811
- },
812
- "output": {
813
- "AvailabilityZone": "us-east-1a",
814
- "CreateTime": "2016-08-29T18:52:32.724Z",
815
- "Encrypted": false,
816
- "Iops": 240,
817
- "Size": 80,
818
- "SnapshotId": "",
819
- "State": "creating",
820
- "VolumeId": "vol-6b60b7c7",
821
- "VolumeType": "gp2"
822
- },
823
- "comments": {
824
- "input": {
825
- },
826
- "output": {
827
- }
828
- },
829
- "description": "This example creates an 80 GiB General Purpose (SSD) volume in the Availability Zone ``us-east-1a``.",
830
- "id": "to-create-a-new-volume-1472496724296",
831
- "title": "To create a new volume"
832
- },
833
- {
834
- "input": {
835
- "AvailabilityZone": "us-east-1a",
836
- "Iops": 1000,
837
- "SnapshotId": "snap-066877671789bd71b",
838
- "VolumeType": "io1"
839
- },
840
- "output": {
841
- "Attachments": [
842
-
843
- ],
844
- "AvailabilityZone": "us-east-1a",
845
- "CreateTime": "2016-08-29T18:52:32.724Z",
846
- "Iops": 1000,
847
- "Size": 500,
848
- "SnapshotId": "snap-066877671789bd71b",
849
- "State": "creating",
850
- "Tags": [
851
-
852
- ],
853
- "VolumeId": "vol-1234567890abcdef0",
854
- "VolumeType": "io1"
855
- },
856
- "comments": {
857
- "input": {
858
- },
859
- "output": {
860
- }
861
- },
862
- "description": "This example creates a new Provisioned IOPS (SSD) volume with 1000 provisioned IOPS from a snapshot in the Availability Zone ``us-east-1a``.",
863
- "id": "to-create-a-new-provisioned-iops-ssd-volume-from-a-snapshot-1472498975176",
864
- "title": "To create a new Provisioned IOPS (SSD) volume from a snapshot"
865
- }
866
- ],
867
- "CreateVpc": [
868
- {
869
- "input": {
870
- "CidrBlock": "10.0.0.0/16"
871
- },
872
- "output": {
873
- "Vpc": {
874
- "CidrBlock": "10.0.0.0/16",
875
- "DhcpOptionsId": "dopt-7a8b9c2d",
876
- "InstanceTenancy": "default",
877
- "State": "pending",
878
- "VpcId": "vpc-a01106c2"
879
- }
880
- },
881
- "comments": {
882
- "input": {
883
- },
884
- "output": {
885
- }
886
- },
887
- "description": "This example creates a VPC with the specified CIDR block.",
888
- "id": "ec2-create-vpc-1",
889
- "title": "To create a VPC"
890
- }
891
- ],
892
- "DeleteCustomerGateway": [
893
- {
894
- "input": {
895
- "CustomerGatewayId": "cgw-0e11f167"
896
- },
897
- "comments": {
898
- "input": {
899
- },
900
- "output": {
901
- }
902
- },
903
- "description": "This example deletes the specified customer gateway.",
904
- "id": "ec2-delete-customer-gateway-1",
905
- "title": "To delete a customer gateway"
906
- }
907
- ],
908
- "DeleteDhcpOptions": [
909
- {
910
- "input": {
911
- "DhcpOptionsId": "dopt-d9070ebb"
912
- },
913
- "comments": {
914
- "input": {
915
- },
916
- "output": {
917
- }
918
- },
919
- "description": "This example deletes the specified DHCP options set.",
920
- "id": "ec2-delete-dhcp-options-1",
921
- "title": "To delete a DHCP options set"
922
- }
923
- ],
924
- "DeleteInternetGateway": [
925
- {
926
- "input": {
927
- "InternetGatewayId": "igw-c0a643a9"
928
- },
929
- "comments": {
930
- "input": {
931
- },
932
- "output": {
933
- }
934
- },
935
- "description": "This example deletes the specified Internet gateway.",
936
- "id": "ec2-delete-internet-gateway-1",
937
- "title": "To delete an Internet gateway"
938
- }
939
- ],
940
- "DeleteKeyPair": [
941
- {
942
- "input": {
943
- "KeyName": "my-key-pair"
944
- },
945
- "comments": {
946
- "input": {
947
- },
948
- "output": {
949
- }
950
- },
951
- "description": "This example deletes the specified key pair.",
952
- "id": "ec2-delete-key-pair-1",
953
- "title": "To delete a key pair"
954
- }
955
- ],
956
- "DeleteNatGateway": [
957
- {
958
- "input": {
959
- "NatGatewayId": "nat-04ae55e711cec5680"
960
- },
961
- "output": {
962
- "NatGatewayId": "nat-04ae55e711cec5680"
963
- },
964
- "comments": {
965
- "input": {
966
- },
967
- "output": {
968
- }
969
- },
970
- "description": "This example deletes the specified NAT gateway.",
971
- "id": "ec2-delete-nat-gateway-1",
972
- "title": "To delete a NAT gateway"
973
- }
974
- ],
975
- "DeleteNetworkAcl": [
976
- {
977
- "input": {
978
- "NetworkAclId": "acl-5fb85d36"
979
- },
980
- "comments": {
981
- "input": {
982
- },
983
- "output": {
984
- }
985
- },
986
- "description": "This example deletes the specified network ACL.",
987
- "id": "ec2-delete-network-acl-1",
988
- "title": "To delete a network ACL"
989
- }
990
- ],
991
- "DeleteNetworkAclEntry": [
992
- {
993
- "input": {
994
- "Egress": true,
995
- "NetworkAclId": "acl-5fb85d36",
996
- "RuleNumber": 100
997
- },
998
- "comments": {
999
- "input": {
1000
- },
1001
- "output": {
1002
- }
1003
- },
1004
- "description": "This example deletes ingress rule number 100 from the specified network ACL.",
1005
- "id": "ec2-delete-network-acl-entry-1",
1006
- "title": "To delete a network ACL entry"
1007
- }
1008
- ],
1009
- "DeleteNetworkInterface": [
1010
- {
1011
- "input": {
1012
- "NetworkInterfaceId": "eni-e5aa89a3"
1013
- },
1014
- "comments": {
1015
- "input": {
1016
- },
1017
- "output": {
1018
- }
1019
- },
1020
- "description": "This example deletes the specified network interface.",
1021
- "id": "ec2-delete-network-interface-1",
1022
- "title": "To delete a network interface"
1023
- }
1024
- ],
1025
- "DeletePlacementGroup": [
1026
- {
1027
- "input": {
1028
- "GroupName": "my-cluster"
1029
- },
1030
- "output": {
1031
- },
1032
- "comments": {
1033
- "input": {
1034
- },
1035
- "output": {
1036
- }
1037
- },
1038
- "description": "This example deletes the specified placement group.\n",
1039
- "id": "to-delete-a-placement-group-1472712349959",
1040
- "title": "To delete a placement group"
1041
- }
1042
- ],
1043
- "DeleteRoute": [
1044
- {
1045
- "input": {
1046
- "DestinationCidrBlock": "0.0.0.0/0",
1047
- "RouteTableId": "rtb-22574640"
1048
- },
1049
- "comments": {
1050
- "input": {
1051
- },
1052
- "output": {
1053
- }
1054
- },
1055
- "description": "This example deletes the specified route from the specified route table.",
1056
- "id": "ec2-delete-route-1",
1057
- "title": "To delete a route"
1058
- }
1059
- ],
1060
- "DeleteRouteTable": [
1061
- {
1062
- "input": {
1063
- "RouteTableId": "rtb-22574640"
1064
- },
1065
- "comments": {
1066
- "input": {
1067
- },
1068
- "output": {
1069
- }
1070
- },
1071
- "description": "This example deletes the specified route table.",
1072
- "id": "ec2-delete-route-table-1",
1073
- "title": "To delete a route table"
1074
- }
1075
- ],
1076
- "DeleteSnapshot": [
1077
- {
1078
- "input": {
1079
- "SnapshotId": "snap-1234567890abcdef0"
1080
- },
1081
- "output": {
1082
- },
1083
- "comments": {
1084
- "input": {
1085
- },
1086
- "output": {
1087
- }
1088
- },
1089
- "description": "This example deletes a snapshot with the snapshot ID of ``snap-1234567890abcdef0``. If the command succeeds, no output is returned.",
1090
- "id": "to-delete-a-snapshot-1472503042567",
1091
- "title": "To delete a snapshot"
1092
- }
1093
- ],
1094
- "DeleteSpotDatafeedSubscription": [
1095
- {
1096
- "comments": {
1097
- "input": {
1098
- },
1099
- "output": {
1100
- }
1101
- },
1102
- "description": "This example deletes a Spot data feed subscription for the account.",
1103
- "id": "ec2-delete-spot-datafeed-subscription-1",
1104
- "title": "To cancel a Spot Instance data feed subscription"
1105
- }
1106
- ],
1107
- "DeleteSubnet": [
1108
- {
1109
- "input": {
1110
- "SubnetId": "subnet-9d4a7b6c"
1111
- },
1112
- "comments": {
1113
- "input": {
1114
- },
1115
- "output": {
1116
- }
1117
- },
1118
- "description": "This example deletes the specified subnet.",
1119
- "id": "ec2-delete-subnet-1",
1120
- "title": "To delete a subnet"
1121
- }
1122
- ],
1123
- "DeleteTags": [
1124
- {
1125
- "input": {
1126
- "Resources": [
1127
- "ami-78a54011"
1128
- ],
1129
- "Tags": [
1130
- {
1131
- "Key": "Stack",
1132
- "Value": "test"
1133
- }
1134
- ]
1135
- },
1136
- "comments": {
1137
- "input": {
1138
- },
1139
- "output": {
1140
- }
1141
- },
1142
- "description": "This example deletes the tag Stack=test from the specified image.",
1143
- "id": "ec2-delete-tags-1",
1144
- "title": "To delete a tag from a resource"
1145
- }
1146
- ],
1147
- "DeleteVolume": [
1148
- {
1149
- "input": {
1150
- "VolumeId": "vol-049df61146c4d7901"
1151
- },
1152
- "output": {
1153
- },
1154
- "comments": {
1155
- "input": {
1156
- },
1157
- "output": {
1158
- }
1159
- },
1160
- "description": "This example deletes an available volume with the volume ID of ``vol-049df61146c4d7901``. If the command succeeds, no output is returned.",
1161
- "id": "to-delete-a-volume-1472503111160",
1162
- "title": "To delete a volume"
1163
- }
1164
- ],
1165
- "DeleteVpc": [
1166
- {
1167
- "input": {
1168
- "VpcId": "vpc-a01106c2"
1169
- },
1170
- "comments": {
1171
- "input": {
1172
- },
1173
- "output": {
1174
- }
1175
- },
1176
- "description": "This example deletes the specified VPC.",
1177
- "id": "ec2-delete-vpc-1",
1178
- "title": "To delete a VPC"
1179
- }
1180
- ],
1181
- "DescribeAccountAttributes": [
1182
- {
1183
- "input": {
1184
- "AttributeNames": [
1185
- "supported-platforms"
1186
- ]
1187
- },
1188
- "output": {
1189
- "AccountAttributes": [
1190
- {
1191
- "AttributeName": "supported-platforms",
1192
- "AttributeValues": [
1193
- {
1194
- "AttributeValue": "EC2"
1195
- },
1196
- {
1197
- "AttributeValue": "VPC"
1198
- }
1199
- ]
1200
- }
1201
- ]
1202
- },
1203
- "comments": {
1204
- "input": {
1205
- },
1206
- "output": {
1207
- }
1208
- },
1209
- "description": "This example describes the supported-platforms attribute for your AWS account.",
1210
- "id": "ec2-describe-account-attributes-1",
1211
- "title": "To describe a single attribute for your AWS account"
1212
- },
1213
- {
1214
- "output": {
1215
- "AccountAttributes": [
1216
- {
1217
- "AttributeName": "supported-platforms",
1218
- "AttributeValues": [
1219
- {
1220
- "AttributeValue": "EC2"
1221
- },
1222
- {
1223
- "AttributeValue": "VPC"
1224
- }
1225
- ]
1226
- },
1227
- {
1228
- "AttributeName": "vpc-max-security-groups-per-interface",
1229
- "AttributeValues": [
1230
- {
1231
- "AttributeValue": "5"
1232
- }
1233
- ]
1234
- },
1235
- {
1236
- "AttributeName": "max-elastic-ips",
1237
- "AttributeValues": [
1238
- {
1239
- "AttributeValue": "5"
1240
- }
1241
- ]
1242
- },
1243
- {
1244
- "AttributeName": "max-instances",
1245
- "AttributeValues": [
1246
- {
1247
- "AttributeValue": "20"
1248
- }
1249
- ]
1250
- },
1251
- {
1252
- "AttributeName": "vpc-max-elastic-ips",
1253
- "AttributeValues": [
1254
- {
1255
- "AttributeValue": "5"
1256
- }
1257
- ]
1258
- },
1259
- {
1260
- "AttributeName": "default-vpc",
1261
- "AttributeValues": [
1262
- {
1263
- "AttributeValue": "none"
1264
- }
1265
- ]
1266
- }
1267
- ]
1268
- },
1269
- "comments": {
1270
- "input": {
1271
- },
1272
- "output": {
1273
- }
1274
- },
1275
- "description": "This example describes the attributes for your AWS account.",
1276
- "id": "ec2-describe-account-attributes-2",
1277
- "title": "To describe all attributes for your AWS account"
1278
- }
1279
- ],
1280
- "DescribeAddresses": [
1281
- {
1282
- "output": {
1283
- "Addresses": [
1284
- {
1285
- "Domain": "standard",
1286
- "InstanceId": "i-1234567890abcdef0",
1287
- "PublicIp": "198.51.100.0"
1288
- },
1289
- {
1290
- "AllocationId": "eipalloc-12345678",
1291
- "AssociationId": "eipassoc-12345678",
1292
- "Domain": "vpc",
1293
- "InstanceId": "i-1234567890abcdef0",
1294
- "NetworkInterfaceId": "eni-12345678",
1295
- "NetworkInterfaceOwnerId": "123456789012",
1296
- "PrivateIpAddress": "10.0.1.241",
1297
- "PublicIp": "203.0.113.0"
1298
- }
1299
- ]
1300
- },
1301
- "comments": {
1302
- "input": {
1303
- },
1304
- "output": {
1305
- }
1306
- },
1307
- "description": "This example describes your Elastic IP addresses.",
1308
- "id": "ec2-describe-addresses-1",
1309
- "title": "To describe your Elastic IP addresses"
1310
- },
1311
- {
1312
- "input": {
1313
- "Filters": [
1314
- {
1315
- "Name": "domain",
1316
- "Values": [
1317
- "vpc"
1318
- ]
1319
- }
1320
- ]
1321
- },
1322
- "output": {
1323
- "Addresses": [
1324
- {
1325
- "AllocationId": "eipalloc-12345678",
1326
- "AssociationId": "eipassoc-12345678",
1327
- "Domain": "vpc",
1328
- "InstanceId": "i-1234567890abcdef0",
1329
- "NetworkInterfaceId": "eni-12345678",
1330
- "NetworkInterfaceOwnerId": "123456789012",
1331
- "PrivateIpAddress": "10.0.1.241",
1332
- "PublicIp": "203.0.113.0"
1333
- }
1334
- ]
1335
- },
1336
- "comments": {
1337
- "input": {
1338
- },
1339
- "output": {
1340
- }
1341
- },
1342
- "description": "This example describes your Elastic IP addresses for use with instances in a VPC.",
1343
- "id": "ec2-describe-addresses-2",
1344
- "title": "To describe your Elastic IP addresses for EC2-VPC"
1345
- },
1346
- {
1347
- "input": {
1348
- "Filters": [
1349
- {
1350
- "Name": "domain",
1351
- "Values": [
1352
- "standard"
1353
- ]
1354
- }
1355
- ]
1356
- },
1357
- "output": {
1358
- "Addresses": [
1359
- {
1360
- "Domain": "standard",
1361
- "InstanceId": "i-1234567890abcdef0",
1362
- "PublicIp": "198.51.100.0"
1363
- }
1364
- ]
1365
- },
1366
- "comments": {
1367
- "input": {
1368
- },
1369
- "output": {
1370
- }
1371
- },
1372
- "description": "This example describes your Elastic IP addresses for use with instances in EC2-Classic.",
1373
- "id": "ec2-describe-addresses-3",
1374
- "title": "To describe your Elastic IP addresses for EC2-Classic"
1375
- }
1376
- ],
1377
- "DescribeAvailabilityZones": [
1378
- {
1379
- "output": {
1380
- "AvailabilityZones": [
1381
- {
1382
- "Messages": [
1383
-
1384
- ],
1385
- "RegionName": "us-east-1",
1386
- "State": "available",
1387
- "ZoneName": "us-east-1b"
1388
- },
1389
- {
1390
- "Messages": [
1391
-
1392
- ],
1393
- "RegionName": "us-east-1",
1394
- "State": "available",
1395
- "ZoneName": "us-east-1c"
1396
- },
1397
- {
1398
- "Messages": [
1399
-
1400
- ],
1401
- "RegionName": "us-east-1",
1402
- "State": "available",
1403
- "ZoneName": "us-east-1d"
1404
- },
1405
- {
1406
- "Messages": [
1407
-
1408
- ],
1409
- "RegionName": "us-east-1",
1410
- "State": "available",
1411
- "ZoneName": "us-east-1e"
1412
- }
1413
- ]
1414
- },
1415
- "comments": {
1416
- "input": {
1417
- },
1418
- "output": {
1419
- }
1420
- },
1421
- "description": "This example describes the Availability Zones that are available to you. The response includes Availability Zones only for the current region.",
1422
- "id": "ec2-describe-availability-zones-1",
1423
- "title": "To describe your Availability Zones"
1424
- }
1425
- ],
1426
- "DescribeCustomerGateways": [
1427
- {
1428
- "input": {
1429
- "CustomerGatewayIds": [
1430
- "cgw-0e11f167"
1431
- ]
1432
- },
1433
- "output": {
1434
- "CustomerGateways": [
1435
- {
1436
- "BgpAsn": "65534",
1437
- "CustomerGatewayId": "cgw-0e11f167",
1438
- "IpAddress": "12.1.2.3",
1439
- "State": "available",
1440
- "Type": "ipsec.1"
1441
- }
1442
- ]
1443
- },
1444
- "comments": {
1445
- "input": {
1446
- },
1447
- "output": {
1448
- }
1449
- },
1450
- "description": "This example describes the specified customer gateway.",
1451
- "id": "ec2-describe-customer-gateways-1",
1452
- "title": "To describe a customer gateway"
1453
- }
1454
- ],
1455
- "DescribeDhcpOptions": [
1456
- {
1457
- "input": {
1458
- "DhcpOptionsIds": [
1459
- "dopt-d9070ebb"
1460
- ]
1461
- },
1462
- "output": {
1463
- "DhcpOptions": [
1464
- {
1465
- "DhcpConfigurations": [
1466
- {
1467
- "Key": "domain-name-servers",
1468
- "Values": [
1469
- {
1470
- "Value": "10.2.5.2"
1471
- },
1472
- {
1473
- "Value": "10.2.5.1"
1474
- }
1475
- ]
1476
- }
1477
- ],
1478
- "DhcpOptionsId": "dopt-d9070ebb"
1479
- }
1480
- ]
1481
- },
1482
- "comments": {
1483
- "input": {
1484
- },
1485
- "output": {
1486
- }
1487
- },
1488
- "description": "This example describes the specified DHCP options set.",
1489
- "id": "ec2-describe-dhcp-options-1",
1490
- "title": "To describe a DHCP options set"
1491
- }
1492
- ],
1493
- "DescribeInstanceAttribute": [
1494
- {
1495
- "input": {
1496
- "Attribute": "instanceType",
1497
- "InstanceId": "i-1234567890abcdef0"
1498
- },
1499
- "output": {
1500
- "InstanceId": "i-1234567890abcdef0",
1501
- "InstanceType": {
1502
- "Value": "t1.micro"
1503
- }
1504
- },
1505
- "comments": {
1506
- "input": {
1507
- },
1508
- "output": {
1509
- }
1510
- },
1511
- "description": "This example describes the instance type of the specified instance.\n",
1512
- "id": "to-describe-the-instance-type-1472712432132",
1513
- "title": "To describe the instance type"
1514
- },
1515
- {
1516
- "input": {
1517
- "Attribute": "disableApiTermination",
1518
- "InstanceId": "i-1234567890abcdef0"
1519
- },
1520
- "output": {
1521
- "DisableApiTermination": {
1522
- "Value": "false"
1523
- },
1524
- "InstanceId": "i-1234567890abcdef0"
1525
- },
1526
- "comments": {
1527
- "input": {
1528
- },
1529
- "output": {
1530
- }
1531
- },
1532
- "description": "This example describes the ``disableApiTermination`` attribute of the specified instance.\n",
1533
- "id": "to-describe-the-disableapitermination-attribute-1472712533466",
1534
- "title": "To describe the disableApiTermination attribute"
1535
- },
1536
- {
1537
- "input": {
1538
- "Attribute": "blockDeviceMapping",
1539
- "InstanceId": "i-1234567890abcdef0"
1540
- },
1541
- "output": {
1542
- "BlockDeviceMappings": [
1543
- {
1544
- "DeviceName": "/dev/sda1",
1545
- "Ebs": {
1546
- "AttachTime": "2013-05-17T22:42:34.000Z",
1547
- "DeleteOnTermination": true,
1548
- "Status": "attached",
1549
- "VolumeId": "vol-049df61146c4d7901"
1550
- }
1551
- },
1552
- {
1553
- "DeviceName": "/dev/sdf",
1554
- "Ebs": {
1555
- "AttachTime": "2013-09-10T23:07:00.000Z",
1556
- "DeleteOnTermination": false,
1557
- "Status": "attached",
1558
- "VolumeId": "vol-049df61146c4d7901"
1559
- }
1560
- }
1561
- ],
1562
- "InstanceId": "i-1234567890abcdef0"
1563
- },
1564
- "comments": {
1565
- "input": {
1566
- },
1567
- "output": {
1568
- }
1569
- },
1570
- "description": "This example describes the ``blockDeviceMapping`` attribute of the specified instance.\n",
1571
- "id": "to-describe-the-block-device-mapping-for-an-instance-1472712645423",
1572
- "title": "To describe the block device mapping for an instance"
1573
- }
1574
- ],
1575
- "DescribeInternetGateways": [
1576
- {
1577
- "input": {
1578
- "Filters": [
1579
- {
1580
- "Name": "attachment.vpc-id",
1581
- "Values": [
1582
- "vpc-a01106c2"
1583
- ]
1584
- }
1585
- ]
1586
- },
1587
- "output": {
1588
- "InternetGateways": [
1589
- {
1590
- "Attachments": [
1591
- {
1592
- "State": "available",
1593
- "VpcId": "vpc-a01106c2"
1594
- }
1595
- ],
1596
- "InternetGatewayId": "igw-c0a643a9",
1597
- "Tags": [
1598
-
1599
- ]
1600
- }
1601
- ]
1602
- },
1603
- "comments": {
1604
- "input": {
1605
- },
1606
- "output": {
1607
- }
1608
- },
1609
- "description": "This example describes the Internet gateway for the specified VPC.",
1610
- "id": "ec2-describe-internet-gateways-1",
1611
- "title": "To describe the Internet gateway for a VPC"
1612
- }
1613
- ],
1614
- "DescribeKeyPairs": [
1615
- {
1616
- "input": {
1617
- "KeyNames": [
1618
- "my-key-pair"
1619
- ]
1620
- },
1621
- "output": {
1622
- "KeyPairs": [
1623
- {
1624
- "KeyFingerprint": "1f:51:ae:28:bf:89:e9:d8:1f:25:5d:37:2d:7d:b8:ca:9f:f5:f1:6f",
1625
- "KeyName": "my-key-pair"
1626
- }
1627
- ]
1628
- },
1629
- "comments": {
1630
- "input": {
1631
- },
1632
- "output": {
1633
- }
1634
- },
1635
- "description": "This example displays the fingerprint for the specified key.",
1636
- "id": "ec2-describe-key-pairs-1",
1637
- "title": "To display a key pair"
1638
- }
1639
- ],
1640
- "DescribeMovingAddresses": [
1641
- {
1642
- "output": {
1643
- "MovingAddressStatuses": [
1644
- {
1645
- "MoveStatus": "MovingToVpc",
1646
- "PublicIp": "198.51.100.0"
1647
- }
1648
- ]
1649
- },
1650
- "comments": {
1651
- "input": {
1652
- },
1653
- "output": {
1654
- }
1655
- },
1656
- "description": "This example describes all of your moving Elastic IP addresses.",
1657
- "id": "ec2-describe-moving-addresses-1",
1658
- "title": "To describe your moving addresses"
1659
- }
1660
- ],
1661
- "DescribeNatGateways": [
1662
- {
1663
- "input": {
1664
- "Filter": [
1665
- {
1666
- "Name": "vpc-id",
1667
- "Values": [
1668
- "vpc-1a2b3c4d"
1669
- ]
1670
- }
1671
- ]
1672
- },
1673
- "output": {
1674
- "NatGateways": [
1675
- {
1676
- "CreateTime": "2015-12-01T12:26:55.983Z",
1677
- "NatGatewayAddresses": [
1678
- {
1679
- "AllocationId": "eipalloc-89c620ec",
1680
- "NetworkInterfaceId": "eni-9dec76cd",
1681
- "PrivateIp": "10.0.0.149",
1682
- "PublicIp": "198.11.222.333"
1683
- }
1684
- ],
1685
- "NatGatewayId": "nat-05dba92075d71c408",
1686
- "State": "available",
1687
- "SubnetId": "subnet-847e4dc2",
1688
- "VpcId": "vpc-1a2b3c4d"
1689
- }
1690
- ]
1691
- },
1692
- "comments": {
1693
- "input": {
1694
- },
1695
- "output": {
1696
- }
1697
- },
1698
- "description": "This example describes the NAT gateway for the specified VPC.",
1699
- "id": "ec2-describe-nat-gateways-1",
1700
- "title": "To describe a NAT gateway"
1701
- }
1702
- ],
1703
- "DescribeNetworkAcls": [
1704
- {
1705
- "input": {
1706
- "NetworkAclIds": [
1707
- "acl-5fb85d36"
1708
- ]
1709
- },
1710
- "output": {
1711
- "NetworkAcls": [
1712
- {
1713
- "Associations": [
1714
- {
1715
- "NetworkAclAssociationId": "aclassoc-66ea5f0b",
1716
- "NetworkAclId": "acl-9aeb5ef7",
1717
- "SubnetId": "subnet-65ea5f08"
1718
- }
1719
- ],
1720
- "Entries": [
1721
- {
1722
- "CidrBlock": "0.0.0.0/0",
1723
- "Egress": true,
1724
- "Protocol": "-1",
1725
- "RuleAction": "deny",
1726
- "RuleNumber": 32767
1727
- },
1728
- {
1729
- "CidrBlock": "0.0.0.0/0",
1730
- "Egress": false,
1731
- "Protocol": "-1",
1732
- "RuleAction": "deny",
1733
- "RuleNumber": 32767
1734
- }
1735
- ],
1736
- "IsDefault": false,
1737
- "NetworkAclId": "acl-5fb85d36",
1738
- "Tags": [
1739
-
1740
- ],
1741
- "VpcId": "vpc-a01106c2"
1742
- }
1743
- ]
1744
- },
1745
- "comments": {
1746
- "input": {
1747
- },
1748
- "output": {
1749
- }
1750
- },
1751
- "description": "This example describes the specified network ACL.",
1752
- "id": "ec2-",
1753
- "title": "To describe a network ACL"
1754
- }
1755
- ],
1756
- "DescribeNetworkInterfaceAttribute": [
1757
- {
1758
- "input": {
1759
- "Attribute": "attachment",
1760
- "NetworkInterfaceId": "eni-686ea200"
1761
- },
1762
- "output": {
1763
- "Attachment": {
1764
- "AttachTime": "2015-05-21T20:02:20.000Z",
1765
- "AttachmentId": "eni-attach-43348162",
1766
- "DeleteOnTermination": true,
1767
- "DeviceIndex": 0,
1768
- "InstanceId": "i-1234567890abcdef0",
1769
- "InstanceOwnerId": "123456789012",
1770
- "Status": "attached"
1771
- },
1772
- "NetworkInterfaceId": "eni-686ea200"
1773
- },
1774
- "comments": {
1775
- "input": {
1776
- },
1777
- "output": {
1778
- }
1779
- },
1780
- "description": "This example describes the attachment attribute of the specified network interface.",
1781
- "id": "ec2-describe-network-interface-attribute-1",
1782
- "title": "To describe the attachment attribute of a network interface"
1783
- },
1784
- {
1785
- "input": {
1786
- "Attribute": "description",
1787
- "NetworkInterfaceId": "eni-686ea200"
1788
- },
1789
- "output": {
1790
- "Description": {
1791
- "Value": "My description"
1792
- },
1793
- "NetworkInterfaceId": "eni-686ea200"
1794
- },
1795
- "comments": {
1796
- "input": {
1797
- },
1798
- "output": {
1799
- }
1800
- },
1801
- "description": "This example describes the description attribute of the specified network interface.",
1802
- "id": "ec2-describe-network-interface-attribute-2",
1803
- "title": "To describe the description attribute of a network interface"
1804
- },
1805
- {
1806
- "input": {
1807
- "Attribute": "groupSet",
1808
- "NetworkInterfaceId": "eni-686ea200"
1809
- },
1810
- "output": {
1811
- "Groups": [
1812
- {
1813
- "GroupId": "sg-903004f8",
1814
- "GroupName": "my-security-group"
1815
- }
1816
- ],
1817
- "NetworkInterfaceId": "eni-686ea200"
1818
- },
1819
- "comments": {
1820
- "input": {
1821
- },
1822
- "output": {
1823
- }
1824
- },
1825
- "description": "This example describes the groupSet attribute of the specified network interface.",
1826
- "id": "ec2-describe-network-interface-attribute-3",
1827
- "title": "To describe the groupSet attribute of a network interface"
1828
- },
1829
- {
1830
- "input": {
1831
- "Attribute": "sourceDestCheck",
1832
- "NetworkInterfaceId": "eni-686ea200"
1833
- },
1834
- "output": {
1835
- "NetworkInterfaceId": "eni-686ea200",
1836
- "SourceDestCheck": {
1837
- "Value": true
1838
- }
1839
- },
1840
- "comments": {
1841
- "input": {
1842
- },
1843
- "output": {
1844
- }
1845
- },
1846
- "description": "This example describes the sourceDestCheck attribute of the specified network interface.",
1847
- "id": "ec2-describe-network-interface-attribute-4",
1848
- "title": "To describe the sourceDestCheck attribute of a network interface"
1849
- }
1850
- ],
1851
- "DescribeNetworkInterfaces": [
1852
- {
1853
- "input": {
1854
- "NetworkInterfaceIds": [
1855
- "eni-e5aa89a3"
1856
- ]
1857
- },
1858
- "output": {
1859
- "NetworkInterfaces": [
1860
- {
1861
- "Association": {
1862
- "AssociationId": "eipassoc-0fbb766a",
1863
- "IpOwnerId": "123456789012",
1864
- "PublicDnsName": "ec2-203-0-113-12.compute-1.amazonaws.com",
1865
- "PublicIp": "203.0.113.12"
1866
- },
1867
- "Attachment": {
1868
- "AttachTime": "2013-11-30T23:36:42.000Z",
1869
- "AttachmentId": "eni-attach-66c4350a",
1870
- "DeleteOnTermination": false,
1871
- "DeviceIndex": 1,
1872
- "InstanceId": "i-1234567890abcdef0",
1873
- "InstanceOwnerId": "123456789012",
1874
- "Status": "attached"
1875
- },
1876
- "AvailabilityZone": "us-east-1d",
1877
- "Description": "my network interface",
1878
- "Groups": [
1879
- {
1880
- "GroupId": "sg-8637d3e3",
1881
- "GroupName": "default"
1882
- }
1883
- ],
1884
- "MacAddress": "02:2f:8f:b0:cf:75",
1885
- "NetworkInterfaceId": "eni-e5aa89a3",
1886
- "OwnerId": "123456789012",
1887
- "PrivateDnsName": "ip-10-0-1-17.ec2.internal",
1888
- "PrivateIpAddress": "10.0.1.17",
1889
- "PrivateIpAddresses": [
1890
- {
1891
- "Association": {
1892
- "AssociationId": "eipassoc-0fbb766a",
1893
- "IpOwnerId": "123456789012",
1894
- "PublicDnsName": "ec2-203-0-113-12.compute-1.amazonaws.com",
1895
- "PublicIp": "203.0.113.12"
1896
- },
1897
- "Primary": true,
1898
- "PrivateDnsName": "ip-10-0-1-17.ec2.internal",
1899
- "PrivateIpAddress": "10.0.1.17"
1900
- }
1901
- ],
1902
- "RequesterManaged": false,
1903
- "SourceDestCheck": true,
1904
- "Status": "in-use",
1905
- "SubnetId": "subnet-b61f49f0",
1906
- "TagSet": [
1907
-
1908
- ],
1909
- "VpcId": "vpc-a01106c2"
1910
- }
1911
- ]
1912
- },
1913
- "comments": {
1914
- "input": {
1915
- },
1916
- "output": {
1917
- }
1918
- },
1919
- "description": "",
1920
- "id": "ec2-describe-network-interfaces-1",
1921
- "title": "To describe a network interface"
1922
- }
1923
- ],
1924
- "DescribeRegions": [
1925
- {
1926
- "output": {
1927
- "Regions": [
1928
- {
1929
- "Endpoint": "ec2.ap-south-1.amazonaws.com",
1930
- "RegionName": "ap-south-1"
1931
- },
1932
- {
1933
- "Endpoint": "ec2.eu-west-1.amazonaws.com",
1934
- "RegionName": "eu-west-1"
1935
- },
1936
- {
1937
- "Endpoint": "ec2.ap-southeast-1.amazonaws.com",
1938
- "RegionName": "ap-southeast-1"
1939
- },
1940
- {
1941
- "Endpoint": "ec2.ap-southeast-2.amazonaws.com",
1942
- "RegionName": "ap-southeast-2"
1943
- },
1944
- {
1945
- "Endpoint": "ec2.eu-central-1.amazonaws.com",
1946
- "RegionName": "eu-central-1"
1947
- },
1948
- {
1949
- "Endpoint": "ec2.ap-northeast-2.amazonaws.com",
1950
- "RegionName": "ap-northeast-2"
1951
- },
1952
- {
1953
- "Endpoint": "ec2.ap-northeast-1.amazonaws.com",
1954
- "RegionName": "ap-northeast-1"
1955
- },
1956
- {
1957
- "Endpoint": "ec2.us-east-1.amazonaws.com",
1958
- "RegionName": "us-east-1"
1959
- },
1960
- {
1961
- "Endpoint": "ec2.sa-east-1.amazonaws.com",
1962
- "RegionName": "sa-east-1"
1963
- },
1964
- {
1965
- "Endpoint": "ec2.us-west-1.amazonaws.com",
1966
- "RegionName": "us-west-1"
1967
- },
1968
- {
1969
- "Endpoint": "ec2.us-west-2.amazonaws.com",
1970
- "RegionName": "us-west-2"
1971
- }
1972
- ]
1973
- },
1974
- "comments": {
1975
- "input": {
1976
- },
1977
- "output": {
1978
- }
1979
- },
1980
- "description": "This example describes all the regions that are available to you.",
1981
- "id": "ec2-describe-regions-1",
1982
- "title": "To describe your regions"
1983
- }
1984
- ],
1985
- "DescribeRouteTables": [
1986
- {
1987
- "input": {
1988
- "RouteTableIds": [
1989
- "rtb-1f382e7d"
1990
- ]
1991
- },
1992
- "output": {
1993
- "RouteTables": [
1994
- {
1995
- "Associations": [
1996
- {
1997
- "Main": true,
1998
- "RouteTableAssociationId": "rtbassoc-d8ccddba",
1999
- "RouteTableId": "rtb-1f382e7d"
2000
- }
2001
- ],
2002
- "PropagatingVgws": [
2003
-
2004
- ],
2005
- "RouteTableId": "rtb-1f382e7d",
2006
- "Routes": [
2007
- {
2008
- "DestinationCidrBlock": "10.0.0.0/16",
2009
- "GatewayId": "local",
2010
- "State": "active"
2011
- }
2012
- ],
2013
- "Tags": [
2014
-
2015
- ],
2016
- "VpcId": "vpc-a01106c2"
2017
- }
2018
- ]
2019
- },
2020
- "comments": {
2021
- "input": {
2022
- },
2023
- "output": {
2024
- }
2025
- },
2026
- "description": "This example describes the specified route table.",
2027
- "id": "ec2-describe-route-tables-1",
2028
- "title": "To describe a route table"
2029
- }
2030
- ],
2031
- "DescribeScheduledInstanceAvailability": [
2032
- {
2033
- "input": {
2034
- "FirstSlotStartTimeRange": {
2035
- "EarliestTime": "2016-01-31T00:00:00Z",
2036
- "LatestTime": "2016-01-31T04:00:00Z"
2037
- },
2038
- "Recurrence": {
2039
- "Frequency": "Weekly",
2040
- "Interval": 1,
2041
- "OccurrenceDays": [
2042
- 1
2043
- ]
2044
- }
2045
- },
2046
- "output": {
2047
- "ScheduledInstanceAvailabilitySet": [
2048
- {
2049
- "AvailabilityZone": "us-west-2b",
2050
- "AvailableInstanceCount": 20,
2051
- "FirstSlotStartTime": "2016-01-31T00:00:00Z",
2052
- "HourlyPrice": "0.095",
2053
- "InstanceType": "c4.large",
2054
- "MaxTermDurationInDays": 366,
2055
- "MinTermDurationInDays": 366,
2056
- "NetworkPlatform": "EC2-VPC",
2057
- "Platform": "Linux/UNIX",
2058
- "PurchaseToken": "eyJ2IjoiMSIsInMiOjEsImMiOi...",
2059
- "Recurrence": {
2060
- "Frequency": "Weekly",
2061
- "Interval": 1,
2062
- "OccurrenceDaySet": [
2063
- 1
2064
- ],
2065
- "OccurrenceRelativeToEnd": false
2066
- },
2067
- "SlotDurationInHours": 23,
2068
- "TotalScheduledInstanceHours": 1219
2069
- }
2070
- ]
2071
- },
2072
- "comments": {
2073
- "input": {
2074
- },
2075
- "output": {
2076
- }
2077
- },
2078
- "description": "This example describes a schedule that occurs every week on Sunday, starting on the specified date. Note that the output contains a single schedule as an example.",
2079
- "id": "ec2-describe-scheduled-instance-availability-1",
2080
- "title": "To describe an available schedule"
2081
- }
2082
- ],
2083
- "DescribeScheduledInstances": [
2084
- {
2085
- "input": {
2086
- "ScheduledInstanceIds": [
2087
- "sci-1234-1234-1234-1234-123456789012"
2088
- ]
2089
- },
2090
- "output": {
2091
- "ScheduledInstanceSet": [
2092
- {
2093
- "AvailabilityZone": "us-west-2b",
2094
- "CreateDate": "2016-01-25T21:43:38.612Z",
2095
- "HourlyPrice": "0.095",
2096
- "InstanceCount": 1,
2097
- "InstanceType": "c4.large",
2098
- "NetworkPlatform": "EC2-VPC",
2099
- "NextSlotStartTime": "2016-01-31T09:00:00Z",
2100
- "Platform": "Linux/UNIX",
2101
- "Recurrence": {
2102
- "Frequency": "Weekly",
2103
- "Interval": 1,
2104
- "OccurrenceDaySet": [
2105
- 1
2106
- ],
2107
- "OccurrenceRelativeToEnd": false,
2108
- "OccurrenceUnit": ""
2109
- },
2110
- "ScheduledInstanceId": "sci-1234-1234-1234-1234-123456789012",
2111
- "SlotDurationInHours": 32,
2112
- "TermEndDate": "2017-01-31T09:00:00Z",
2113
- "TermStartDate": "2016-01-31T09:00:00Z",
2114
- "TotalScheduledInstanceHours": 1696
2115
- }
2116
- ]
2117
- },
2118
- "comments": {
2119
- "input": {
2120
- },
2121
- "output": {
2122
- }
2123
- },
2124
- "description": "This example describes the specified Scheduled Instance.",
2125
- "id": "ec2-describe-scheduled-instances-1",
2126
- "title": "To describe your Scheduled Instances"
2127
- }
2128
- ],
2129
- "DescribeSnapshotAttribute": [
2130
- {
2131
- "input": {
2132
- "Attribute": "createVolumePermission",
2133
- "SnapshotId": "snap-066877671789bd71b"
2134
- },
2135
- "output": {
2136
- "CreateVolumePermissions": [
2137
-
2138
- ],
2139
- "SnapshotId": "snap-066877671789bd71b"
2140
- },
2141
- "comments": {
2142
- "input": {
2143
- },
2144
- "output": {
2145
- }
2146
- },
2147
- "description": "This example describes the ``createVolumePermission`` attribute on a snapshot with the snapshot ID of ``snap-066877671789bd71b``.",
2148
- "id": "to-describe-snapshot-attributes-1472503199736",
2149
- "title": "To describe snapshot attributes"
2150
- }
2151
- ],
2152
- "DescribeSnapshots": [
2153
- {
2154
- "input": {
2155
- "SnapshotIds": [
2156
- "snap-1234567890abcdef0"
2157
- ]
2158
- },
2159
- "output": {
2160
- "NextToken": "",
2161
- "Snapshots": [
2162
- {
2163
- "Description": "This is my snapshot.",
2164
- "OwnerId": "012345678910",
2165
- "Progress": "100%",
2166
- "SnapshotId": "snap-1234567890abcdef0",
2167
- "StartTime": "2014-02-28T21:28:32.000Z",
2168
- "State": "completed",
2169
- "VolumeId": "vol-049df61146c4d7901",
2170
- "VolumeSize": 8
2171
- }
2172
- ]
2173
- },
2174
- "comments": {
2175
- "input": {
2176
- },
2177
- "output": {
2178
- }
2179
- },
2180
- "description": "This example describes a snapshot with the snapshot ID of ``snap-1234567890abcdef0``.",
2181
- "id": "to-describe-a-snapshot-1472503807850",
2182
- "title": "To describe a snapshot"
2183
- },
2184
- {
2185
- "input": {
2186
- "Filters": [
2187
- {
2188
- "Name": "status",
2189
- "Values": [
2190
- "pending"
2191
- ]
2192
- }
2193
- ],
2194
- "OwnerIds": [
2195
- "012345678910"
2196
- ]
2197
- },
2198
- "output": {
2199
- "NextToken": "",
2200
- "Snapshots": [
2201
- {
2202
- "Description": "This is my copied snapshot.",
2203
- "OwnerId": "012345678910",
2204
- "Progress": "87%",
2205
- "SnapshotId": "snap-066877671789bd71b",
2206
- "StartTime": "2014-02-28T21:37:27.000Z",
2207
- "State": "pending",
2208
- "VolumeId": "vol-1234567890abcdef0",
2209
- "VolumeSize": 8
2210
- }
2211
- ]
2212
- },
2213
- "comments": {
2214
- "input": {
2215
- },
2216
- "output": {
2217
- }
2218
- },
2219
- "description": "This example describes all snapshots owned by the ID 012345678910 that are in the ``pending`` status.",
2220
- "id": "to-describe-snapshots-using-filters-1472503929793",
2221
- "title": "To describe snapshots using filters"
2222
- }
2223
- ],
2224
- "DescribeSpotDatafeedSubscription": [
2225
- {
2226
- "output": {
2227
- "SpotDatafeedSubscription": {
2228
- "Bucket": "my-s3-bucket",
2229
- "OwnerId": "123456789012",
2230
- "Prefix": "spotdata",
2231
- "State": "Active"
2232
- }
2233
- },
2234
- "comments": {
2235
- "input": {
2236
- },
2237
- "output": {
2238
- }
2239
- },
2240
- "description": "This example describes the Spot Instance datafeed subscription for your AWS account.",
2241
- "id": "ec2-describe-spot-datafeed-subscription-1",
2242
- "title": "To describe the datafeed for your AWS account"
2243
- }
2244
- ],
2245
- "DescribeSpotFleetInstances": [
2246
- {
2247
- "input": {
2248
- "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"
2249
- },
2250
- "output": {
2251
- "ActiveInstances": [
2252
- {
2253
- "InstanceId": "i-1234567890abcdef0",
2254
- "InstanceType": "m3.medium",
2255
- "SpotInstanceRequestId": "sir-08b93456"
2256
- }
2257
- ],
2258
- "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"
2259
- },
2260
- "comments": {
2261
- "input": {
2262
- },
2263
- "output": {
2264
- }
2265
- },
2266
- "description": "This example lists the Spot Instances associated with the specified Spot fleet.",
2267
- "id": "ec2-describe-spot-fleet-instances-1",
2268
- "title": "To describe the Spot Instances associated with a Spot fleet"
2269
- }
2270
- ],
2271
- "DescribeSpotFleetRequestHistory": [
2272
- {
2273
- "input": {
2274
- "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE",
2275
- "StartTime": "2015-05-26T00:00:00Z"
2276
- },
2277
- "output": {
2278
- "HistoryRecords": [
2279
- {
2280
- "EventInformation": {
2281
- "EventSubType": "submitted"
2282
- },
2283
- "EventType": "fleetRequestChange",
2284
- "Timestamp": "2015-05-26T23:17:20.697Z"
2285
- },
2286
- {
2287
- "EventInformation": {
2288
- "EventSubType": "active"
2289
- },
2290
- "EventType": "fleetRequestChange",
2291
- "Timestamp": "2015-05-26T23:17:20.873Z"
2292
- },
2293
- {
2294
- "EventInformation": {
2295
- "EventSubType": "launched",
2296
- "InstanceId": "i-1234567890abcdef0"
2297
- },
2298
- "EventType": "instanceChange",
2299
- "Timestamp": "2015-05-26T23:21:21.712Z"
2300
- },
2301
- {
2302
- "EventInformation": {
2303
- "EventSubType": "launched",
2304
- "InstanceId": "i-1234567890abcdef1"
2305
- },
2306
- "EventType": "instanceChange",
2307
- "Timestamp": "2015-05-26T23:21:21.816Z"
2308
- }
2309
- ],
2310
- "NextToken": "CpHNsscimcV5oH7bSbub03CI2Qms5+ypNpNm+53MNlR0YcXAkp0xFlfKf91yVxSExmbtma3awYxMFzNA663ZskT0AHtJ6TCb2Z8bQC2EnZgyELbymtWPfpZ1ZbauVg+P+TfGlWxWWB/Vr5dk5d4LfdgA/DRAHUrYgxzrEXAMPLE=",
2311
- "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE",
2312
- "StartTime": "2015-05-26T00:00:00Z"
2313
- },
2314
- "comments": {
2315
- "input": {
2316
- },
2317
- "output": {
2318
- }
2319
- },
2320
- "description": "This example returns the history for the specified Spot fleet starting at the specified time.",
2321
- "id": "ec2-describe-spot-fleet-request-history-1",
2322
- "title": "To describe Spot fleet history"
2323
- }
2324
- ],
2325
- "DescribeSpotFleetRequests": [
2326
- {
2327
- "input": {
2328
- "SpotFleetRequestIds": [
2329
- "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"
2330
- ]
2331
- },
2332
- "output": {
2333
- "SpotFleetRequestConfigs": [
2334
- {
2335
- "SpotFleetRequestConfig": {
2336
- "IamFleetRole": "arn:aws:iam::123456789012:role/my-spot-fleet-role",
2337
- "LaunchSpecifications": [
2338
- {
2339
- "EbsOptimized": false,
2340
- "ImageId": "ami-1a2b3c4d",
2341
- "InstanceType": "cc2.8xlarge",
2342
- "NetworkInterfaces": [
2343
- {
2344
- "AssociatePublicIpAddress": true,
2345
- "DeleteOnTermination": false,
2346
- "DeviceIndex": 0,
2347
- "SecondaryPrivateIpAddressCount": 0,
2348
- "SubnetId": "subnet-a61dafcf"
2349
- }
2350
- ]
2351
- },
2352
- {
2353
- "EbsOptimized": false,
2354
- "ImageId": "ami-1a2b3c4d",
2355
- "InstanceType": "r3.8xlarge",
2356
- "NetworkInterfaces": [
2357
- {
2358
- "AssociatePublicIpAddress": true,
2359
- "DeleteOnTermination": false,
2360
- "DeviceIndex": 0,
2361
- "SecondaryPrivateIpAddressCount": 0,
2362
- "SubnetId": "subnet-a61dafcf"
2363
- }
2364
- ]
2365
- }
2366
- ],
2367
- "SpotPrice": "0.05",
2368
- "TargetCapacity": 20
2369
- },
2370
- "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE",
2371
- "SpotFleetRequestState": "active"
2372
- }
2373
- ]
2374
- },
2375
- "comments": {
2376
- "input": {
2377
- },
2378
- "output": {
2379
- }
2380
- },
2381
- "description": "This example describes the specified Spot fleet request.",
2382
- "id": "ec2-describe-spot-fleet-requests-1",
2383
- "title": "To describe a Spot fleet request"
2384
- }
2385
- ],
2386
- "DescribeSpotInstanceRequests": [
2387
- {
2388
- "input": {
2389
- "SpotInstanceRequestIds": [
2390
- "sir-08b93456"
2391
- ]
2392
- },
2393
- "output": {
2394
- "SpotInstanceRequests": [
2395
- {
2396
- "CreateTime": "2014-04-30T18:14:55.000Z",
2397
- "InstanceId": "i-1234567890abcdef0",
2398
- "LaunchSpecification": {
2399
- "BlockDeviceMappings": [
2400
- {
2401
- "DeviceName": "/dev/sda1",
2402
- "Ebs": {
2403
- "DeleteOnTermination": true,
2404
- "VolumeSize": 8,
2405
- "VolumeType": "standard"
2406
- }
2407
- }
2408
- ],
2409
- "EbsOptimized": false,
2410
- "ImageId": "ami-7aba833f",
2411
- "InstanceType": "m1.small",
2412
- "KeyName": "my-key-pair",
2413
- "SecurityGroups": [
2414
- {
2415
- "GroupId": "sg-e38f24a7",
2416
- "GroupName": "my-security-group"
2417
- }
2418
- ]
2419
- },
2420
- "LaunchedAvailabilityZone": "us-west-1b",
2421
- "ProductDescription": "Linux/UNIX",
2422
- "SpotInstanceRequestId": "sir-08b93456",
2423
- "SpotPrice": "0.010000",
2424
- "State": "active",
2425
- "Status": {
2426
- "Code": "fulfilled",
2427
- "Message": "Your Spot request is fulfilled.",
2428
- "UpdateTime": "2014-04-30T18:16:21.000Z"
2429
- },
2430
- "Type": "one-time"
2431
- }
2432
- ]
2433
- },
2434
- "comments": {
2435
- "input": {
2436
- },
2437
- "output": {
2438
- }
2439
- },
2440
- "description": "This example describes the specified Spot Instance request.",
2441
- "id": "ec2-describe-spot-instance-requests-1",
2442
- "title": "To describe a Spot Instance request"
2443
- }
2444
- ],
2445
- "DescribeSpotPriceHistory": [
2446
- {
2447
- "input": {
2448
- "EndTime": "2014-01-06T08:09:10",
2449
- "InstanceTypes": [
2450
- "m1.xlarge"
2451
- ],
2452
- "ProductDescriptions": [
2453
- "Linux/UNIX (Amazon VPC)"
2454
- ],
2455
- "StartTime": "2014-01-06T07:08:09"
2456
- },
2457
- "output": {
2458
- "SpotPriceHistory": [
2459
- {
2460
- "AvailabilityZone": "us-west-1a",
2461
- "InstanceType": "m1.xlarge",
2462
- "ProductDescription": "Linux/UNIX (Amazon VPC)",
2463
- "SpotPrice": "0.080000",
2464
- "Timestamp": "2014-01-06T04:32:53.000Z"
2465
- },
2466
- {
2467
- "AvailabilityZone": "us-west-1c",
2468
- "InstanceType": "m1.xlarge",
2469
- "ProductDescription": "Linux/UNIX (Amazon VPC)",
2470
- "SpotPrice": "0.080000",
2471
- "Timestamp": "2014-01-05T11:28:26.000Z"
2472
- }
2473
- ]
2474
- },
2475
- "comments": {
2476
- "input": {
2477
- },
2478
- "output": {
2479
- }
2480
- },
2481
- "description": "This example returns the Spot Price history for m1.xlarge, Linux/UNIX (Amazon VPC) instances for a particular day in January.",
2482
- "id": "ec2-describe-spot-price-history-1",
2483
- "title": "To describe Spot price history for Linux/UNIX (Amazon VPC)"
2484
- }
2485
- ],
2486
- "DescribeSubnets": [
2487
- {
2488
- "input": {
2489
- "Filters": [
2490
- {
2491
- "Name": "vpc-id",
2492
- "Values": [
2493
- "vpc-a01106c2"
2494
- ]
2495
- }
2496
- ]
2497
- },
2498
- "output": {
2499
- "Subnets": [
2500
- {
2501
- "AvailabilityZone": "us-east-1c",
2502
- "AvailableIpAddressCount": 251,
2503
- "CidrBlock": "10.0.1.0/24",
2504
- "DefaultForAz": false,
2505
- "MapPublicIpOnLaunch": false,
2506
- "State": "available",
2507
- "SubnetId": "subnet-9d4a7b6c",
2508
- "VpcId": "vpc-a01106c2"
2509
- }
2510
- ]
2511
- },
2512
- "comments": {
2513
- "input": {
2514
- },
2515
- "output": {
2516
- }
2517
- },
2518
- "description": "This example describes the subnets for the specified VPC.",
2519
- "id": "ec2-describe-subnets-1",
2520
- "title": "To describe the subnets for a VPC"
2521
- }
2522
- ],
2523
- "DescribeTags": [
2524
- {
2525
- "input": {
2526
- "Filters": [
2527
- {
2528
- "Name": "resource-id",
2529
- "Values": [
2530
- "i-1234567890abcdef8"
2531
- ]
2532
- }
2533
- ]
2534
- },
2535
- "output": {
2536
- "Tags": [
2537
- {
2538
- "Key": "Stack",
2539
- "ResourceId": "i-1234567890abcdef8",
2540
- "ResourceType": "instance",
2541
- "Value": "test"
2542
- },
2543
- {
2544
- "Key": "Name",
2545
- "ResourceId": "i-1234567890abcdef8",
2546
- "ResourceType": "instance",
2547
- "Value": "Beta Server"
2548
- }
2549
- ]
2550
- },
2551
- "comments": {
2552
- "input": {
2553
- },
2554
- "output": {
2555
- }
2556
- },
2557
- "description": "This example describes the tags for the specified instance.",
2558
- "id": "ec2-describe-tags-1",
2559
- "title": "To describe the tags for a single resource"
2560
- }
2561
- ],
2562
- "DescribeVolumeAttribute": [
2563
- {
2564
- "input": {
2565
- "Attribute": "autoEnableIO",
2566
- "VolumeId": "vol-049df61146c4d7901"
2567
- },
2568
- "output": {
2569
- "AutoEnableIO": {
2570
- "Value": false
2571
- },
2572
- "VolumeId": "vol-049df61146c4d7901"
2573
- },
2574
- "comments": {
2575
- "input": {
2576
- },
2577
- "output": {
2578
- }
2579
- },
2580
- "description": "This example describes the ``autoEnableIo`` attribute of the volume with the ID ``vol-049df61146c4d7901``.",
2581
- "id": "to-describe-a-volume-attribute-1472505773492",
2582
- "title": "To describe a volume attribute"
2583
- }
2584
- ],
2585
- "DescribeVolumeStatus": [
2586
- {
2587
- "input": {
2588
- "VolumeIds": [
2589
- "vol-1234567890abcdef0"
2590
- ]
2591
- },
2592
- "output": {
2593
- "VolumeStatuses": [
2594
- {
2595
- "Actions": [
2596
-
2597
- ],
2598
- "AvailabilityZone": "us-east-1a",
2599
- "Events": [
2600
-
2601
- ],
2602
- "VolumeId": "vol-1234567890abcdef0",
2603
- "VolumeStatus": {
2604
- "Details": [
2605
- {
2606
- "Name": "io-enabled",
2607
- "Status": "passed"
2608
- },
2609
- {
2610
- "Name": "io-performance",
2611
- "Status": "not-applicable"
2612
- }
2613
- ],
2614
- "Status": "ok"
2615
- }
2616
- }
2617
- ]
2618
- },
2619
- "comments": {
2620
- "input": {
2621
- },
2622
- "output": {
2623
- }
2624
- },
2625
- "description": "This example describes the status for the volume ``vol-1234567890abcdef0``.",
2626
- "id": "to-describe-the-status-of-a-single-volume-1472507016193",
2627
- "title": "To describe the status of a single volume"
2628
- },
2629
- {
2630
- "input": {
2631
- "Filters": [
2632
- {
2633
- "Name": "volume-status.status",
2634
- "Values": [
2635
- "impaired"
2636
- ]
2637
- }
2638
- ]
2639
- },
2640
- "output": {
2641
- "VolumeStatuses": [
2642
-
2643
- ]
2644
- },
2645
- "comments": {
2646
- "input": {
2647
- },
2648
- "output": {
2649
- }
2650
- },
2651
- "description": "This example describes the status for all volumes that are impaired. In this example output, there are no impaired volumes.",
2652
- "id": "to-describe-the-status-of-impaired-volumes-1472507239821",
2653
- "title": "To describe the status of impaired volumes"
2654
- }
2655
- ],
2656
- "DescribeVolumes": [
2657
- {
2658
- "input": {
2659
- },
2660
- "output": {
2661
- "NextToken": "",
2662
- "Volumes": [
2663
- {
2664
- "Attachments": [
2665
- {
2666
- "AttachTime": "2013-12-18T22:35:00.000Z",
2667
- "DeleteOnTermination": true,
2668
- "Device": "/dev/sda1",
2669
- "InstanceId": "i-1234567890abcdef0",
2670
- "State": "attached",
2671
- "VolumeId": "vol-049df61146c4d7901"
2672
- }
2673
- ],
2674
- "AvailabilityZone": "us-east-1a",
2675
- "CreateTime": "2013-12-18T22:35:00.084Z",
2676
- "Size": 8,
2677
- "SnapshotId": "snap-1234567890abcdef0",
2678
- "State": "in-use",
2679
- "VolumeId": "vol-049df61146c4d7901",
2680
- "VolumeType": "standard"
2681
- }
2682
- ]
2683
- },
2684
- "comments": {
2685
- "input": {
2686
- },
2687
- "output": {
2688
- }
2689
- },
2690
- "description": "This example describes all of your volumes in the default region.",
2691
- "id": "to-describe-all-volumes-1472506358883",
2692
- "title": "To describe all volumes"
2693
- },
2694
- {
2695
- "input": {
2696
- "Filters": [
2697
- {
2698
- "Name": "attachment.instance-id",
2699
- "Values": [
2700
- "i-1234567890abcdef0"
2701
- ]
2702
- },
2703
- {
2704
- "Name": "attachment.delete-on-termination",
2705
- "Values": [
2706
- "true"
2707
- ]
2708
- }
2709
- ]
2710
- },
2711
- "output": {
2712
- "Volumes": [
2713
- {
2714
- "Attachments": [
2715
- {
2716
- "AttachTime": "2013-12-18T22:35:00.000Z",
2717
- "DeleteOnTermination": true,
2718
- "Device": "/dev/sda1",
2719
- "InstanceId": "i-1234567890abcdef0",
2720
- "State": "attached",
2721
- "VolumeId": "vol-049df61146c4d7901"
2722
- }
2723
- ],
2724
- "AvailabilityZone": "us-east-1a",
2725
- "CreateTime": "2013-12-18T22:35:00.084Z",
2726
- "Size": 8,
2727
- "SnapshotId": "snap-1234567890abcdef0",
2728
- "State": "in-use",
2729
- "VolumeId": "vol-049df61146c4d7901",
2730
- "VolumeType": "standard"
2731
- }
2732
- ]
2733
- },
2734
- "comments": {
2735
- "input": {
2736
- },
2737
- "output": {
2738
- }
2739
- },
2740
- "description": "This example describes all volumes that are both attached to the instance with the ID i-1234567890abcdef0 and set to delete when the instance terminates.",
2741
- "id": "to-describe-volumes-that-are-attached-to-a-specific-instance-1472506613578",
2742
- "title": "To describe volumes that are attached to a specific instance"
2743
- }
2744
- ],
2745
- "DescribeVpcAttribute": [
2746
- {
2747
- "input": {
2748
- "Attribute": "enableDnsSupport",
2749
- "VpcId": "vpc-a01106c2"
2750
- },
2751
- "output": {
2752
- "EnableDnsSupport": {
2753
- "Value": true
2754
- },
2755
- "VpcId": "vpc-a01106c2"
2756
- },
2757
- "comments": {
2758
- "input": {
2759
- },
2760
- "output": {
2761
- }
2762
- },
2763
- "description": "This example describes the enableDnsSupport attribute. This attribute indicates whether DNS resolution is enabled for the VPC. If this attribute is true, the Amazon DNS server resolves DNS hostnames for your instances to their corresponding IP addresses; otherwise, it does not.",
2764
- "id": "ec2-describe-vpc-attribute-1",
2765
- "title": "To describe the enableDnsSupport attribute"
2766
- },
2767
- {
2768
- "input": {
2769
- "Attribute": "enableDnsHostnames",
2770
- "VpcId": "vpc-a01106c2"
2771
- },
2772
- "output": {
2773
- "EnableDnsHostnames": {
2774
- "Value": true
2775
- },
2776
- "VpcId": "vpc-a01106c2"
2777
- },
2778
- "comments": {
2779
- "input": {
2780
- },
2781
- "output": {
2782
- }
2783
- },
2784
- "description": "This example describes the enableDnsHostnames attribute. This attribute indicates whether the instances launched in the VPC get DNS hostnames. If this attribute is true, instances in the VPC get DNS hostnames; otherwise, they do not.",
2785
- "id": "ec2-describe-vpc-attribute-2",
2786
- "title": "To describe the enableDnsHostnames attribute"
2787
- }
2788
- ],
2789
- "DescribeVpcs": [
2790
- {
2791
- "input": {
2792
- "VpcIds": [
2793
- "vpc-a01106c2"
2794
- ]
2795
- },
2796
- "output": {
2797
- "Vpcs": [
2798
- {
2799
- "CidrBlock": "10.0.0.0/16",
2800
- "DhcpOptionsId": "dopt-7a8b9c2d",
2801
- "InstanceTenancy": "default",
2802
- "IsDefault": false,
2803
- "State": "available",
2804
- "Tags": [
2805
- {
2806
- "Key": "Name",
2807
- "Value": "MyVPC"
2808
- }
2809
- ],
2810
- "VpcId": "vpc-a01106c2"
2811
- }
2812
- ]
2813
- },
2814
- "comments": {
2815
- "input": {
2816
- },
2817
- "output": {
2818
- }
2819
- },
2820
- "description": "This example describes the specified VPC.",
2821
- "id": "ec2-describe-vpcs-1",
2822
- "title": "To describe a VPC"
2823
- }
2824
- ],
2825
- "DetachInternetGateway": [
2826
- {
2827
- "input": {
2828
- "InternetGatewayId": "igw-c0a643a9",
2829
- "VpcId": "vpc-a01106c2"
2830
- },
2831
- "comments": {
2832
- "input": {
2833
- },
2834
- "output": {
2835
- }
2836
- },
2837
- "description": "This example detaches the specified Internet gateway from the specified VPC.",
2838
- "id": "ec2-detach-internet-gateway-1",
2839
- "title": "To detach an Internet gateway from a VPC"
2840
- }
2841
- ],
2842
- "DetachNetworkInterface": [
2843
- {
2844
- "input": {
2845
- "AttachmentId": "eni-attach-66c4350a"
2846
- },
2847
- "comments": {
2848
- "input": {
2849
- },
2850
- "output": {
2851
- }
2852
- },
2853
- "description": "This example detaches the specified network interface from its attached instance.",
2854
- "id": "ec2-detach-network-interface-1",
2855
- "title": "To detach a network interface from an instance"
2856
- }
2857
- ],
2858
- "DetachVolume": [
2859
- {
2860
- "input": {
2861
- "VolumeId": "vol-1234567890abcdef0"
2862
- },
2863
- "output": {
2864
- "AttachTime": "2014-02-27T19:23:06.000Z",
2865
- "Device": "/dev/sdb",
2866
- "InstanceId": "i-1234567890abcdef0",
2867
- "State": "detaching",
2868
- "VolumeId": "vol-049df61146c4d7901"
2869
- },
2870
- "comments": {
2871
- "input": {
2872
- },
2873
- "output": {
2874
- }
2875
- },
2876
- "description": "This example detaches the volume (``vol-049df61146c4d7901``) from the instance it is attached to.",
2877
- "id": "to-detach-a-volume-from-an-instance-1472507977694",
2878
- "title": "To detach a volume from an instance"
2879
- }
2880
- ],
2881
- "DisableVgwRoutePropagation": [
2882
- {
2883
- "input": {
2884
- "GatewayId": "vgw-9a4cacf3",
2885
- "RouteTableId": "rtb-22574640"
2886
- },
2887
- "comments": {
2888
- "input": {
2889
- },
2890
- "output": {
2891
- }
2892
- },
2893
- "description": "This example disables the specified virtual private gateway from propagating static routes to the specified route table.",
2894
- "id": "ec2-disable-vgw-route-propagation-1",
2895
- "title": "To disable route propagation"
2896
- }
2897
- ],
2898
- "DisassociateAddress": [
2899
- {
2900
- "input": {
2901
- "AssociationId": "eipassoc-2bebb745"
2902
- },
2903
- "comments": {
2904
- "input": {
2905
- },
2906
- "output": {
2907
- }
2908
- },
2909
- "description": "This example disassociates an Elastic IP address from an instance in a VPC.",
2910
- "id": "ec2-disassociate-address-1",
2911
- "title": "To disassociate an Elastic IP address in EC2-VPC"
2912
- },
2913
- {
2914
- "input": {
2915
- "PublicIp": "198.51.100.0"
2916
- },
2917
- "comments": {
2918
- "input": {
2919
- },
2920
- "output": {
2921
- }
2922
- },
2923
- "description": "This example disassociates an Elastic IP address from an instance in EC2-Classic.",
2924
- "id": "ec2-disassociate-address-2",
2925
- "title": "To disassociate an Elastic IP addresses in EC2-Classic"
2926
- }
2927
- ],
2928
- "DisassociateRouteTable": [
2929
- {
2930
- "input": {
2931
- "AssociationId": "rtbassoc-781d0d1a"
2932
- },
2933
- "comments": {
2934
- "input": {
2935
- },
2936
- "output": {
2937
- }
2938
- },
2939
- "description": "This example disassociates the specified route table from its associated subnet.",
2940
- "id": "ec2-disassociate-route-table-1",
2941
- "title": "To disassociate a route table"
2942
- }
2943
- ],
2944
- "EnableVgwRoutePropagation": [
2945
- {
2946
- "input": {
2947
- "GatewayId": "vgw-9a4cacf3",
2948
- "RouteTableId": "rtb-22574640"
2949
- },
2950
- "comments": {
2951
- "input": {
2952
- },
2953
- "output": {
2954
- }
2955
- },
2956
- "description": "This example enables the specified virtual private gateway to propagate static routes to the specified route table.",
2957
- "id": "ec2-enable-vgw-route-propagation-1",
2958
- "title": "To enable route propagation"
2959
- }
2960
- ],
2961
- "EnableVolumeIO": [
2962
- {
2963
- "input": {
2964
- "VolumeId": "vol-1234567890abcdef0"
2965
- },
2966
- "comments": {
2967
- "input": {
2968
- },
2969
- "output": {
2970
- }
2971
- },
2972
- "description": "This example enables I/O on volume ``vol-1234567890abcdef0``.",
2973
- "id": "to-enable-io-for-a-volume-1472508114867",
2974
- "title": "To enable I/O for a volume"
2975
- }
2976
- ],
2977
- "ModifyNetworkInterfaceAttribute": [
2978
- {
2979
- "input": {
2980
- "Attachment": {
2981
- "AttachmentId": "eni-attach-43348162",
2982
- "DeleteOnTermination": false
2983
- },
2984
- "NetworkInterfaceId": "eni-686ea200"
2985
- },
2986
- "comments": {
2987
- "input": {
2988
- },
2989
- "output": {
2990
- }
2991
- },
2992
- "description": "This example modifies the attachment attribute of the specified network interface.",
2993
- "id": "ec2-modify-network-interface-attribute-1",
2994
- "title": "To modify the attachment attribute of a network interface"
2995
- },
2996
- {
2997
- "input": {
2998
- "Description": {
2999
- "Value": "My description"
3000
- },
3001
- "NetworkInterfaceId": "eni-686ea200"
3002
- },
3003
- "comments": {
3004
- "input": {
3005
- },
3006
- "output": {
3007
- }
3008
- },
3009
- "description": "This example modifies the description attribute of the specified network interface.",
3010
- "id": "ec2-modify-network-interface-attribute-2",
3011
- "title": "To modify the description attribute of a network interface"
3012
- },
3013
- {
3014
- "input": {
3015
- "Groups": [
3016
- "sg-903004f8",
3017
- "sg-1a2b3c4d"
3018
- ],
3019
- "NetworkInterfaceId": "eni-686ea200"
3020
- },
3021
- "comments": {
3022
- "input": {
3023
- },
3024
- "output": {
3025
- }
3026
- },
3027
- "description": "This example command modifies the groupSet attribute of the specified network interface.",
3028
- "id": "ec2-modify-network-interface-attribute-3",
3029
- "title": "To modify the groupSet attribute of a network interface"
3030
- },
3031
- {
3032
- "input": {
3033
- "NetworkInterfaceId": "eni-686ea200",
3034
- "SourceDestCheck": {
3035
- "Value": false
3036
- }
3037
- },
3038
- "comments": {
3039
- "input": {
3040
- },
3041
- "output": {
3042
- }
3043
- },
3044
- "description": "This example command modifies the sourceDestCheck attribute of the specified network interface.",
3045
- "id": "ec2-modify-network-interface-attribute-4",
3046
- "title": "To modify the sourceDestCheck attribute of a network interface"
3047
- }
3048
- ],
3049
- "ModifySnapshotAttribute": [
3050
- {
3051
- "input": {
3052
- "Attribute": "createVolumePermission",
3053
- "OperationType": "remove",
3054
- "SnapshotId": "snap-1234567890abcdef0",
3055
- "UserIds": [
3056
- "123456789012"
3057
- ]
3058
- },
3059
- "output": {
3060
- },
3061
- "comments": {
3062
- "input": {
3063
- },
3064
- "output": {
3065
- }
3066
- },
3067
- "description": "This example modifies snapshot ``snap-1234567890abcdef0`` to remove the create volume permission for a user with the account ID ``123456789012``. If the command succeeds, no output is returned.",
3068
- "id": "to-modify-a-snapshot-attribute-1472508385907",
3069
- "title": "To modify a snapshot attribute"
3070
- },
3071
- {
3072
- "input": {
3073
- "Attribute": "createVolumePermission",
3074
- "GroupNames": [
3075
- "all"
3076
- ],
3077
- "OperationType": "add",
3078
- "SnapshotId": "snap-1234567890abcdef0"
3079
- },
3080
- "output": {
3081
- },
3082
- "comments": {
3083
- "input": {
3084
- },
3085
- "output": {
3086
- }
3087
- },
3088
- "description": "This example makes the snapshot ``snap-1234567890abcdef0`` public.",
3089
- "id": "to-make-a-snapshot-public-1472508470529",
3090
- "title": "To make a snapshot public"
3091
- }
3092
- ],
3093
- "ModifySpotFleetRequest": [
3094
- {
3095
- "input": {
3096
- "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE",
3097
- "TargetCapacity": 20
3098
- },
3099
- "output": {
3100
- "Return": true
3101
- },
3102
- "comments": {
3103
- "input": {
3104
- },
3105
- "output": {
3106
- }
3107
- },
3108
- "description": "This example increases the target capacity of the specified Spot fleet request.",
3109
- "id": "ec2-modify-spot-fleet-request-1",
3110
- "title": "To increase the target capacity of a Spot fleet request"
3111
- },
3112
- {
3113
- "input": {
3114
- "ExcessCapacityTerminationPolicy": "NoTermination ",
3115
- "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE",
3116
- "TargetCapacity": 10
3117
- },
3118
- "output": {
3119
- "Return": true
3120
- },
3121
- "comments": {
3122
- "input": {
3123
- },
3124
- "output": {
3125
- }
3126
- },
3127
- "description": "This example decreases the target capacity of the specified Spot fleet request without terminating any Spot Instances as a result.",
3128
- "id": "ec2-modify-spot-fleet-request-2",
3129
- "title": "To decrease the target capacity of a Spot fleet request"
3130
- }
3131
- ],
3132
- "ModifySubnetAttribute": [
3133
- {
3134
- "input": {
3135
- "MapPublicIpOnLaunch": {
3136
- "Value": true
3137
- },
3138
- "SubnetId": "subnet-1a2b3c4d"
3139
- },
3140
- "comments": {
3141
- "input": {
3142
- },
3143
- "output": {
3144
- }
3145
- },
3146
- "description": "This example modifies the specified subnet so that all instances launched into this subnet are assigned a public IP address.",
3147
- "id": "ec2-modify-subnet-attribute-1",
3148
- "title": "To change a subnet's public IP addressing behavior"
3149
- }
3150
- ],
3151
- "ModifyVolumeAttribute": [
3152
- {
3153
- "input": {
3154
- "AutoEnableIO": {
3155
- "Value": true
3156
- },
3157
- "DryRun": true,
3158
- "VolumeId": "vol-1234567890abcdef0"
3159
- },
3160
- "output": {
3161
- },
3162
- "comments": {
3163
- "input": {
3164
- },
3165
- "output": {
3166
- }
3167
- },
3168
- "description": "This example sets the ``autoEnableIo`` attribute of the volume with the ID ``vol-1234567890abcdef0`` to ``true``. If the command succeeds, no output is returned.",
3169
- "id": "to-modify-a-volume-attribute-1472508596749",
3170
- "title": "To modify a volume attribute"
3171
- }
3172
- ],
3173
- "ModifyVpcAttribute": [
3174
- {
3175
- "input": {
3176
- "EnableDnsSupport": {
3177
- "Value": false
3178
- },
3179
- "VpcId": "vpc-a01106c2"
3180
- },
3181
- "comments": {
3182
- "input": {
3183
- },
3184
- "output": {
3185
- }
3186
- },
3187
- "description": "This example modifies the enableDnsSupport attribute. This attribute indicates whether DNS resolution is enabled for the VPC. If this attribute is true, the Amazon DNS server resolves DNS hostnames for instances in the VPC to their corresponding IP addresses; otherwise, it does not.",
3188
- "id": "ec2-modify-vpc-attribute-1",
3189
- "title": "To modify the enableDnsSupport attribute"
3190
- },
3191
- {
3192
- "input": {
3193
- "EnableDnsHostnames": {
3194
- "Value": false
3195
- },
3196
- "VpcId": "vpc-a01106c2"
3197
- },
3198
- "comments": {
3199
- "input": {
3200
- },
3201
- "output": {
3202
- }
3203
- },
3204
- "description": "This example modifies the enableDnsHostnames attribute. This attribute indicates whether instances launched in the VPC get DNS hostnames. If this attribute is true, instances in the VPC get DNS hostnames; otherwise, they do not.",
3205
- "id": "ec2-modify-vpc-attribute-2",
3206
- "title": "To modify the enableDnsHostnames attribute"
3207
- }
3208
- ],
3209
- "MoveAddressToVpc": [
3210
- {
3211
- "input": {
3212
- "PublicIp": "54.123.4.56"
3213
- },
3214
- "output": {
3215
- "Status": "MoveInProgress"
3216
- },
3217
- "comments": {
3218
- "input": {
3219
- },
3220
- "output": {
3221
- }
3222
- },
3223
- "description": "This example moves the specified Elastic IP address to the EC2-VPC platform.",
3224
- "id": "ec2-move-address-to-vpc-1",
3225
- "title": "To move an address to EC2-VPC"
3226
- }
3227
- ],
3228
- "PurchaseScheduledInstances": [
3229
- {
3230
- "input": {
3231
- "PurchaseRequests": [
3232
- {
3233
- "InstanceCount": 1,
3234
- "PurchaseToken": "eyJ2IjoiMSIsInMiOjEsImMiOi..."
3235
- }
3236
- ]
3237
- },
3238
- "output": {
3239
- "ScheduledInstanceSet": [
3240
- {
3241
- "AvailabilityZone": "us-west-2b",
3242
- "CreateDate": "2016-01-25T21:43:38.612Z",
3243
- "HourlyPrice": "0.095",
3244
- "InstanceCount": 1,
3245
- "InstanceType": "c4.large",
3246
- "NetworkPlatform": "EC2-VPC",
3247
- "NextSlotStartTime": "2016-01-31T09:00:00Z",
3248
- "Platform": "Linux/UNIX",
3249
- "Recurrence": {
3250
- "Frequency": "Weekly",
3251
- "Interval": 1,
3252
- "OccurrenceDaySet": [
3253
- 1
3254
- ],
3255
- "OccurrenceRelativeToEnd": false,
3256
- "OccurrenceUnit": ""
3257
- },
3258
- "ScheduledInstanceId": "sci-1234-1234-1234-1234-123456789012",
3259
- "SlotDurationInHours": 32,
3260
- "TermEndDate": "2017-01-31T09:00:00Z",
3261
- "TermStartDate": "2016-01-31T09:00:00Z",
3262
- "TotalScheduledInstanceHours": 1696
3263
- }
3264
- ]
3265
- },
3266
- "comments": {
3267
- "input": {
3268
- },
3269
- "output": {
3270
- }
3271
- },
3272
- "description": "This example purchases a Scheduled Instance.",
3273
- "id": "ec2-purchase-scheduled-instances-1",
3274
- "title": "To purchase a Scheduled Instance"
3275
- }
3276
- ],
3277
- "ReleaseAddress": [
3278
- {
3279
- "input": {
3280
- "AllocationId": "eipalloc-64d5890a"
3281
- },
3282
- "comments": {
3283
- "input": {
3284
- },
3285
- "output": {
3286
- }
3287
- },
3288
- "description": "This example releases an Elastic IP address for use with instances in a VPC.",
3289
- "id": "ec2-release-address-1",
3290
- "title": "To release an Elastic IP address for EC2-VPC"
3291
- },
3292
- {
3293
- "input": {
3294
- "PublicIp": "198.51.100.0"
3295
- },
3296
- "comments": {
3297
- "input": {
3298
- },
3299
- "output": {
3300
- }
3301
- },
3302
- "description": "This example releases an Elastic IP address for use with instances in EC2-Classic.",
3303
- "id": "ec2-release-address-2",
3304
- "title": "To release an Elastic IP addresses for EC2-Classic"
3305
- }
3306
- ],
3307
- "ReplaceNetworkAclAssociation": [
3308
- {
3309
- "input": {
3310
- "AssociationId": "aclassoc-e5b95c8c",
3311
- "NetworkAclId": "acl-5fb85d36"
3312
- },
3313
- "output": {
3314
- "NewAssociationId": "aclassoc-3999875b"
3315
- },
3316
- "comments": {
3317
- "input": {
3318
- },
3319
- "output": {
3320
- }
3321
- },
3322
- "description": "This example associates the specified network ACL with the subnet for the specified network ACL association.",
3323
- "id": "ec2-replace-network-acl-association-1",
3324
- "title": "To replace the network ACL associated with a subnet"
3325
- }
3326
- ],
3327
- "ReplaceNetworkAclEntry": [
3328
- {
3329
- "input": {
3330
- "CidrBlock": "203.0.113.12/24",
3331
- "Egress": false,
3332
- "NetworkAclId": "acl-5fb85d36",
3333
- "PortRange": {
3334
- "From": 53,
3335
- "To": 53
3336
- },
3337
- "Protocol": "udp",
3338
- "RuleAction": "allow",
3339
- "RuleNumber": 100
3340
- },
3341
- "comments": {
3342
- "input": {
3343
- },
3344
- "output": {
3345
- }
3346
- },
3347
- "description": "This example replaces an entry for the specified network ACL. The new rule 100 allows ingress traffic from 203.0.113.12/24 on UDP port 53 (DNS) into any associated subnet.",
3348
- "id": "ec2-replace-network-acl-entry-1",
3349
- "title": "To replace a network ACL entry"
3350
- }
3351
- ],
3352
- "ReplaceRoute": [
3353
- {
3354
- "input": {
3355
- "DestinationCidrBlock": "10.0.0.0/16",
3356
- "GatewayId": "vgw-9a4cacf3",
3357
- "RouteTableId": "rtb-22574640"
3358
- },
3359
- "comments": {
3360
- "input": {
3361
- },
3362
- "output": {
3363
- }
3364
- },
3365
- "description": "This example replaces the specified route in the specified table table. The new route matches the specified CIDR and sends the traffic to the specified virtual private gateway.",
3366
- "id": "ec2-replace-route-1",
3367
- "title": "To replace a route"
3368
- }
3369
- ],
3370
- "ReplaceRouteTableAssociation": [
3371
- {
3372
- "input": {
3373
- "AssociationId": "rtbassoc-781d0d1a",
3374
- "RouteTableId": "rtb-22574640"
3375
- },
3376
- "output": {
3377
- "NewAssociationId": "rtbassoc-3a1f0f58"
3378
- },
3379
- "comments": {
3380
- "input": {
3381
- },
3382
- "output": {
3383
- }
3384
- },
3385
- "description": "This example associates the specified route table with the subnet for the specified route table association.",
3386
- "id": "ec2-replace-route-table-association-1",
3387
- "title": "To replace the route table associated with a subnet"
3388
- }
3389
- ],
3390
- "RequestSpotFleet": [
3391
- {
3392
- "input": {
3393
- "SpotFleetRequestConfig": {
3394
- "IamFleetRole": "arn:aws:iam::123456789012:role/my-spot-fleet-role",
3395
- "LaunchSpecifications": [
3396
- {
3397
- "IamInstanceProfile": {
3398
- "Arn": "arn:aws:iam::123456789012:instance-profile/my-iam-role"
3399
- },
3400
- "ImageId": "ami-1a2b3c4d",
3401
- "InstanceType": "m3.medium",
3402
- "KeyName": "my-key-pair",
3403
- "SecurityGroups": [
3404
- {
3405
- "GroupId": "sg-1a2b3c4d"
3406
- }
3407
- ],
3408
- "SubnetId": "subnet-1a2b3c4d, subnet-3c4d5e6f"
3409
- }
3410
- ],
3411
- "SpotPrice": "0.04",
3412
- "TargetCapacity": 2
3413
- }
3414
- },
3415
- "output": {
3416
- "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"
3417
- },
3418
- "comments": {
3419
- "input": {
3420
- },
3421
- "output": {
3422
- }
3423
- },
3424
- "description": "This example creates a Spot fleet request with two launch specifications that differ only by subnet. The Spot fleet launches the instances in the specified subnet with the lowest price. If the instances are launched in a default VPC, they receive a public IP address by default. If the instances are launched in a nondefault VPC, they do not receive a public IP address by default. Note that you can't specify different subnets from the same Availability Zone in a Spot fleet request.",
3425
- "id": "ec2-request-spot-fleet-1",
3426
- "title": "To request a Spot fleet in the subnet with the lowest price"
3427
- },
3428
- {
3429
- "input": {
3430
- "SpotFleetRequestConfig": {
3431
- "IamFleetRole": "arn:aws:iam::123456789012:role/my-spot-fleet-role",
3432
- "LaunchSpecifications": [
3433
- {
3434
- "IamInstanceProfile": {
3435
- "Arn": "arn:aws:iam::123456789012:instance-profile/my-iam-role"
3436
- },
3437
- "ImageId": "ami-1a2b3c4d",
3438
- "InstanceType": "m3.medium",
3439
- "KeyName": "my-key-pair",
3440
- "Placement": {
3441
- "AvailabilityZone": "us-west-2a, us-west-2b"
3442
- },
3443
- "SecurityGroups": [
3444
- {
3445
- "GroupId": "sg-1a2b3c4d"
3446
- }
3447
- ]
3448
- }
3449
- ],
3450
- "SpotPrice": "0.04",
3451
- "TargetCapacity": 2
3452
- }
3453
- },
3454
- "output": {
3455
- "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"
3456
- },
3457
- "comments": {
3458
- "input": {
3459
- },
3460
- "output": {
3461
- }
3462
- },
3463
- "description": "This example creates a Spot fleet request with two launch specifications that differ only by Availability Zone. The Spot fleet launches the instances in the specified Availability Zone with the lowest price. If your account supports EC2-VPC only, Amazon EC2 launches the Spot instances in the default subnet of the Availability Zone. If your account supports EC2-Classic, Amazon EC2 launches the instances in EC2-Classic in the Availability Zone.",
3464
- "id": "ec2-request-spot-fleet-2",
3465
- "title": "To request a Spot fleet in the Availability Zone with the lowest price"
3466
- },
3467
- {
3468
- "input": {
3469
- "SpotFleetRequestConfig": {
3470
- "IamFleetRole": "arn:aws:iam::123456789012:role/my-spot-fleet-role",
3471
- "LaunchSpecifications": [
3472
- {
3473
- "IamInstanceProfile": {
3474
- "Arn": "arn:aws:iam::880185128111:instance-profile/my-iam-role"
3475
- },
3476
- "ImageId": "ami-1a2b3c4d",
3477
- "InstanceType": "m3.medium",
3478
- "KeyName": "my-key-pair",
3479
- "NetworkInterfaces": [
3480
- {
3481
- "AssociatePublicIpAddress": true,
3482
- "DeviceIndex": 0,
3483
- "Groups": [
3484
- "sg-1a2b3c4d"
3485
- ],
3486
- "SubnetId": "subnet-1a2b3c4d"
3487
- }
3488
- ]
3489
- }
3490
- ],
3491
- "SpotPrice": "0.04",
3492
- "TargetCapacity": 2
3493
- }
3494
- },
3495
- "output": {
3496
- "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"
3497
- },
3498
- "comments": {
3499
- "input": {
3500
- },
3501
- "output": {
3502
- }
3503
- },
3504
- "description": "This example assigns public addresses to instances launched in a nondefault VPC. Note that when you specify a network interface, you must include the subnet ID and security group ID using the network interface.",
3505
- "id": "ec2-request-spot-fleet-3",
3506
- "title": "To launch Spot instances in a subnet and assign them public IP addresses"
3507
- },
3508
- {
3509
- "input": {
3510
- "SpotFleetRequestConfig": {
3511
- "AllocationStrategy": "diversified",
3512
- "IamFleetRole": "arn:aws:iam::123456789012:role/my-spot-fleet-role",
3513
- "LaunchSpecifications": [
3514
- {
3515
- "ImageId": "ami-1a2b3c4d",
3516
- "InstanceType": "c4.2xlarge",
3517
- "SubnetId": "subnet-1a2b3c4d"
3518
- },
3519
- {
3520
- "ImageId": "ami-1a2b3c4d",
3521
- "InstanceType": "m3.2xlarge",
3522
- "SubnetId": "subnet-1a2b3c4d"
3523
- },
3524
- {
3525
- "ImageId": "ami-1a2b3c4d",
3526
- "InstanceType": "r3.2xlarge",
3527
- "SubnetId": "subnet-1a2b3c4d"
3528
- }
3529
- ],
3530
- "SpotPrice": "0.70",
3531
- "TargetCapacity": 30
3532
- }
3533
- },
3534
- "output": {
3535
- "SpotFleetRequestId": "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"
3536
- },
3537
- "comments": {
3538
- "input": {
3539
- },
3540
- "output": {
3541
- }
3542
- },
3543
- "description": "This example creates a Spot fleet request that launches 30 instances using the diversified allocation strategy. The launch specifications differ by instance type. The Spot fleet distributes the instances across the launch specifications such that there are 10 instances of each type.",
3544
- "id": "ec2-request-spot-fleet-4",
3545
- "title": "To request a Spot fleet using the diversified allocation strategy"
3546
- }
3547
- ],
3548
- "RequestSpotInstances": [
3549
- {
3550
- "input": {
3551
- "InstanceCount": 5,
3552
- "LaunchSpecification": {
3553
- "IamInstanceProfile": {
3554
- "Arn": "arn:aws:iam::123456789012:instance-profile/my-iam-role"
3555
- },
3556
- "ImageId": "ami-1a2b3c4d",
3557
- "InstanceType": "m3.medium",
3558
- "KeyName": "my-key-pair",
3559
- "Placement": {
3560
- "AvailabilityZone": "us-west-2a"
3561
- },
3562
- "SecurityGroupIds": [
3563
- "sg-1a2b3c4d"
3564
- ]
3565
- },
3566
- "SpotPrice": "0.03",
3567
- "Type": "one-time"
3568
- },
3569
- "comments": {
3570
- "input": {
3571
- },
3572
- "output": {
3573
- }
3574
- },
3575
- "description": "This example creates a one-time Spot Instance request for five instances in the specified Availability Zone. If your account supports EC2-VPC only, Amazon EC2 launches the instances in the default subnet of the specified Availability Zone. If your account supports EC2-Classic, Amazon EC2 launches the instances in EC2-Classic in the specified Availability Zone.",
3576
- "id": "ec2-request-spot-instances-1",
3577
- "title": "To create a one-time Spot Instance request"
3578
- },
3579
- {
3580
- "input": {
3581
- "InstanceCount": 5,
3582
- "LaunchSpecification": {
3583
- "IamInstanceProfile": {
3584
- "Arn": "arn:aws:iam::123456789012:instance-profile/my-iam-role"
3585
- },
3586
- "ImageId": "ami-1a2b3c4d",
3587
- "InstanceType": "m3.medium",
3588
- "SecurityGroupIds": [
3589
- "sg-1a2b3c4d"
3590
- ],
3591
- "SubnetId": "subnet-1a2b3c4d"
3592
- },
3593
- "SpotPrice": "0.050",
3594
- "Type": "one-time"
3595
- },
3596
- "comments": {
3597
- "input": {
3598
- },
3599
- "output": {
3600
- }
3601
- },
3602
- "description": "This example command creates a one-time Spot Instance request for five instances in the specified subnet. Amazon EC2 launches the instances in the specified subnet. If the VPC is a nondefault VPC, the instances do not receive a public IP address by default.",
3603
- "id": "ec2-request-spot-instances-2",
3604
- "title": "To create a one-time Spot Instance request"
3605
- }
3606
- ],
3607
- "ResetSnapshotAttribute": [
3608
- {
3609
- "input": {
3610
- "Attribute": "createVolumePermission",
3611
- "SnapshotId": "snap-1234567890abcdef0"
3612
- },
3613
- "output": {
3614
- },
3615
- "comments": {
3616
- "input": {
3617
- },
3618
- "output": {
3619
- }
3620
- },
3621
- "description": "This example resets the create volume permissions for snapshot ``snap-1234567890abcdef0``. If the command succeeds, no output is returned.",
3622
- "id": "to-reset-a-snapshot-attribute-1472508825735",
3623
- "title": "To reset a snapshot attribute"
3624
- }
3625
- ],
3626
- "RestoreAddressToClassic": [
3627
- {
3628
- "input": {
3629
- "PublicIp": "198.51.100.0"
3630
- },
3631
- "output": {
3632
- "PublicIp": "198.51.100.0",
3633
- "Status": "MoveInProgress"
3634
- },
3635
- "comments": {
3636
- "input": {
3637
- },
3638
- "output": {
3639
- }
3640
- },
3641
- "description": "This example restores the specified Elastic IP address to the EC2-Classic platform.",
3642
- "id": "ec2-restore-address-to-classic-1",
3643
- "title": "To restore an address to EC2-Classic"
3644
- }
3645
- ],
3646
- "RunScheduledInstances": [
3647
- {
3648
- "input": {
3649
- "InstanceCount": 1,
3650
- "LaunchSpecification": {
3651
- "IamInstanceProfile": {
3652
- "Name": "my-iam-role"
3653
- },
3654
- "ImageId": "ami-12345678",
3655
- "InstanceType": "c4.large",
3656
- "KeyName": "my-key-pair",
3657
- "NetworkInterfaces": [
3658
- {
3659
- "AssociatePublicIpAddress": true,
3660
- "DeviceIndex": 0,
3661
- "Groups": [
3662
- "sg-12345678"
3663
- ],
3664
- "SubnetId": "subnet-12345678"
3665
- }
3666
- ]
3667
- },
3668
- "ScheduledInstanceId": "sci-1234-1234-1234-1234-123456789012"
3669
- },
3670
- "output": {
3671
- "InstanceIdSet": [
3672
- "i-1234567890abcdef0"
3673
- ]
3674
- },
3675
- "comments": {
3676
- "input": {
3677
- },
3678
- "output": {
3679
- }
3680
- },
3681
- "description": "This example launches the specified Scheduled Instance in a VPC.",
3682
- "id": "ec2-run-scheduled-instances-1",
3683
- "title": "To launch a Scheduled Instance in a VPC"
3684
- },
3685
- {
3686
- "input": {
3687
- "InstanceCount": 1,
3688
- "LaunchSpecification": {
3689
- "IamInstanceProfile": {
3690
- "Name": "my-iam-role"
3691
- },
3692
- "ImageId": "ami-12345678",
3693
- "InstanceType": "c4.large",
3694
- "KeyName": "my-key-pair",
3695
- "Placement": {
3696
- "AvailabilityZone": "us-west-2b"
3697
- },
3698
- "SecurityGroupIds": [
3699
- "sg-12345678"
3700
- ]
3701
- },
3702
- "ScheduledInstanceId": "sci-1234-1234-1234-1234-123456789012"
3703
- },
3704
- "output": {
3705
- "InstanceIdSet": [
3706
- "i-1234567890abcdef0"
3707
- ]
3708
- },
3709
- "comments": {
3710
- "input": {
3711
- },
3712
- "output": {
3713
- }
3714
- },
3715
- "description": "This example launches the specified Scheduled Instance in EC2-Classic.",
3716
- "id": "ec2-run-scheduled-instances-2",
3717
- "title": "To launch a Scheduled Instance in EC2-Classic"
3718
- }
3719
- ],
3720
- "UnassignPrivateIpAddresses": [
3721
- {
3722
- "input": {
3723
- "NetworkInterfaceId": "eni-e5aa89a3",
3724
- "PrivateIpAddresses": [
3725
- "10.0.0.82"
3726
- ]
3727
- },
3728
- "comments": {
3729
- "input": {
3730
- },
3731
- "output": {
3732
- }
3733
- },
3734
- "description": "This example unassigns the specified private IP address from the specified network interface.",
3735
- "id": "ec2-unassign-private-ip-addresses-1",
3736
- "title": "To unassign a secondary private IP address from a network interface"
3737
- }
3738
- ]
3739
- }
3740
- }