aws-sdk-core 2.11.406 → 3.77.0

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