aws-sdk-core 2.8.4 → 3.129.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (714) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1287 -0
  3. data/LICENSE.txt +202 -0
  4. data/VERSION +1 -0
  5. data/ca-bundle.crt +3615 -3541
  6. data/lib/aws-defaults/default_configuration.rb +153 -0
  7. data/lib/aws-defaults/defaults_mode_config_resolver.rb +107 -0
  8. data/lib/aws-defaults.rb +3 -0
  9. data/lib/aws-sdk-core/arn.rb +92 -0
  10. data/lib/aws-sdk-core/arn_parser.rb +40 -0
  11. data/lib/aws-sdk-core/assume_role_credentials.rb +20 -0
  12. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +109 -0
  13. data/lib/aws-sdk-core/async_client_stubs.rb +82 -0
  14. data/lib/aws-sdk-core/binary/decode_handler.rb +58 -0
  15. data/lib/aws-sdk-core/binary/encode_handler.rb +34 -0
  16. data/lib/aws-sdk-core/binary/event_builder.rb +124 -0
  17. data/lib/aws-sdk-core/binary/event_parser.rb +136 -0
  18. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +64 -0
  19. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +55 -0
  20. data/lib/aws-sdk-core/binary.rb +8 -0
  21. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +51 -0
  22. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +199 -0
  23. data/lib/aws-sdk-core/client_stubs.rb +69 -12
  24. data/lib/aws-sdk-core/credential_provider.rb +2 -29
  25. data/lib/aws-sdk-core/credential_provider_chain.rb +111 -32
  26. data/lib/aws-sdk-core/credentials.rb +2 -0
  27. data/lib/aws-sdk-core/deprecations.rb +17 -11
  28. data/lib/aws-sdk-core/eager_loader.rb +2 -0
  29. data/lib/aws-sdk-core/ec2_metadata.rb +238 -0
  30. data/lib/aws-sdk-core/ecs_credentials.rb +20 -11
  31. data/lib/aws-sdk-core/endpoint_cache.rb +193 -0
  32. data/lib/aws-sdk-core/errors.rb +227 -18
  33. data/lib/aws-sdk-core/event_emitter.rb +64 -0
  34. data/lib/aws-sdk-core/ini_parser.rb +3 -0
  35. data/lib/aws-sdk-core/instance_profile_credentials.rb +237 -45
  36. data/lib/aws-sdk-core/json/builder.rb +6 -2
  37. data/lib/aws-sdk-core/json/error_handler.rb +21 -2
  38. data/lib/aws-sdk-core/json/handler.rb +24 -3
  39. data/lib/aws-sdk-core/json/json_engine.rb +12 -8
  40. data/lib/aws-sdk-core/json/oj_engine.rb +35 -6
  41. data/lib/aws-sdk-core/json/parser.rb +11 -1
  42. data/lib/aws-sdk-core/json.rb +15 -33
  43. data/lib/aws-sdk-core/log/formatter.rb +16 -4
  44. data/lib/aws-sdk-core/log/handler.rb +2 -0
  45. data/lib/aws-sdk-core/log/param_filter.rb +41 -15
  46. data/lib/aws-sdk-core/log/param_formatter.rb +2 -0
  47. data/lib/aws-sdk-core/pageable_response.rb +112 -47
  48. data/lib/aws-sdk-core/pager.rb +35 -25
  49. data/lib/aws-sdk-core/param_converter.rb +5 -3
  50. data/lib/aws-sdk-core/param_validator.rb +109 -26
  51. data/lib/aws-sdk-core/plugins/api_key.rb +56 -0
  52. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +32 -0
  53. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +36 -0
  54. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +39 -0
  55. data/lib/aws-sdk-core/plugins/checksum_algorithm.rb +340 -0
  56. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +283 -0
  57. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +86 -0
  58. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +81 -0
  59. data/lib/aws-sdk-core/plugins/defaults_mode.rb +40 -0
  60. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +168 -0
  61. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +65 -0
  62. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +32 -0
  63. data/lib/aws-sdk-core/plugins/global_configuration.rb +21 -10
  64. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +2 -0
  65. data/lib/aws-sdk-core/plugins/http_checksum.rb +64 -0
  66. data/lib/aws-sdk-core/plugins/idempotency_token.rb +3 -2
  67. data/lib/aws-sdk-core/plugins/invocation_id.rb +35 -0
  68. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +31 -0
  69. data/lib/aws-sdk-core/plugins/logging.rb +20 -18
  70. data/lib/aws-sdk-core/plugins/param_converter.rb +11 -5
  71. data/lib/aws-sdk-core/plugins/param_validator.rb +10 -5
  72. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +29 -0
  73. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +4 -1
  74. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +15 -12
  75. data/lib/aws-sdk-core/plugins/protocols/query.rb +4 -2
  76. data/lib/aws-sdk-core/plugins/protocols/rest_json.rb +18 -1
  77. data/lib/aws-sdk-core/plugins/protocols/rest_xml.rb +2 -0
  78. data/lib/aws-sdk-core/plugins/recursion_detection.rb +27 -0
  79. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +96 -28
  80. data/lib/aws-sdk-core/plugins/response_paging.rb +8 -19
  81. data/lib/aws-sdk-core/plugins/retries/client_rate_limiter.rb +139 -0
  82. data/lib/aws-sdk-core/plugins/retries/clock_skew.rb +100 -0
  83. data/lib/aws-sdk-core/plugins/retries/error_inspector.rb +146 -0
  84. data/lib/aws-sdk-core/plugins/retries/retry_quota.rb +59 -0
  85. data/lib/aws-sdk-core/plugins/retry_errors.rb +342 -82
  86. data/lib/aws-sdk-core/plugins/signature_v2.rb +53 -0
  87. data/lib/aws-sdk-core/plugins/signature_v4.rb +144 -0
  88. data/lib/aws-sdk-core/plugins/stub_responses.rb +44 -18
  89. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  90. data/lib/aws-sdk-core/plugins/user_agent.rb +25 -10
  91. data/lib/aws-sdk-core/process_credentials.rb +81 -0
  92. data/lib/aws-sdk-core/query/ec2_param_builder.rb +11 -3
  93. data/lib/aws-sdk-core/query/handler.rb +22 -16
  94. data/lib/aws-sdk-core/query/param.rb +2 -0
  95. data/lib/aws-sdk-core/query/param_builder.rb +12 -4
  96. data/lib/aws-sdk-core/query/param_list.rb +2 -0
  97. data/lib/aws-sdk-core/query.rb +7 -0
  98. data/lib/aws-sdk-core/refreshing_credentials.rb +16 -3
  99. data/lib/aws-sdk-core/resources/collection.rb +123 -0
  100. data/lib/aws-sdk-core/rest/handler.rb +3 -0
  101. data/lib/aws-sdk-core/rest/request/body.rb +21 -1
  102. data/lib/aws-sdk-core/rest/request/builder.rb +4 -1
  103. data/lib/aws-sdk-core/rest/request/endpoint.rb +13 -6
  104. data/lib/aws-sdk-core/rest/request/headers.rb +38 -5
  105. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +17 -2
  106. data/lib/aws-sdk-core/rest/response/body.rb +16 -1
  107. data/lib/aws-sdk-core/rest/response/headers.rb +13 -1
  108. data/lib/aws-sdk-core/rest/response/parser.rb +20 -14
  109. data/lib/aws-sdk-core/rest/response/status_code.rb +2 -0
  110. data/lib/aws-sdk-core/rest.rb +12 -0
  111. data/lib/aws-sdk-core/shared_config.rb +205 -69
  112. data/lib/aws-sdk-core/shared_credentials.rb +11 -1
  113. data/lib/aws-sdk-core/sso_credentials.rb +136 -0
  114. data/lib/aws-sdk-core/structure.rb +33 -13
  115. data/lib/aws-sdk-core/stubbing/data_applicator.rb +3 -1
  116. data/lib/aws-sdk-core/stubbing/empty_stub.rb +12 -3
  117. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +10 -0
  118. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +3 -1
  119. data/lib/aws-sdk-core/stubbing/protocols/json.rb +3 -1
  120. data/lib/aws-sdk-core/stubbing/protocols/query.rb +4 -2
  121. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +120 -2
  122. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +8 -2
  123. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +11 -7
  124. data/lib/aws-sdk-core/stubbing/stub_data.rb +18 -3
  125. data/lib/aws-sdk-core/stubbing/xml_error.rb +2 -0
  126. data/lib/aws-sdk-core/type_builder.rb +2 -0
  127. data/lib/aws-sdk-core/util.rb +72 -0
  128. data/lib/aws-sdk-core/waiters/errors.rb +2 -0
  129. data/lib/aws-sdk-core/waiters/poller.rb +7 -9
  130. data/lib/aws-sdk-core/waiters/waiter.rb +5 -2
  131. data/lib/aws-sdk-core/waiters.rb +5 -0
  132. data/lib/aws-sdk-core/xml/builder.rb +15 -7
  133. data/lib/aws-sdk-core/xml/default_list.rb +2 -0
  134. data/lib/aws-sdk-core/xml/default_map.rb +2 -0
  135. data/lib/aws-sdk-core/xml/doc_builder.rb +15 -4
  136. data/lib/aws-sdk-core/xml/error_handler.rb +30 -6
  137. data/lib/aws-sdk-core/xml/parser/engines/libxml.rb +2 -0
  138. data/lib/aws-sdk-core/xml/parser/engines/nokogiri.rb +2 -0
  139. data/lib/aws-sdk-core/xml/parser/engines/oga.rb +2 -0
  140. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +7 -1
  141. data/lib/aws-sdk-core/xml/parser/engines/rexml.rb +4 -1
  142. data/lib/aws-sdk-core/xml/parser/frame.rb +31 -6
  143. data/lib/aws-sdk-core/xml/parser/parsing_error.rb +2 -0
  144. data/lib/aws-sdk-core/xml/parser/stack.rb +2 -0
  145. data/lib/aws-sdk-core/xml/parser.rb +8 -11
  146. data/lib/aws-sdk-core/xml.rb +11 -0
  147. data/lib/aws-sdk-core.rb +112 -440
  148. data/lib/aws-sdk-sso/client.rb +570 -0
  149. data/lib/aws-sdk-sso/client_api.rb +190 -0
  150. data/lib/aws-sdk-sso/customizations.rb +1 -0
  151. data/lib/aws-sdk-sso/errors.rb +102 -0
  152. data/lib/aws-sdk-sso/resource.rb +26 -0
  153. data/lib/aws-sdk-sso/types.rb +352 -0
  154. data/lib/aws-sdk-sso.rb +55 -0
  155. data/lib/aws-sdk-sts/client.rb +2315 -0
  156. data/lib/aws-sdk-sts/client_api.rb +344 -0
  157. data/lib/aws-sdk-sts/customizations.rb +4 -0
  158. data/lib/aws-sdk-sts/errors.rb +166 -0
  159. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +38 -0
  160. data/lib/aws-sdk-sts/presigner.rb +75 -0
  161. data/lib/aws-sdk-sts/resource.rb +26 -0
  162. data/lib/aws-sdk-sts/types.rb +1673 -0
  163. data/lib/aws-sdk-sts.rb +55 -0
  164. data/lib/seahorse/client/async_base.rb +52 -0
  165. data/lib/seahorse/client/async_response.rb +64 -0
  166. data/lib/seahorse/client/base.rb +8 -9
  167. data/lib/seahorse/client/block_io.rb +6 -2
  168. data/lib/seahorse/client/configuration.rb +16 -2
  169. data/lib/seahorse/client/events.rb +3 -1
  170. data/lib/seahorse/client/h2/connection.rb +250 -0
  171. data/lib/seahorse/client/h2/handler.rb +152 -0
  172. data/lib/seahorse/client/handler.rb +2 -0
  173. data/lib/seahorse/client/handler_builder.rb +2 -0
  174. data/lib/seahorse/client/handler_list.rb +2 -0
  175. data/lib/seahorse/client/handler_list_entry.rb +6 -4
  176. data/lib/seahorse/client/http/async_response.rb +44 -0
  177. data/lib/seahorse/client/http/headers.rb +2 -0
  178. data/lib/seahorse/client/http/request.rb +5 -3
  179. data/lib/seahorse/client/http/response.rb +18 -11
  180. data/lib/seahorse/client/logging/formatter.rb +9 -1
  181. data/lib/seahorse/client/logging/handler.rb +4 -0
  182. data/lib/seahorse/client/managed_file.rb +2 -0
  183. data/lib/seahorse/client/net_http/connection_pool.rb +46 -27
  184. data/lib/seahorse/client/net_http/handler.rb +29 -7
  185. data/lib/seahorse/client/net_http/patches.rb +18 -79
  186. data/lib/seahorse/client/networking_error.rb +30 -0
  187. data/lib/seahorse/client/plugin.rb +69 -6
  188. data/lib/seahorse/client/plugin_list.rb +2 -0
  189. data/lib/seahorse/client/plugins/content_length.rb +14 -3
  190. data/lib/seahorse/client/plugins/endpoint.rb +16 -10
  191. data/lib/seahorse/client/plugins/h2.rb +69 -0
  192. data/lib/seahorse/client/plugins/logging.rb +19 -19
  193. data/lib/seahorse/client/plugins/net_http.rb +58 -14
  194. data/lib/seahorse/client/plugins/operation_methods.rb +2 -0
  195. data/lib/seahorse/client/plugins/raise_response_errors.rb +6 -4
  196. data/lib/seahorse/client/plugins/request_callback.rb +110 -0
  197. data/lib/seahorse/client/plugins/response_target.rb +28 -10
  198. data/lib/seahorse/client/request.rb +2 -0
  199. data/lib/seahorse/client/request_context.rb +7 -0
  200. data/lib/seahorse/client/response.rb +5 -5
  201. data/lib/seahorse/model/api.rb +43 -0
  202. data/lib/seahorse/model/authorizer.rb +23 -0
  203. data/lib/seahorse/model/operation.rb +28 -0
  204. data/lib/seahorse/model/shapes.rb +71 -2
  205. data/lib/seahorse/util.rb +9 -22
  206. data/lib/seahorse/version.rb +2 -0
  207. data/lib/seahorse.rb +63 -60
  208. metadata +132 -520
  209. data/apis/acm/2015-12-08/api-2.json +0 -595
  210. data/apis/acm/2015-12-08/examples-1.json +0 -5
  211. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  212. data/apis/apigateway/2015-07-09/api-2.json +0 -4523
  213. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  214. data/apis/apigateway/2015-07-09/paginators-1.json +0 -70
  215. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -511
  216. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -257
  217. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  218. data/apis/appstream/2016-12-01/api-2.json +0 -820
  219. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  220. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  221. data/apis/autoscaling/2011-01-01/api-2.json +0 -2172
  222. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1395
  223. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  224. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  225. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  226. data/apis/batch/2016-08-10/api-2.json +0 -885
  227. data/apis/batch/2016-08-10/examples-1.json +0 -589
  228. data/apis/budgets/2016-10-20/api-2.json +0 -697
  229. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  230. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  231. data/apis/clouddirectory/2016-05-10/api-2.json +0 -3033
  232. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  233. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -84
  234. data/apis/cloudformation/2010-05-15/api-2.json +0 -1428
  235. data/apis/cloudformation/2010-05-15/examples-1.json +0 -158
  236. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  237. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  238. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -157
  239. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  240. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  241. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  242. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  243. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  244. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  248. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  249. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  250. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  251. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  252. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  253. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  254. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  255. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  256. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  257. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  258. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  259. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  260. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  261. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  262. data/apis/cloudhsm/2014-05-30/api-2.json +0 -878
  263. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  264. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2002
  265. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  266. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  267. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  268. data/apis/cloudtrail/2013-11-01/api-2.json +0 -907
  269. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  270. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -13
  271. data/apis/codebuild/2016-10-06/api-2.json +0 -702
  272. data/apis/codebuild/2016-10-06/examples-1.json +0 -5
  273. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  274. data/apis/codecommit/2015-04-13/api-2.json +0 -1112
  275. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  276. data/apis/codecommit/2015-04-13/paginators-1.json +0 -19
  277. data/apis/codedeploy/2014-10-06/api-2.json +0 -2300
  278. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  279. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -4
  280. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  281. data/apis/codepipeline/2015-07-09/api-2.json +0 -1714
  282. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  283. data/apis/cognito-identity/2014-06-30/api-2.json +0 -943
  284. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  285. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  286. data/apis/cognito-idp/2016-04-18/api-2.json +0 -3325
  287. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  288. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  289. data/apis/config/2014-11-12/api-2.json +0 -1417
  290. data/apis/config/2014-11-12/examples-1.json +0 -5
  291. data/apis/config/2014-11-12/paginators-1.json +0 -10
  292. data/apis/cur/2017-01-06/api-2.json +0 -226
  293. data/apis/cur/2017-01-06/examples-1.json +0 -5
  294. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  295. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  296. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  297. data/apis/devicefarm/2015-06-23/api-2.json +0 -2031
  298. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  299. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  300. data/apis/directconnect/2012-10-25/api-2.json +0 -1347
  301. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  302. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  303. data/apis/discovery/2015-11-01/api-2.json +0 -867
  304. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  305. data/apis/dms/2016-01-01/api-2.json +0 -1505
  306. data/apis/dms/2016-01-01/examples-1.json +0 -5
  307. data/apis/ds/2015-04-16/api-2.json +0 -1972
  308. data/apis/ds/2015-04-16/examples-1.json +0 -5
  309. data/apis/dynamodb/2011-12-05/api-2.json +0 -802
  310. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  311. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  312. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  313. data/apis/dynamodb/2012-08-10/api-2.json +0 -1405
  314. data/apis/dynamodb/2012-08-10/examples-1.json +0 -628
  315. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  316. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  317. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  318. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  319. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  320. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  321. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  322. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  323. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  324. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  325. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  326. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  327. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  328. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  329. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  330. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  331. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  332. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  333. data/apis/ec2/2016-11-15/api-2.json +0 -15373
  334. data/apis/ec2/2016-11-15/examples-1.json +0 -3740
  335. data/apis/ec2/2016-11-15/paginators-1.json +0 -144
  336. data/apis/ec2/2016-11-15/resources-1.json +0 -2582
  337. data/apis/ec2/2016-11-15/waiters-2.json +0 -611
  338. data/apis/ecr/2015-09-21/api-2.json +0 -947
  339. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  340. data/apis/ecr/2015-09-21/paginators-1.json +0 -22
  341. data/apis/ecs/2014-11-13/api-2.json +0 -1625
  342. data/apis/ecs/2014-11-13/examples-1.json +0 -883
  343. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  344. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  345. data/apis/elasticache/2015-02-02/api-2.json +0 -2474
  346. data/apis/elasticache/2015-02-02/examples-1.json +0 -2968
  347. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  348. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  349. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2332
  350. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  351. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  352. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -714
  353. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -222
  354. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1590
  355. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  356. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  357. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  358. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -1823
  359. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  360. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  361. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1794
  362. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  363. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  364. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  365. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1483
  366. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  367. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  368. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  369. data/apis/email/2010-12-01/api-2.json +0 -2212
  370. data/apis/email/2010-12-01/examples-1.json +0 -953
  371. data/apis/email/2010-12-01/paginators-1.json +0 -13
  372. data/apis/email/2010-12-01/waiters-2.json +0 -18
  373. data/apis/es/2015-01-01/api-2.json +0 -862
  374. data/apis/es/2015-01-01/examples-1.json +0 -5
  375. data/apis/es/2015-01-01/paginators-1.json +0 -14
  376. data/apis/events/2015-10-07/api-2.json +0 -644
  377. data/apis/events/2015-10-07/examples-1.json +0 -5
  378. data/apis/firehose/2015-08-04/api-2.json +0 -866
  379. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  380. data/apis/gamelift/2015-10-01/api-2.json +0 -2256
  381. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  382. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  383. data/apis/glacier/2012-06-01/api-2.json +0 -1734
  384. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  385. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  386. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  387. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  388. data/apis/health/2016-08-04/api-2.json +0 -547
  389. data/apis/health/2016-08-04/examples-1.json +0 -5
  390. data/apis/health/2016-08-04/paginators-1.json +0 -31
  391. data/apis/iam/2010-05-08/api-2.json +0 -4730
  392. data/apis/iam/2010-05-08/examples-1.json +0 -1191
  393. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  394. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  395. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  396. data/apis/importexport/2010-06-01/api-2.json +0 -667
  397. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  398. data/apis/inspector/2016-02-16/api-2.json +0 -1965
  399. data/apis/inspector/2016-02-16/examples-1.json +0 -1140
  400. data/apis/iot/2015-05-28/api-2.json +0 -4347
  401. data/apis/iot/2015-05-28/examples-1.json +0 -5
  402. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  403. data/apis/kinesis/2013-12-02/api-2.json +0 -890
  404. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  405. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  406. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  407. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1049
  408. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  409. data/apis/kms/2014-11-01/api-2.json +0 -1492
  410. data/apis/kms/2014-11-01/examples-1.json +0 -862
  411. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  412. data/apis/lambda/2014-11-11/api-2.json +0 -668
  413. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  414. data/apis/lambda/2015-03-31/api-2.json +0 -1514
  415. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  416. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  417. data/apis/lightsail/2016-11-28/api-2.json +0 -2137
  418. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  419. data/apis/logs/2014-03-28/api-2.json +0 -1246
  420. data/apis/logs/2014-03-28/examples-1.json +0 -5
  421. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  422. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  423. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  424. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  425. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  426. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -170
  427. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  428. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -263
  429. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  430. data/apis/monitoring/2010-08-01/api-2.json +0 -811
  431. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  432. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  433. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  434. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  435. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1665
  436. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  437. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  438. data/apis/opsworks/2013-02-18/api-2.json +0 -2607
  439. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  440. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  441. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  442. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  443. data/apis/opsworkscm/2016-11-01/api-2.json +0 -730
  444. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  445. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  446. data/apis/organizations/2016-11-28/api-2.json +0 -1989
  447. data/apis/organizations/2016-11-28/examples-1.json +0 -1398
  448. data/apis/organizations/2016-11-28/paginators-1.json +0 -4
  449. data/apis/pinpoint/2016-12-01/api-2.json +0 -2753
  450. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  451. data/apis/polly/2016-06-10/api-2.json +0 -504
  452. data/apis/polly/2016-06-10/examples-1.json +0 -171
  453. data/apis/rds/2013-01-10/api-2.json +0 -2902
  454. data/apis/rds/2013-01-10/examples-1.json +0 -5
  455. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  456. data/apis/rds/2013-02-12/api-2.json +0 -3058
  457. data/apis/rds/2013-02-12/examples-1.json +0 -5
  458. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  459. data/apis/rds/2013-09-09/api-2.json +0 -3159
  460. data/apis/rds/2013-09-09/examples-1.json +0 -5
  461. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  462. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  463. data/apis/rds/2014-09-01/api-2.json +0 -3272
  464. data/apis/rds/2014-09-01/examples-1.json +0 -5
  465. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  466. data/apis/rds/2014-10-31/api-2.json +0 -5098
  467. data/apis/rds/2014-10-31/examples-1.json +0 -1861
  468. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  469. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  470. data/apis/rds/2014-10-31/waiters-2.json +0 -90
  471. data/apis/redshift/2012-12-01/api-2.json +0 -3775
  472. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  473. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  474. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  475. data/apis/rekognition/2016-06-27/api-2.json +0 -844
  476. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  477. data/apis/rekognition/2016-06-27/paginators-1.json +0 -16
  478. data/apis/route53/2013-04-01/api-2.json +0 -3312
  479. data/apis/route53/2013-04-01/examples-1.json +0 -762
  480. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  481. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  482. data/apis/route53domains/2014-05-15/api-2.json +0 -1323
  483. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  484. data/apis/runtime.lex/2016-11-28/api-2.json +0 -243
  485. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  486. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  487. data/apis/s3/2006-03-01/api-2.json +0 -5368
  488. data/apis/s3/2006-03-01/examples-1.json +0 -5
  489. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  490. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  491. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  492. data/apis/sdb/2009-04-15/api-2.json +0 -955
  493. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  494. data/apis/servicecatalog/2015-12-10/api-2.json +0 -1955
  495. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  496. data/apis/shield/2016-06-02/api-2.json +0 -494
  497. data/apis/shield/2016-06-02/examples-1.json +0 -5
  498. data/apis/sms/2016-10-24/api-2.json +0 -612
  499. data/apis/sms/2016-10-24/examples-1.json +0 -5
  500. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  501. data/apis/snowball/2016-06-30/api-2.json +0 -834
  502. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  503. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  504. data/apis/sns/2010-03-31/api-2.json +0 -1145
  505. data/apis/sns/2010-03-31/examples-1.json +0 -5
  506. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  507. data/apis/sns/2010-03-31/resources-1.json +0 -327
  508. data/apis/sqs/2012-11-05/api-2.json +0 -986
  509. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  510. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  511. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  512. data/apis/ssm/2014-11-06/api-2.json +0 -5296
  513. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  514. data/apis/ssm/2014-11-06/paginators-1.json +0 -40
  515. data/apis/states/2016-11-23/api-2.json +0 -1021
  516. data/apis/states/2016-11-23/examples-1.json +0 -5
  517. data/apis/states/2016-11-23/paginators-1.json +0 -28
  518. data/apis/storagegateway/2013-06-30/api-2.json +0 -2551
  519. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  520. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  521. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  522. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  523. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  524. data/apis/sts/2011-06-15/api-2.json +0 -522
  525. data/apis/sts/2011-06-15/examples-1.json +0 -206
  526. data/apis/support/2013-04-15/api-2.json +0 -772
  527. data/apis/support/2013-04-15/examples-1.json +0 -5
  528. data/apis/support/2013-04-15/paginators-1.json +0 -25
  529. data/apis/swf/2012-01-25/api-2.json +0 -2839
  530. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  531. data/apis/waf/2015-08-24/api-2.json +0 -1959
  532. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  533. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  534. data/apis/waf-regional/2016-11-28/api-2.json +0 -2090
  535. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  536. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  537. data/apis/workdocs/2016-05-01/api-2.json +0 -1781
  538. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  539. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  540. data/apis/workspaces/2015-04-08/api-2.json +0 -840
  541. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  542. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  543. data/apis/xray/2016-04-12/api-2.json +0 -491
  544. data/apis/xray/2016-04-12/examples-1.json +0 -5
  545. data/bin/aws.rb +0 -180
  546. data/endpoints.json +0 -1935
  547. data/lib/aws-sdk-core/acm.rb +0 -6
  548. data/lib/aws-sdk-core/api/builder.rb +0 -106
  549. data/lib/aws-sdk-core/api/customizations.rb +0 -261
  550. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  551. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  552. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  553. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  554. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  555. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  556. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  557. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  558. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  559. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  560. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  561. data/lib/aws-sdk-core/apigateway.rb +0 -6
  562. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  563. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  564. data/lib/aws-sdk-core/appstream.rb +0 -6
  565. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  566. data/lib/aws-sdk-core/batch.rb +0 -5
  567. data/lib/aws-sdk-core/budgets.rb +0 -6
  568. data/lib/aws-sdk-core/checksums.rb +0 -51
  569. data/lib/aws-sdk-core/client.rb +0 -59
  570. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  571. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  572. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  573. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  574. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  575. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  576. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  577. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  578. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  579. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  580. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  581. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  582. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  583. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  584. data/lib/aws-sdk-core/codebuild.rb +0 -6
  585. data/lib/aws-sdk-core/codecommit.rb +0 -6
  586. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  587. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  588. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  589. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  590. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  591. data/lib/aws-sdk-core/configservice.rb +0 -6
  592. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  593. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  594. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  595. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  596. data/lib/aws-sdk-core/directconnect.rb +0 -6
  597. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  598. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  599. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  600. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  601. data/lib/aws-sdk-core/ec2.rb +0 -8
  602. data/lib/aws-sdk-core/ecr.rb +0 -6
  603. data/lib/aws-sdk-core/ecs.rb +0 -7
  604. data/lib/aws-sdk-core/efs.rb +0 -5
  605. data/lib/aws-sdk-core/elasticache.rb +0 -7
  606. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  607. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  608. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -6
  609. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  610. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  611. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  612. data/lib/aws-sdk-core/emr.rb +0 -7
  613. data/lib/aws-sdk-core/endpoint_provider.rb +0 -104
  614. data/lib/aws-sdk-core/firehose.rb +0 -5
  615. data/lib/aws-sdk-core/gamelift.rb +0 -6
  616. data/lib/aws-sdk-core/glacier.rb +0 -8
  617. data/lib/aws-sdk-core/health.rb +0 -6
  618. data/lib/aws-sdk-core/iam.rb +0 -8
  619. data/lib/aws-sdk-core/importexport.rb +0 -5
  620. data/lib/aws-sdk-core/inspector.rb +0 -5
  621. data/lib/aws-sdk-core/iot.rb +0 -5
  622. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  623. data/lib/aws-sdk-core/kinesis.rb +0 -7
  624. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -5
  625. data/lib/aws-sdk-core/kms.rb +0 -6
  626. data/lib/aws-sdk-core/lambda.rb +0 -6
  627. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  628. data/lib/aws-sdk-core/lex.rb +0 -6
  629. data/lib/aws-sdk-core/lightsail.rb +0 -5
  630. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  631. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  632. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  633. data/lib/aws-sdk-core/mturk.rb +0 -6
  634. data/lib/aws-sdk-core/opsworks.rb +0 -8
  635. data/lib/aws-sdk-core/opsworkscm.rb +0 -6
  636. data/lib/aws-sdk-core/organizations.rb +0 -6
  637. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  638. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  639. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  640. data/lib/aws-sdk-core/partitions/service.rb +0 -74
  641. data/lib/aws-sdk-core/partitions.rb +0 -174
  642. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  643. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  644. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  645. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  646. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  647. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  648. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  649. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  650. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  651. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  652. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  653. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  654. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  655. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  656. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -142
  657. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  658. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  659. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  660. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  661. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  662. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  663. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  664. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  665. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  666. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  667. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  668. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  669. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  670. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  671. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  672. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  673. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  674. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  675. data/lib/aws-sdk-core/polly.rb +0 -13
  676. data/lib/aws-sdk-core/rds.rb +0 -8
  677. data/lib/aws-sdk-core/redshift.rb +0 -7
  678. data/lib/aws-sdk-core/rekognition.rb +0 -6
  679. data/lib/aws-sdk-core/route53.rb +0 -7
  680. data/lib/aws-sdk-core/route53domains.rb +0 -5
  681. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  682. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  683. data/lib/aws-sdk-core/s3.rb +0 -26
  684. data/lib/aws-sdk-core/service.rb +0 -4
  685. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  686. data/lib/aws-sdk-core/ses.rb +0 -7
  687. data/lib/aws-sdk-core/shield.rb +0 -5
  688. data/lib/aws-sdk-core/signers/base.rb +0 -31
  689. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  690. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  691. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  692. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  693. data/lib/aws-sdk-core/simpledb.rb +0 -5
  694. data/lib/aws-sdk-core/sms.rb +0 -6
  695. data/lib/aws-sdk-core/snowball.rb +0 -6
  696. data/lib/aws-sdk-core/sns.rb +0 -7
  697. data/lib/aws-sdk-core/sqs.rb +0 -7
  698. data/lib/aws-sdk-core/ssm.rb +0 -6
  699. data/lib/aws-sdk-core/states.rb +0 -6
  700. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  701. data/lib/aws-sdk-core/sts.rb +0 -5
  702. data/lib/aws-sdk-core/support.rb +0 -6
  703. data/lib/aws-sdk-core/swf.rb +0 -5
  704. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  705. data/lib/aws-sdk-core/version.rb +0 -3
  706. data/lib/aws-sdk-core/waf.rb +0 -6
  707. data/lib/aws-sdk-core/wafregional.rb +0 -6
  708. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  709. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  710. data/lib/aws-sdk-core/workdocs.rb +0 -6
  711. data/lib/aws-sdk-core/workspaces.rb +0 -6
  712. data/lib/aws-sdk-core/xray.rb +0 -5
  713. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  714. data/service-models.json +0 -381
@@ -1,1861 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- "AddSourceIdentifierToSubscription": [
5
- {
6
- "input": {
7
- "SourceIdentifier": "mymysqlinstance",
8
- "SubscriptionName": "mymysqleventsubscription"
9
- },
10
- "output": {
11
- },
12
- "comments": {
13
- "input": {
14
- },
15
- "output": {
16
- }
17
- },
18
- "description": "This example add a source identifier to an event notification subscription.",
19
- "id": "add-source-identifier-to-subscription-93fb6a15-0a59-4577-a7b5-e12db9752c14",
20
- "title": "To add a source identifier to an event notification subscription"
21
- }
22
- ],
23
- "AddTagsToResource": [
24
- {
25
- "input": {
26
- "ResourceName": "arn:aws:rds:us-east-1:992648334831:og:mymysqloptiongroup",
27
- "Tags": [
28
- {
29
- "Key": "Staging",
30
- "Value": "LocationDB"
31
- }
32
- ]
33
- },
34
- "comments": {
35
- "input": {
36
- },
37
- "output": {
38
- }
39
- },
40
- "description": "This example adds a tag to an option group.",
41
- "id": "add-tags-to-resource-fa99ef50-228b-449d-b893-ca4d4e9768ab",
42
- "title": "To add tags to a resource"
43
- }
44
- ],
45
- "ApplyPendingMaintenanceAction": [
46
- {
47
- "input": {
48
- "ApplyAction": "system-update",
49
- "OptInType": "immediate",
50
- "ResourceIdentifier": "arn:aws:rds:us-east-1:992648334831:db:mymysqlinstance"
51
- },
52
- "output": {
53
- },
54
- "comments": {
55
- "input": {
56
- },
57
- "output": {
58
- }
59
- },
60
- "description": "This example immediately applies a pending system update to a DB instance.",
61
- "id": "apply-pending-maintenance-action-2a026047-8bbb-47fc-b695-abad9f308c24",
62
- "title": "To apply a pending maintenance action"
63
- }
64
- ],
65
- "AuthorizeDBSecurityGroupIngress": [
66
- {
67
- "input": {
68
- "CIDRIP": "203.0.113.5/32",
69
- "DBSecurityGroupName": "mydbsecuritygroup"
70
- },
71
- "output": {
72
- },
73
- "comments": {
74
- "input": {
75
- },
76
- "output": {
77
- }
78
- },
79
- "description": "This example authorizes access to the specified security group by the specified CIDR block.",
80
- "id": "authorize-db-security-group-ingress-ebf9ab91-8912-4b07-a32e-ca150668164f",
81
- "title": "To authorize DB security group integress"
82
- }
83
- ],
84
- "CopyDBClusterParameterGroup": [
85
- {
86
- "input": {
87
- "SourceDBClusterParameterGroupIdentifier": "mydbclusterparametergroup",
88
- "TargetDBClusterParameterGroupDescription": "My DB cluster parameter group copy",
89
- "TargetDBClusterParameterGroupIdentifier": "mydbclusterparametergroup-copy"
90
- },
91
- "output": {
92
- },
93
- "comments": {
94
- "input": {
95
- },
96
- "output": {
97
- }
98
- },
99
- "description": "This example copies a DB cluster parameter group.",
100
- "id": "copy-db-cluster-parameter-group-6fefaffe-cde9-4dba-9f0b-d3f593572fe4",
101
- "title": "To copy a DB cluster parameter group"
102
- }
103
- ],
104
- "CopyDBClusterSnapshot": [
105
- {
106
- "input": {
107
- "SourceDBClusterSnapshotIdentifier": "rds:sample-cluster-2016-09-14-10-38",
108
- "TargetDBClusterSnapshotIdentifier": "cluster-snapshot-copy-1"
109
- },
110
- "output": {
111
- },
112
- "comments": {
113
- "input": {
114
- },
115
- "output": {
116
- }
117
- },
118
- "description": "The following example copies an automated snapshot of a DB cluster to a new DB cluster snapshot.",
119
- "id": "to-copy-a-db-cluster-snapshot-1473879770564",
120
- "title": "To copy a DB cluster snapshot"
121
- }
122
- ],
123
- "CopyDBParameterGroup": [
124
- {
125
- "input": {
126
- "SourceDBParameterGroupIdentifier": "mymysqlparametergroup",
127
- "TargetDBParameterGroupDescription": "My MySQL parameter group copy",
128
- "TargetDBParameterGroupIdentifier": "mymysqlparametergroup-copy"
129
- },
130
- "output": {
131
- },
132
- "comments": {
133
- "input": {
134
- },
135
- "output": {
136
- }
137
- },
138
- "description": "This example copies a DB parameter group.",
139
- "id": "copy-db-parameter-group-610d4dba-2c87-467f-ae5d-edd7f8e47349",
140
- "title": "To copy a DB parameter group"
141
- }
142
- ],
143
- "CopyDBSnapshot": [
144
- {
145
- "input": {
146
- "SourceDBSnapshotIdentifier": "mydbsnapshot",
147
- "TargetDBSnapshotIdentifier": "mydbsnapshot-copy"
148
- },
149
- "output": {
150
- },
151
- "comments": {
152
- "input": {
153
- },
154
- "output": {
155
- }
156
- },
157
- "description": "This example copies a DB snapshot.",
158
- "id": "copy-db-snapshot-1b2f0210-bc67-415d-9822-6eecf447dc86",
159
- "title": "To copy a DB snapshot"
160
- }
161
- ],
162
- "CopyOptionGroup": [
163
- {
164
- "input": {
165
- "SourceOptionGroupIdentifier": "mymysqloptiongroup",
166
- "TargetOptionGroupDescription": "My MySQL option group copy",
167
- "TargetOptionGroupIdentifier": "mymysqloptiongroup-copy"
168
- },
169
- "output": {
170
- },
171
- "comments": {
172
- "input": {
173
- },
174
- "output": {
175
- }
176
- },
177
- "description": "This example copies an option group.",
178
- "id": "copy-option-group-8d5c01c3-8846-4e9c-a4b0-1b7237f7d0ec",
179
- "title": "To copy an option group"
180
- }
181
- ],
182
- "CreateDBCluster": [
183
- {
184
- "input": {
185
- "AvailabilityZones": [
186
- "us-east-1a"
187
- ],
188
- "BackupRetentionPeriod": 1,
189
- "DBClusterIdentifier": "mydbcluster",
190
- "DBClusterParameterGroupName": "mydbclusterparametergroup",
191
- "DatabaseName": "myauroradb",
192
- "Engine": "aurora",
193
- "EngineVersion": "5.6.10a",
194
- "MasterUserPassword": "mypassword",
195
- "MasterUsername": "myuser",
196
- "Port": 3306,
197
- "StorageEncrypted": true
198
- },
199
- "output": {
200
- },
201
- "comments": {
202
- "input": {
203
- },
204
- "output": {
205
- }
206
- },
207
- "description": "This example creates a DB cluster.",
208
- "id": "create-db-cluster-423b998d-eba9-40dd-8e19-96c5b6e5f31d",
209
- "title": "To create a DB cluster"
210
- }
211
- ],
212
- "CreateDBClusterParameterGroup": [
213
- {
214
- "input": {
215
- "DBClusterParameterGroupName": "mydbclusterparametergroup",
216
- "DBParameterGroupFamily": "aurora5.6",
217
- "Description": "My DB cluster parameter group"
218
- },
219
- "output": {
220
- },
221
- "comments": {
222
- "input": {
223
- },
224
- "output": {
225
- }
226
- },
227
- "description": "This example creates a DB cluster parameter group.",
228
- "id": "create-db-cluster-parameter-group-8eb1c3ae-1965-4262-afe3-ee134c4430b1",
229
- "title": "To create a DB cluster parameter group"
230
- }
231
- ],
232
- "CreateDBClusterSnapshot": [
233
- {
234
- "input": {
235
- "DBClusterIdentifier": "mydbcluster",
236
- "DBClusterSnapshotIdentifier": "mydbclustersnapshot"
237
- },
238
- "output": {
239
- },
240
- "comments": {
241
- "input": {
242
- },
243
- "output": {
244
- }
245
- },
246
- "description": "This example creates a DB cluster snapshot.",
247
- "id": "create-db-cluster-snapshot-",
248
- "title": "To create a DB cluster snapshot"
249
- }
250
- ],
251
- "CreateDBInstance": [
252
- {
253
- "input": {
254
- "AllocatedStorage": 5,
255
- "DBInstanceClass": "db.t2.micro",
256
- "DBInstanceIdentifier": "mymysqlinstance",
257
- "Engine": "MySQL",
258
- "MasterUserPassword": "MyPassword",
259
- "MasterUsername": "MyUser"
260
- },
261
- "output": {
262
- },
263
- "comments": {
264
- "input": {
265
- },
266
- "output": {
267
- }
268
- },
269
- "description": "This example creates a DB instance.",
270
- "id": "create-db-instance-57eb5d16-8bf8-4c84-9709-1700322b37b9",
271
- "title": "To create a DB instance."
272
- }
273
- ],
274
- "CreateDBInstanceReadReplica": [
275
- {
276
- "input": {
277
- "AvailabilityZone": "us-east-1a",
278
- "CopyTagsToSnapshot": true,
279
- "DBInstanceClass": "db.t2.micro",
280
- "DBInstanceIdentifier": "mydbreadreplica",
281
- "PubliclyAccessible": true,
282
- "SourceDBInstanceIdentifier": "mymysqlinstance",
283
- "StorageType": "gp2",
284
- "Tags": [
285
- {
286
- "Key": "mydbreadreplicakey",
287
- "Value": "mydbreadreplicavalue"
288
- }
289
- ]
290
- },
291
- "output": {
292
- },
293
- "comments": {
294
- "input": {
295
- },
296
- "output": {
297
- }
298
- },
299
- "description": "This example creates a DB instance read replica.",
300
- "id": "create-db-instance-read-replica-81b41cd5-2871-4dae-bc59-3e264449d5fe",
301
- "title": "To create a DB instance read replica."
302
- }
303
- ],
304
- "CreateDBParameterGroup": [
305
- {
306
- "input": {
307
- "DBParameterGroupFamily": "mysql5.6",
308
- "DBParameterGroupName": "mymysqlparametergroup",
309
- "Description": "My MySQL parameter group"
310
- },
311
- "output": {
312
- },
313
- "comments": {
314
- "input": {
315
- },
316
- "output": {
317
- }
318
- },
319
- "description": "This example creates a DB parameter group.",
320
- "id": "create-db-parameter-group-42afcc37-12e9-4b6a-a55c-b8a141246e87",
321
- "title": "To create a DB parameter group."
322
- }
323
- ],
324
- "CreateDBSecurityGroup": [
325
- {
326
- "input": {
327
- "DBSecurityGroupDescription": "My DB security group",
328
- "DBSecurityGroupName": "mydbsecuritygroup"
329
- },
330
- "output": {
331
- },
332
- "comments": {
333
- "input": {
334
- },
335
- "output": {
336
- }
337
- },
338
- "description": "This example creates a DB security group.",
339
- "id": "create-db-security-group-41b6786a-539e-42a5-a645-a8bc3cf99353",
340
- "title": "To create a DB security group."
341
- }
342
- ],
343
- "CreateDBSnapshot": [
344
- {
345
- "input": {
346
- "DBInstanceIdentifier": "mymysqlinstance",
347
- "DBSnapshotIdentifier": "mydbsnapshot"
348
- },
349
- "output": {
350
- },
351
- "comments": {
352
- "input": {
353
- },
354
- "output": {
355
- }
356
- },
357
- "description": "This example creates a DB snapshot.",
358
- "id": "create-db-snapshot-e10e0e2c-9ac4-426d-9b17-6b6a3e382ce2",
359
- "title": "To create a DB snapshot."
360
- }
361
- ],
362
- "CreateDBSubnetGroup": [
363
- {
364
- "input": {
365
- "DBSubnetGroupDescription": "My DB subnet group",
366
- "DBSubnetGroupName": "mydbsubnetgroup",
367
- "SubnetIds": [
368
- "subnet-1fab8a69",
369
- "subnet-d43a468c"
370
- ]
371
- },
372
- "output": {
373
- },
374
- "comments": {
375
- "input": {
376
- },
377
- "output": {
378
- }
379
- },
380
- "description": "This example creates a DB subnet group.",
381
- "id": "create-db-subnet-group-c3d162c2-0ec4-4955-ba89-18967615fdb8",
382
- "title": "To create a DB subnet group."
383
- }
384
- ],
385
- "CreateEventSubscription": [
386
- {
387
- "input": {
388
- "Enabled": true,
389
- "EventCategories": [
390
- "availability"
391
- ],
392
- "SnsTopicArn": "arn:aws:sns:us-east-1:992648334831:MyDemoSNSTopic",
393
- "SourceIds": [
394
- "mymysqlinstance"
395
- ],
396
- "SourceType": "db-instance",
397
- "SubscriptionName": "mymysqleventsubscription"
398
- },
399
- "output": {
400
- },
401
- "comments": {
402
- "input": {
403
- },
404
- "output": {
405
- }
406
- },
407
- "description": "This example creates an event notification subscription.",
408
- "id": "create-event-subscription-00dd0ee6-0e0f-4a38-ae83-e5f2ded5f69a",
409
- "title": "To create an event notification subscription"
410
- }
411
- ],
412
- "CreateOptionGroup": [
413
- {
414
- "input": {
415
- "EngineName": "MySQL",
416
- "MajorEngineVersion": "5.6",
417
- "OptionGroupDescription": "My MySQL 5.6 option group",
418
- "OptionGroupName": "mymysqloptiongroup"
419
- },
420
- "output": {
421
- },
422
- "comments": {
423
- "input": {
424
- },
425
- "output": {
426
- }
427
- },
428
- "description": "This example creates an option group.",
429
- "id": "create-option-group-a7708c87-1b79-4a5e-a762-21cf8fc62b78",
430
- "title": "To create an option group"
431
- }
432
- ],
433
- "DeleteDBCluster": [
434
- {
435
- "input": {
436
- "DBClusterIdentifier": "mydbcluster",
437
- "SkipFinalSnapshot": true
438
- },
439
- "output": {
440
- },
441
- "comments": {
442
- "input": {
443
- },
444
- "output": {
445
- }
446
- },
447
- "description": "This example deletes the specified DB cluster.",
448
- "id": "delete-db-cluster-927fc2c8-6c67-4075-b1ba-75490be0f7d6",
449
- "title": "To delete a DB cluster."
450
- }
451
- ],
452
- "DeleteDBClusterParameterGroup": [
453
- {
454
- "input": {
455
- "DBClusterParameterGroupName": "mydbclusterparametergroup"
456
- },
457
- "comments": {
458
- "input": {
459
- },
460
- "output": {
461
- }
462
- },
463
- "description": "This example deletes the specified DB cluster parameter group.",
464
- "id": "delete-db-cluster-parameter-group-364f5555-ba0a-4cc8-979c-e769098924fc",
465
- "title": "To delete a DB cluster parameter group."
466
- }
467
- ],
468
- "DeleteDBClusterSnapshot": [
469
- {
470
- "input": {
471
- "DBClusterSnapshotIdentifier": "mydbclustersnapshot"
472
- },
473
- "output": {
474
- },
475
- "comments": {
476
- "input": {
477
- },
478
- "output": {
479
- }
480
- },
481
- "description": "This example deletes the specified DB cluster snapshot.",
482
- "id": "delete-db-cluster-snapshot-c67e0d95-670e-4fb5-af90-6d9a70a91b07",
483
- "title": "To delete a DB cluster snapshot."
484
- }
485
- ],
486
- "DeleteDBInstance": [
487
- {
488
- "input": {
489
- "DBInstanceIdentifier": "mymysqlinstance",
490
- "SkipFinalSnapshot": true
491
- },
492
- "output": {
493
- },
494
- "comments": {
495
- "input": {
496
- },
497
- "output": {
498
- }
499
- },
500
- "description": "This example deletes the specified DB instance.",
501
- "id": "delete-db-instance-4412e650-949c-488a-b32a-7d3038ebccc4",
502
- "title": "To delete a DB instance."
503
- }
504
- ],
505
- "DeleteDBParameterGroup": [
506
- {
507
- "input": {
508
- "DBParameterGroupName": "mydbparamgroup3"
509
- },
510
- "comments": {
511
- "input": {
512
- },
513
- "output": {
514
- }
515
- },
516
- "description": "The following example deletes a DB parameter group.",
517
- "id": "to-delete-a-db-parameter-group-1473888796509",
518
- "title": "To delete a DB parameter group"
519
- }
520
- ],
521
- "DeleteDBSecurityGroup": [
522
- {
523
- "input": {
524
- "DBSecurityGroupName": "mysecgroup"
525
- },
526
- "comments": {
527
- "input": {
528
- },
529
- "output": {
530
- }
531
- },
532
- "description": "The following example deletes a DB security group.",
533
- "id": "to-delete-a-db-security-group-1473960141889",
534
- "title": "To delete a DB security group"
535
- }
536
- ],
537
- "DeleteDBSnapshot": [
538
- {
539
- "input": {
540
- "DBSnapshotIdentifier": "mydbsnapshot"
541
- },
542
- "output": {
543
- },
544
- "comments": {
545
- "input": {
546
- },
547
- "output": {
548
- }
549
- },
550
- "description": "This example deletes the specified DB snapshot.",
551
- "id": "delete-db-snapshot-505d6b4e-8ced-479c-856a-c460a33fe07b",
552
- "title": "To delete a DB cluster snapshot."
553
- }
554
- ],
555
- "DeleteDBSubnetGroup": [
556
- {
557
- "input": {
558
- "DBSubnetGroupName": "mydbsubnetgroup"
559
- },
560
- "comments": {
561
- "input": {
562
- },
563
- "output": {
564
- }
565
- },
566
- "description": "This example deletes the specified DB subnetgroup.",
567
- "id": "delete-db-subnet-group-4ae00375-511e-443d-a01d-4b9f552244aa",
568
- "title": "To delete a DB subnet group."
569
- }
570
- ],
571
- "DeleteEventSubscription": [
572
- {
573
- "input": {
574
- "SubscriptionName": "myeventsubscription"
575
- },
576
- "output": {
577
- },
578
- "comments": {
579
- "input": {
580
- },
581
- "output": {
582
- }
583
- },
584
- "description": "This example deletes the specified DB event subscription.",
585
- "id": "delete-db-event-subscription-d33567e3-1d5d-48ff-873f-0270453f4a75",
586
- "title": "To delete a DB event subscription."
587
- }
588
- ],
589
- "DeleteOptionGroup": [
590
- {
591
- "input": {
592
- "OptionGroupName": "mydboptiongroup"
593
- },
594
- "comments": {
595
- "input": {
596
- },
597
- "output": {
598
- }
599
- },
600
- "description": "This example deletes the specified option group.",
601
- "id": "delete-db-option-group-578be2be-3095-431a-9ea4-9a3c3b0daef4",
602
- "title": "To delete an option group."
603
- }
604
- ],
605
- "DescribeAccountAttributes": [
606
- {
607
- "input": {
608
- },
609
- "output": {
610
- },
611
- "comments": {
612
- "input": {
613
- },
614
- "output": {
615
- }
616
- },
617
- "description": "This example lists account attributes.",
618
- "id": "describe-account-attributes-683d3ff7-5524-421a-8da5-e88f1ea2222b",
619
- "title": "To list account attributes"
620
- }
621
- ],
622
- "DescribeCertificates": [
623
- {
624
- "input": {
625
- "CertificateIdentifier": "rds-ca-2015",
626
- "MaxRecords": 20
627
- },
628
- "output": {
629
- },
630
- "comments": {
631
- "input": {
632
- },
633
- "output": {
634
- }
635
- },
636
- "description": "This example lists up to 20 certificates for the specified certificate identifier.",
637
- "id": "describe-certificates-9d71a70d-7908-4444-b43f-321d842c62dc",
638
- "title": "To list certificates"
639
- }
640
- ],
641
- "DescribeDBClusterParameterGroups": [
642
- {
643
- "input": {
644
- "DBClusterParameterGroupName": "mydbclusterparametergroup"
645
- },
646
- "output": {
647
- },
648
- "comments": {
649
- "input": {
650
- },
651
- "output": {
652
- }
653
- },
654
- "description": "This example lists settings for the specified DB cluster parameter group.",
655
- "id": "describe-db-cluster-parameter-groups-cf9c6e66-664e-4f57-8e29-a9080abfc013",
656
- "title": "To list DB cluster parameter group settings"
657
- }
658
- ],
659
- "DescribeDBClusterParameters": [
660
- {
661
- "input": {
662
- "DBClusterParameterGroupName": "mydbclusterparametergroup",
663
- "Source": "system"
664
- },
665
- "output": {
666
- },
667
- "comments": {
668
- "input": {
669
- },
670
- "output": {
671
- }
672
- },
673
- "description": "This example lists system parameters for the specified DB cluster parameter group.",
674
- "id": "describe-db-cluster-parameters-98043c28-e489-41a7-b118-bfd96dc779a1",
675
- "title": "To list DB cluster parameters"
676
- }
677
- ],
678
- "DescribeDBClusterSnapshotAttributes": [
679
- {
680
- "input": {
681
- "DBClusterSnapshotIdentifier": "mydbclustersnapshot"
682
- },
683
- "output": {
684
- },
685
- "comments": {
686
- "input": {
687
- },
688
- "output": {
689
- }
690
- },
691
- "description": "This example lists attributes for the specified DB cluster snapshot.",
692
- "id": "describe-db-cluster-snapshot-attributes-6752ade3-0c7b-4b06-a8e4-b76bf4e2d3571",
693
- "title": "To list DB cluster snapshot attributes"
694
- }
695
- ],
696
- "DescribeDBClusterSnapshots": [
697
- {
698
- "input": {
699
- "DBClusterSnapshotIdentifier": "mydbclustersnapshot",
700
- "SnapshotType": "manual"
701
- },
702
- "output": {
703
- },
704
- "comments": {
705
- "input": {
706
- },
707
- "output": {
708
- }
709
- },
710
- "description": "This example lists settings for the specified, manually-created cluster snapshot.",
711
- "id": "describe-db-cluster-snapshots-52f38af1-3431-4a51-9a6a-e6bb8c961b32",
712
- "title": "To list DB cluster snapshots"
713
- }
714
- ],
715
- "DescribeDBClusters": [
716
- {
717
- "input": {
718
- "DBClusterIdentifier": "mynewdbcluster"
719
- },
720
- "output": {
721
- },
722
- "comments": {
723
- "input": {
724
- },
725
- "output": {
726
- }
727
- },
728
- "description": "This example lists settings for the specified DB cluster.",
729
- "id": "describe-db-clusters-7aae8861-cb95-4b3b-9042-f62df7698635",
730
- "title": "To list DB clusters"
731
- }
732
- ],
733
- "DescribeDBEngineVersions": [
734
- {
735
- "input": {
736
- "DBParameterGroupFamily": "mysql5.6",
737
- "DefaultOnly": true,
738
- "Engine": "mysql",
739
- "EngineVersion": "5.6",
740
- "ListSupportedCharacterSets": true
741
- },
742
- "output": {
743
- },
744
- "comments": {
745
- "input": {
746
- },
747
- "output": {
748
- }
749
- },
750
- "description": "This example lists settings for the specified DB engine version.",
751
- "id": "describe-db-engine-versions-8e698cf2-2162-425a-a854-111cdaceb52b",
752
- "title": "To list DB engine version settings"
753
- }
754
- ],
755
- "DescribeDBInstances": [
756
- {
757
- "input": {
758
- "DBInstanceIdentifier": "mymysqlinstance"
759
- },
760
- "output": {
761
- },
762
- "comments": {
763
- "input": {
764
- },
765
- "output": {
766
- }
767
- },
768
- "description": "This example lists settings for the specified DB instance.",
769
- "id": "describe-db-instances-0e11a8c5-4ec3-4463-8cbf-f7254d04c4fc",
770
- "title": "To list DB instance settings"
771
- }
772
- ],
773
- "DescribeDBLogFiles": [
774
- {
775
- "input": {
776
- "DBInstanceIdentifier": "mymysqlinstance",
777
- "FileLastWritten": 1470873600000,
778
- "FileSize": 0,
779
- "FilenameContains": "error"
780
- },
781
- "output": {
782
- },
783
- "comments": {
784
- "input": {
785
- },
786
- "output": {
787
- }
788
- },
789
- "description": "This example lists matching log file names for the specified DB instance, file name pattern, last write date in POSIX time with milleseconds, and minimum file size.",
790
- "id": "describe-db-log-files-5f002d8d-5c1d-44c2-b5f4-bd284c0f1285",
791
- "title": "To list DB log file names"
792
- }
793
- ],
794
- "DescribeDBParameterGroups": [
795
- {
796
- "input": {
797
- "DBParameterGroupName": "mymysqlparametergroup"
798
- },
799
- "output": {
800
- },
801
- "comments": {
802
- "input": {
803
- },
804
- "output": {
805
- }
806
- },
807
- "description": "This example lists information about the specified DB parameter group.",
808
- "id": "describe-db-parameter-groups-",
809
- "title": "To list information about DB parameter groups"
810
- }
811
- ],
812
- "DescribeDBParameters": [
813
- {
814
- "input": {
815
- "DBParameterGroupName": "mymysqlparametergroup",
816
- "MaxRecords": 20,
817
- "Source": "system"
818
- },
819
- "output": {
820
- },
821
- "comments": {
822
- "input": {
823
- },
824
- "output": {
825
- }
826
- },
827
- "description": "This example lists information for up to the first 20 system parameters for the specified DB parameter group.",
828
- "id": "describe-db-parameters-09db4201-ef4f-4d97-a4b5-d71c0715b901",
829
- "title": "To list information about DB parameters"
830
- }
831
- ],
832
- "DescribeDBSecurityGroups": [
833
- {
834
- "input": {
835
- "DBSecurityGroupName": "mydbsecuritygroup"
836
- },
837
- "output": {
838
- },
839
- "comments": {
840
- "input": {
841
- },
842
- "output": {
843
- }
844
- },
845
- "description": "This example lists settings for the specified security group.",
846
- "id": "describe-db-security-groups-66fe9ea1-17dd-4275-b82e-f771cee0c849",
847
- "title": "To list DB security group settings"
848
- }
849
- ],
850
- "DescribeDBSnapshotAttributes": [
851
- {
852
- "input": {
853
- "DBSnapshotIdentifier": "mydbsnapshot"
854
- },
855
- "output": {
856
- },
857
- "comments": {
858
- "input": {
859
- },
860
- "output": {
861
- }
862
- },
863
- "description": "This example lists attributes for the specified DB snapshot.",
864
- "id": "describe-db-snapshot-attributes-1d4fb750-34f6-4e43-8b3d-b2751d796a95",
865
- "title": "To list DB snapshot attributes"
866
- }
867
- ],
868
- "DescribeDBSnapshots": [
869
- {
870
- "input": {
871
- "DBInstanceIdentifier": "mymysqlinstance",
872
- "IncludePublic": false,
873
- "IncludeShared": true,
874
- "SnapshotType": "manual"
875
- },
876
- "output": {
877
- },
878
- "comments": {
879
- "input": {
880
- },
881
- "output": {
882
- }
883
- },
884
- "description": "This example lists all manually-created, shared snapshots for the specified DB instance.",
885
- "id": "describe-db-snapshots-2c935989-a1ef-4c85-aea4-1d0f45f17f26",
886
- "title": "To list DB snapshot attributes"
887
- }
888
- ],
889
- "DescribeDBSubnetGroups": [
890
- {
891
- "input": {
892
- "DBSubnetGroupName": "mydbsubnetgroup"
893
- },
894
- "output": {
895
- },
896
- "comments": {
897
- "input": {
898
- },
899
- "output": {
900
- }
901
- },
902
- "description": "This example lists information about the specified DB subnet group.",
903
- "id": "describe-db-subnet-groups-1d97b340-682f-4dd6-9653-8ed72a8d1221",
904
- "title": "To list information about DB subnet groups"
905
- }
906
- ],
907
- "DescribeEngineDefaultClusterParameters": [
908
- {
909
- "input": {
910
- "DBParameterGroupFamily": "aurora5.6"
911
- },
912
- "output": {
913
- },
914
- "comments": {
915
- "input": {
916
- },
917
- "output": {
918
- }
919
- },
920
- "description": "This example lists default parameters for the specified DB cluster engine.",
921
- "id": "describe-engine-default-cluster-parameters-f130374a-7bee-434b-b51d-da20b6e000e0",
922
- "title": "To list default parameters for a DB cluster engine"
923
- }
924
- ],
925
- "DescribeEngineDefaultParameters": [
926
- {
927
- "input": {
928
- "DBParameterGroupFamily": "mysql5.6"
929
- },
930
- "output": {
931
- },
932
- "comments": {
933
- "input": {
934
- },
935
- "output": {
936
- }
937
- },
938
- "description": "This example lists default parameters for the specified DB engine.",
939
- "id": "describe-engine-default-parameters-35d5108e-1d44-4fac-8aeb-04b8fdfface1",
940
- "title": "To list default parameters for a DB engine"
941
- }
942
- ],
943
- "DescribeEventCategories": [
944
- {
945
- "input": {
946
- "SourceType": "db-instance"
947
- },
948
- "output": {
949
- },
950
- "comments": {
951
- "input": {
952
- },
953
- "output": {
954
- }
955
- },
956
- "description": "This example lists all DB instance event categories.",
957
- "id": "describe-event-categories-97bd4c77-12da-4be6-b42f-edf77771428b",
958
- "title": "To list event categories."
959
- }
960
- ],
961
- "DescribeEventSubscriptions": [
962
- {
963
- "input": {
964
- "SubscriptionName": "mymysqleventsubscription"
965
- },
966
- "output": {
967
- },
968
- "comments": {
969
- "input": {
970
- },
971
- "output": {
972
- }
973
- },
974
- "description": "This example lists information for the specified DB event notification subscription.",
975
- "id": "describe-event-subscriptions-11184a82-e58a-4d0c-b558-f3a7489e0850",
976
- "title": "To list information about DB event notification subscriptions"
977
- }
978
- ],
979
- "DescribeEvents": [
980
- {
981
- "input": {
982
- "Duration": 10080,
983
- "EventCategories": [
984
- "backup"
985
- ],
986
- "SourceIdentifier": "mymysqlinstance",
987
- "SourceType": "db-instance"
988
- },
989
- "output": {
990
- },
991
- "comments": {
992
- "input": {
993
- },
994
- "output": {
995
- }
996
- },
997
- "description": "This example lists information for all backup-related events for the specified DB instance for the past 7 days (7 days * 24 hours * 60 minutes = 10,080 minutes).",
998
- "id": "describe-events-3836e5ed-3913-4f76-8452-c77fcad5016b",
999
- "title": "To list information about events"
1000
- }
1001
- ],
1002
- "DescribeOptionGroupOptions": [
1003
- {
1004
- "input": {
1005
- "EngineName": "mysql",
1006
- "MajorEngineVersion": "5.6"
1007
- },
1008
- "output": {
1009
- },
1010
- "comments": {
1011
- "input": {
1012
- },
1013
- "output": {
1014
- }
1015
- },
1016
- "description": "This example lists information for all option group options for the specified DB engine.",
1017
- "id": "describe-option-group-options-30d735a4-81f1-49e4-b3f2-5dc45d50c8ed",
1018
- "title": "To list information about DB option group options"
1019
- }
1020
- ],
1021
- "DescribeOptionGroups": [
1022
- {
1023
- "input": {
1024
- "EngineName": "mysql",
1025
- "MajorEngineVersion": "5.6"
1026
- },
1027
- "output": {
1028
- },
1029
- "comments": {
1030
- "input": {
1031
- },
1032
- "output": {
1033
- }
1034
- },
1035
- "description": "This example lists information for all option groups for the specified DB engine.",
1036
- "id": "describe-option-groups-4ef478a1-66d5-45f2-bec3-e608720418a4",
1037
- "title": "To list information about DB option groups"
1038
- }
1039
- ],
1040
- "DescribeOrderableDBInstanceOptions": [
1041
- {
1042
- "input": {
1043
- "DBInstanceClass": "db.t2.micro",
1044
- "Engine": "mysql",
1045
- "EngineVersion": "5.6.27",
1046
- "LicenseModel": "general-public-license",
1047
- "Vpc": true
1048
- },
1049
- "output": {
1050
- },
1051
- "comments": {
1052
- "input": {
1053
- },
1054
- "output": {
1055
- }
1056
- },
1057
- "description": "This example lists information for all orderable DB instance options for the specified DB engine, engine version, DB instance class, license model, and VPC settings.",
1058
- "id": "describe-orderable-db-instance-options-7444d3ed-82eb-42b9-9ed9-896b8c27a782",
1059
- "title": "To list information about orderable DB instance options"
1060
- }
1061
- ],
1062
- "DescribePendingMaintenanceActions": [
1063
- {
1064
- "input": {
1065
- "ResourceIdentifier": "arn:aws:rds:us-east-1:992648334831:db:mymysqlinstance"
1066
- },
1067
- "output": {
1068
- },
1069
- "comments": {
1070
- "input": {
1071
- },
1072
- "output": {
1073
- }
1074
- },
1075
- "description": "This example lists information for all pending maintenance actions for the specified DB instance.",
1076
- "id": "describe-pending-maintenance-actions-e6021f7e-58ae-49cc-b874-11996176835c",
1077
- "title": "To list information about pending maintenance actions"
1078
- }
1079
- ],
1080
- "DescribeReservedDBInstances": [
1081
- {
1082
- "input": {
1083
- "DBInstanceClass": "db.t2.micro",
1084
- "Duration": "1y",
1085
- "MultiAZ": false,
1086
- "OfferingType": "No Upfront",
1087
- "ProductDescription": "mysql"
1088
- },
1089
- "output": {
1090
- },
1091
- "comments": {
1092
- "input": {
1093
- },
1094
- "output": {
1095
- }
1096
- },
1097
- "description": "This example lists information for all reserved DB instances for the specified DB instance class, duration, product, offering type, and availability zone settings.",
1098
- "id": "describe-reserved-db-instances-d45adaca-2e30-407c-a0f3-aa7b98bea17f",
1099
- "title": "To list information about reserved DB instances"
1100
- }
1101
- ],
1102
- "DescribeReservedDBInstancesOfferings": [
1103
- {
1104
- "input": {
1105
- "DBInstanceClass": "db.t2.micro",
1106
- "Duration": "1y",
1107
- "MultiAZ": false,
1108
- "OfferingType": "No Upfront",
1109
- "ProductDescription": "mysql"
1110
- },
1111
- "output": {
1112
- },
1113
- "comments": {
1114
- "input": {
1115
- },
1116
- "output": {
1117
- }
1118
- },
1119
- "description": "This example lists information for all reserved DB instance offerings for the specified DB instance class, duration, product, offering type, and availability zone settings.",
1120
- "id": "describe-reserved-db-instances-offerings-9de7d1fd-d6a6-4a72-84ae-b2ef58d47d8d",
1121
- "title": "To list information about reserved DB instance offerings"
1122
- }
1123
- ],
1124
- "DescribeSourceRegions": [
1125
- {
1126
- "input": {
1127
- },
1128
- "output": {
1129
- "SourceRegions": [
1130
- {
1131
- "Endpoint": "https://rds.ap-northeast-1.amazonaws.com",
1132
- "RegionName": "ap-northeast-1",
1133
- "Status": "available"
1134
- },
1135
- {
1136
- "Endpoint": "https://rds.ap-northeast-2.amazonaws.com",
1137
- "RegionName": "ap-northeast-2",
1138
- "Status": "available"
1139
- },
1140
- {
1141
- "Endpoint": "https://rds.ap-south-1.amazonaws.com",
1142
- "RegionName": "ap-south-1",
1143
- "Status": "available"
1144
- },
1145
- {
1146
- "Endpoint": "https://rds.ap-southeast-1.amazonaws.com",
1147
- "RegionName": "ap-southeast-1",
1148
- "Status": "available"
1149
- },
1150
- {
1151
- "Endpoint": "https://rds.ap-southeast-2.amazonaws.com",
1152
- "RegionName": "ap-southeast-2",
1153
- "Status": "available"
1154
- },
1155
- {
1156
- "Endpoint": "https://rds.eu-central-1.amazonaws.com",
1157
- "RegionName": "eu-central-1",
1158
- "Status": "available"
1159
- },
1160
- {
1161
- "Endpoint": "https://rds.eu-west-1.amazonaws.com",
1162
- "RegionName": "eu-west-1",
1163
- "Status": "available"
1164
- },
1165
- {
1166
- "Endpoint": "https://rds.sa-east-1.amazonaws.com",
1167
- "RegionName": "sa-east-1",
1168
- "Status": "available"
1169
- },
1170
- {
1171
- "Endpoint": "https://rds.us-west-1.amazonaws.com",
1172
- "RegionName": "us-west-1",
1173
- "Status": "available"
1174
- },
1175
- {
1176
- "Endpoint": "https://rds.us-west-2.amazonaws.com",
1177
- "RegionName": "us-west-2",
1178
- "Status": "available"
1179
- }
1180
- ]
1181
- },
1182
- "comments": {
1183
- },
1184
- "description": "To list the AWS regions where a Read Replica can be created.",
1185
- "id": "to-describe-source-regions-1473457722410",
1186
- "title": "To describe source regions"
1187
- }
1188
- ],
1189
- "DownloadDBLogFilePortion": [
1190
- {
1191
- "input": {
1192
- "DBInstanceIdentifier": "mymysqlinstance",
1193
- "LogFileName": "mysqlUpgrade"
1194
- },
1195
- "output": {
1196
- },
1197
- "comments": {
1198
- "input": {
1199
- },
1200
- "output": {
1201
- }
1202
- },
1203
- "description": "This example lists information for the specified log file for the specified DB instance.",
1204
- "id": "download-db-log-file-portion-54a82731-a441-4fc7-a010-8eccae6fa202",
1205
- "title": "To list information about DB log files"
1206
- }
1207
- ],
1208
- "FailoverDBCluster": [
1209
- {
1210
- "input": {
1211
- "DBClusterIdentifier": "myaurorainstance-cluster",
1212
- "TargetDBInstanceIdentifier": "myaurorareplica"
1213
- },
1214
- "output": {
1215
- },
1216
- "comments": {
1217
- "input": {
1218
- },
1219
- "output": {
1220
- }
1221
- },
1222
- "description": "This example performs a failover for the specified DB cluster to the specified DB instance.",
1223
- "id": "failover-db-cluster-9e7f2f93-d98c-42c7-bb0e-d6c485c096d6",
1224
- "title": "To perform a failover for a DB cluster"
1225
- }
1226
- ],
1227
- "ListTagsForResource": [
1228
- {
1229
- "input": {
1230
- "ResourceName": "arn:aws:rds:us-east-1:992648334831:og:mymysqloptiongroup"
1231
- },
1232
- "output": {
1233
- },
1234
- "comments": {
1235
- "input": {
1236
- },
1237
- "output": {
1238
- }
1239
- },
1240
- "description": "This example lists information about all tags associated with the specified DB option group.",
1241
- "id": "list-tags-for-resource-8401f3c2-77cd-4f90-bfd5-b523f0adcc2f",
1242
- "title": "To list information about tags associated with a resource"
1243
- }
1244
- ],
1245
- "ModifyDBCluster": [
1246
- {
1247
- "input": {
1248
- "ApplyImmediately": true,
1249
- "DBClusterIdentifier": "mydbcluster",
1250
- "MasterUserPassword": "mynewpassword",
1251
- "NewDBClusterIdentifier": "mynewdbcluster",
1252
- "PreferredBackupWindow": "04:00-04:30",
1253
- "PreferredMaintenanceWindow": "Tue:05:00-Tue:05:30"
1254
- },
1255
- "output": {
1256
- },
1257
- "comments": {
1258
- "input": {
1259
- },
1260
- "output": {
1261
- }
1262
- },
1263
- "description": "This example changes the specified settings for the specified DB cluster.",
1264
- "id": "modify-db-cluster-a370ee1b-768d-450a-853b-707cb1ab663d",
1265
- "title": "To change DB cluster settings"
1266
- }
1267
- ],
1268
- "ModifyDBClusterParameterGroup": [
1269
- {
1270
- "input": {
1271
- "DBClusterParameterGroupName": "mydbclusterparametergroup",
1272
- "Parameters": [
1273
- {
1274
- "ApplyMethod": "immediate",
1275
- "ParameterName": "time_zone",
1276
- "ParameterValue": "America/Phoenix"
1277
- }
1278
- ]
1279
- },
1280
- "output": {
1281
- },
1282
- "comments": {
1283
- "input": {
1284
- },
1285
- "output": {
1286
- }
1287
- },
1288
- "description": "This example immediately changes the specified setting for the specified DB cluster parameter group.",
1289
- "id": "modify-db-cluster-parameter-group-f9156bc9-082a-442e-8d12-239542c1a113",
1290
- "title": "To change DB cluster parameter group settings"
1291
- }
1292
- ],
1293
- "ModifyDBClusterSnapshotAttribute": [
1294
- {
1295
- "input": {
1296
- "AttributeName": "restore",
1297
- "DBClusterSnapshotIdentifier": "manual-cluster-snapshot1",
1298
- "ValuesToAdd": [
1299
- "123451234512",
1300
- "123456789012"
1301
- ],
1302
- "ValuesToRemove": [
1303
- "all"
1304
- ]
1305
- },
1306
- "output": {
1307
- },
1308
- "comments": {
1309
- "input": {
1310
- },
1311
- "output": {
1312
- }
1313
- },
1314
- "description": "The following example gives two AWS accounts access to a manual DB cluster snapshot and ensures that the DB cluster snapshot is private by removing the value \"all\".",
1315
- "id": "to-add-or-remove-access-to-a-manual-db-cluster-snapshot-1473889426431",
1316
- "title": "To add or remove access to a manual DB cluster snapshot"
1317
- }
1318
- ],
1319
- "ModifyDBInstance": [
1320
- {
1321
- "input": {
1322
- "AllocatedStorage": 10,
1323
- "ApplyImmediately": true,
1324
- "BackupRetentionPeriod": 1,
1325
- "DBInstanceClass": "db.t2.small",
1326
- "DBInstanceIdentifier": "mymysqlinstance",
1327
- "MasterUserPassword": "mynewpassword",
1328
- "PreferredBackupWindow": "04:00-04:30",
1329
- "PreferredMaintenanceWindow": "Tue:05:00-Tue:05:30"
1330
- },
1331
- "output": {
1332
- },
1333
- "comments": {
1334
- "input": {
1335
- },
1336
- "output": {
1337
- }
1338
- },
1339
- "description": "This example immediately changes the specified settings for the specified DB instance.",
1340
- "id": "modify-db-instance-6979a368-6254-467b-8a8d-61103f4fcde9",
1341
- "title": "To change DB instance settings"
1342
- }
1343
- ],
1344
- "ModifyDBParameterGroup": [
1345
- {
1346
- "input": {
1347
- "DBParameterGroupName": "mymysqlparametergroup",
1348
- "Parameters": [
1349
- {
1350
- "ApplyMethod": "immediate",
1351
- "ParameterName": "time_zone",
1352
- "ParameterValue": "America/Phoenix"
1353
- }
1354
- ]
1355
- },
1356
- "output": {
1357
- },
1358
- "comments": {
1359
- "input": {
1360
- },
1361
- "output": {
1362
- }
1363
- },
1364
- "description": "This example immediately changes the specified setting for the specified DB parameter group.",
1365
- "id": "modify-db-parameter-group-f3a4e52a-68e4-4b88-b559-f912d34c457a",
1366
- "title": "To change DB parameter group settings"
1367
- }
1368
- ],
1369
- "ModifyDBSnapshotAttribute": [
1370
- {
1371
- "input": {
1372
- "AttributeName": "restore",
1373
- "DBSnapshotIdentifier": "mydbsnapshot",
1374
- "ValuesToAdd": [
1375
- "all"
1376
- ]
1377
- },
1378
- "output": {
1379
- },
1380
- "comments": {
1381
- "input": {
1382
- },
1383
- "output": {
1384
- }
1385
- },
1386
- "description": "This example adds the specified attribute for the specified DB snapshot.",
1387
- "id": "modify-db-snapshot-attribute-2e66f120-2b21-4a7c-890b-4474da88bde6",
1388
- "title": "To change DB snapshot attributes"
1389
- }
1390
- ],
1391
- "ModifyDBSubnetGroup": [
1392
- {
1393
- "input": {
1394
- "DBSubnetGroupName": "mydbsubnetgroup",
1395
- "SubnetIds": [
1396
- "subnet-70e1975a",
1397
- "subnet-747a5c49"
1398
- ]
1399
- },
1400
- "output": {
1401
- },
1402
- "comments": {
1403
- "input": {
1404
- },
1405
- "output": {
1406
- }
1407
- },
1408
- "description": "This example changes the specified setting for the specified DB subnet group.",
1409
- "id": "modify-db-subnet-group-e34a97d9-8fe6-4239-a4ed-ad6e73a956b0",
1410
- "title": "To change DB subnet group settings"
1411
- }
1412
- ],
1413
- "ModifyEventSubscription": [
1414
- {
1415
- "input": {
1416
- "Enabled": true,
1417
- "EventCategories": [
1418
- "deletion",
1419
- "low storage"
1420
- ],
1421
- "SourceType": "db-instance",
1422
- "SubscriptionName": "mymysqleventsubscription"
1423
- },
1424
- "output": {
1425
- },
1426
- "comments": {
1427
- "input": {
1428
- },
1429
- "output": {
1430
- }
1431
- },
1432
- "description": "This example changes the specified setting for the specified event notification subscription.",
1433
- "id": "modify-event-subscription-405ac869-1f02-42cd-b8f4-6950a435f30e",
1434
- "title": "To change event notification subscription settings"
1435
- }
1436
- ],
1437
- "ModifyOptionGroup": [
1438
- {
1439
- "input": {
1440
- "ApplyImmediately": true,
1441
- "OptionGroupName": "myawsuser-og02",
1442
- "OptionsToInclude": [
1443
- {
1444
- "DBSecurityGroupMemberships": [
1445
- "default"
1446
- ],
1447
- "OptionName": "MEMCACHED"
1448
- }
1449
- ]
1450
- },
1451
- "output": {
1452
- },
1453
- "comments": {
1454
- "input": {
1455
- },
1456
- "output": {
1457
- }
1458
- },
1459
- "description": "The following example adds an option to an option group.",
1460
- "id": "to-modify-an-option-group-1473890247875",
1461
- "title": "To modify an option group"
1462
- }
1463
- ],
1464
- "PromoteReadReplica": [
1465
- {
1466
- "input": {
1467
- "BackupRetentionPeriod": 1,
1468
- "DBInstanceIdentifier": "mydbreadreplica",
1469
- "PreferredBackupWindow": "03:30-04:00"
1470
- },
1471
- "output": {
1472
- },
1473
- "comments": {
1474
- "input": {
1475
- },
1476
- "output": {
1477
- }
1478
- },
1479
- "description": "This example promotes the specified read replica and sets its backup retention period and preferred backup window.",
1480
- "id": "promote-read-replica-cc580039-c55d-4035-838a-def4a1ae4181",
1481
- "title": "To promote a read replica"
1482
- }
1483
- ],
1484
- "PurchaseReservedDBInstancesOffering": [
1485
- {
1486
- "input": {
1487
- "ReservedDBInstanceId": "myreservationid",
1488
- "ReservedDBInstancesOfferingId": "fb29428a-646d-4390-850e-5fe89926e727"
1489
- },
1490
- "output": {
1491
- },
1492
- "comments": {
1493
- "input": {
1494
- },
1495
- "output": {
1496
- }
1497
- },
1498
- "description": "This example purchases a reserved DB instance offering that matches the specified settings.",
1499
- "id": "purchase-reserved-db-instances-offfering-f423c736-8413-429b-ba13-850fd4fa4dcd",
1500
- "title": "To purchase a reserved DB instance offering"
1501
- }
1502
- ],
1503
- "RebootDBInstance": [
1504
- {
1505
- "input": {
1506
- "DBInstanceIdentifier": "mymysqlinstance",
1507
- "ForceFailover": false
1508
- },
1509
- "output": {
1510
- },
1511
- "comments": {
1512
- "input": {
1513
- },
1514
- "output": {
1515
- }
1516
- },
1517
- "description": "This example reboots the specified DB instance without forcing a failover.",
1518
- "id": "reboot-db-instance-b9ce8a0a-2920-451d-a1f3-01d288aa7366",
1519
- "title": "To reboot a DB instance"
1520
- }
1521
- ],
1522
- "RemoveSourceIdentifierFromSubscription": [
1523
- {
1524
- "input": {
1525
- "SourceIdentifier": "mymysqlinstance",
1526
- "SubscriptionName": "myeventsubscription"
1527
- },
1528
- "output": {
1529
- },
1530
- "comments": {
1531
- "input": {
1532
- },
1533
- "output": {
1534
- }
1535
- },
1536
- "description": "This example removes the specified source identifier from the specified DB event subscription.",
1537
- "id": "remove-source-identifier-from-subscription-30d25493-c19d-4cf7-b4e5-68371d0d8770",
1538
- "title": "To remove a source identifier from a DB event subscription"
1539
- }
1540
- ],
1541
- "RemoveTagsFromResource": [
1542
- {
1543
- "input": {
1544
- "ResourceName": "arn:aws:rds:us-east-1:992648334831:og:mydboptiongroup",
1545
- "TagKeys": [
1546
- "MyKey"
1547
- ]
1548
- },
1549
- "comments": {
1550
- "input": {
1551
- },
1552
- "output": {
1553
- }
1554
- },
1555
- "description": "This example removes the specified tag associated with the specified DB option group.",
1556
- "id": "remove-tags-from-resource-49f00574-38f6-4d01-ac89-d3c668449ce3",
1557
- "title": "To remove tags from a resource"
1558
- }
1559
- ],
1560
- "ResetDBClusterParameterGroup": [
1561
- {
1562
- "input": {
1563
- "DBClusterParameterGroupName": "mydbclusterparametergroup",
1564
- "ResetAllParameters": true
1565
- },
1566
- "output": {
1567
- },
1568
- "comments": {
1569
- "input": {
1570
- },
1571
- "output": {
1572
- }
1573
- },
1574
- "description": "This example resets all parameters for the specified DB cluster parameter group to their default values.",
1575
- "id": "reset-db-cluster-parameter-group-b04aeaf7-7f73-49e1-9bb4-857573ea3ee4",
1576
- "title": "To reset the values of a DB cluster parameter group"
1577
- }
1578
- ],
1579
- "ResetDBParameterGroup": [
1580
- {
1581
- "input": {
1582
- "DBParameterGroupName": "mydbparametergroup",
1583
- "ResetAllParameters": true
1584
- },
1585
- "output": {
1586
- },
1587
- "comments": {
1588
- "input": {
1589
- },
1590
- "output": {
1591
- }
1592
- },
1593
- "description": "This example resets all parameters for the specified DB parameter group to their default values.",
1594
- "id": "reset-db-parameter-group-ed2ed723-de0d-4824-8af5-3c65fa130abf",
1595
- "title": "To reset the values of a DB parameter group"
1596
- }
1597
- ],
1598
- "RestoreDBClusterFromSnapshot": [
1599
- {
1600
- "input": {
1601
- "DBClusterIdentifier": "restored-cluster1",
1602
- "Engine": "aurora",
1603
- "SnapshotIdentifier": "sample-cluster-snapshot1"
1604
- },
1605
- "output": {
1606
- },
1607
- "comments": {
1608
- "input": {
1609
- },
1610
- "output": {
1611
- }
1612
- },
1613
- "description": "The following example restores an Amazon Aurora DB cluster from a DB cluster snapshot.",
1614
- "id": "to-restore-an-amazon-aurora-db-cluster-from-a-db-cluster-snapshot-1473958144325",
1615
- "title": "To restore an Amazon Aurora DB cluster from a DB cluster snapshot"
1616
- }
1617
- ],
1618
- "RestoreDBClusterToPointInTime": [
1619
- {
1620
- "input": {
1621
- "DBClusterIdentifier": "sample-restored-cluster1",
1622
- "RestoreToTime": "2016-09-13T18:45:00Z",
1623
- "SourceDBClusterIdentifier": "sample-cluster1"
1624
- },
1625
- "output": {
1626
- },
1627
- "comments": {
1628
- "input": {
1629
- },
1630
- "output": {
1631
- }
1632
- },
1633
- "description": "The following example restores a DB cluster to a new DB cluster at a point in time from the source DB cluster.",
1634
- "id": "to-restore-a-db-cluster-to-a-point-in-time-1473962082214",
1635
- "title": "To restore a DB cluster to a point in time."
1636
- }
1637
- ],
1638
- "RestoreDBInstanceFromDBSnapshot": [
1639
- {
1640
- "input": {
1641
- "DBInstanceIdentifier": "mysqldb-restored",
1642
- "DBSnapshotIdentifier": "rds:mysqldb-2014-04-22-08-15"
1643
- },
1644
- "output": {
1645
- "AllocatedStorage": 200,
1646
- "AutoMinorVersionUpgrade": true,
1647
- "AvailabilityZone": "us-west-2b",
1648
- "BackupRetentionPeriod": 7,
1649
- "CACertificateIdentifier": "rds-ca-2015",
1650
- "CopyTagsToSnapshot": false,
1651
- "DBInstanceArn": "arn:aws:rds:us-west-2:123456789012:db:mysqldb-restored",
1652
- "DBInstanceClass": "db.t2.small",
1653
- "DBInstanceIdentifier": "mysqldb-restored",
1654
- "DBInstanceStatus": "available",
1655
- "DBName": "sample",
1656
- "DBParameterGroups": [
1657
- {
1658
- "DBParameterGroupName": "default.mysql5.6",
1659
- "ParameterApplyStatus": "in-sync"
1660
- }
1661
- ],
1662
- "DBSecurityGroups": [
1663
-
1664
- ],
1665
- "DBSubnetGroup": {
1666
- "DBSubnetGroupDescription": "default",
1667
- "DBSubnetGroupName": "default",
1668
- "SubnetGroupStatus": "Complete",
1669
- "Subnets": [
1670
- {
1671
- "SubnetAvailabilityZone": {
1672
- "Name": "us-west-2a"
1673
- },
1674
- "SubnetIdentifier": "subnet-77e8db03",
1675
- "SubnetStatus": "Active"
1676
- },
1677
- {
1678
- "SubnetAvailabilityZone": {
1679
- "Name": "us-west-2b"
1680
- },
1681
- "SubnetIdentifier": "subnet-c39989a1",
1682
- "SubnetStatus": "Active"
1683
- },
1684
- {
1685
- "SubnetAvailabilityZone": {
1686
- "Name": "us-west-2c"
1687
- },
1688
- "SubnetIdentifier": "subnet-4b267b0d",
1689
- "SubnetStatus": "Active"
1690
- }
1691
- ],
1692
- "VpcId": "vpc-c1c5b3a3"
1693
- },
1694
- "DbInstancePort": 0,
1695
- "DbiResourceId": "db-VNZUCCBTEDC4WR7THXNJO72HVQ",
1696
- "DomainMemberships": [
1697
-
1698
- ],
1699
- "Engine": "mysql",
1700
- "EngineVersion": "5.6.27",
1701
- "LicenseModel": "general-public-license",
1702
- "MasterUsername": "mymasteruser",
1703
- "MonitoringInterval": 0,
1704
- "MultiAZ": false,
1705
- "OptionGroupMemberships": [
1706
- {
1707
- "OptionGroupName": "default:mysql-5-6",
1708
- "Status": "in-sync"
1709
- }
1710
- ],
1711
- "PendingModifiedValues": {
1712
- },
1713
- "PreferredBackupWindow": "12:58-13:28",
1714
- "PreferredMaintenanceWindow": "tue:10:16-tue:10:46",
1715
- "PubliclyAccessible": true,
1716
- "ReadReplicaDBInstanceIdentifiers": [
1717
-
1718
- ],
1719
- "StorageEncrypted": false,
1720
- "StorageType": "gp2",
1721
- "VpcSecurityGroups": [
1722
- {
1723
- "Status": "active",
1724
- "VpcSecurityGroupId": "sg-e5e5b0d2"
1725
- }
1726
- ]
1727
- },
1728
- "comments": {
1729
- "input": {
1730
- },
1731
- "output": {
1732
- }
1733
- },
1734
- "description": "The following example restores a DB instance from a DB snapshot.",
1735
- "id": "to-restore-a-db-instance-from-a-db-snapshot-1473961657311",
1736
- "title": "To restore a DB instance from a DB snapshot."
1737
- }
1738
- ],
1739
- "RestoreDBInstanceToPointInTime": [
1740
- {
1741
- "input": {
1742
- "RestoreTime": "2016-09-13T18:45:00Z",
1743
- "SourceDBInstanceIdentifier": "mysql-sample",
1744
- "TargetDBInstanceIdentifier": "mysql-sample-restored"
1745
- },
1746
- "output": {
1747
- "AllocatedStorage": 200,
1748
- "AutoMinorVersionUpgrade": true,
1749
- "AvailabilityZone": "us-west-2b",
1750
- "BackupRetentionPeriod": 7,
1751
- "CACertificateIdentifier": "rds-ca-2015",
1752
- "CopyTagsToSnapshot": false,
1753
- "DBInstanceArn": "arn:aws:rds:us-west-2:123456789012:db:mysql-sample-restored",
1754
- "DBInstanceClass": "db.t2.small",
1755
- "DBInstanceIdentifier": "mysql-sample-restored",
1756
- "DBInstanceStatus": "available",
1757
- "DBName": "sample",
1758
- "DBParameterGroups": [
1759
- {
1760
- "DBParameterGroupName": "default.mysql5.6",
1761
- "ParameterApplyStatus": "in-sync"
1762
- }
1763
- ],
1764
- "DBSecurityGroups": [
1765
-
1766
- ],
1767
- "DBSubnetGroup": {
1768
- "DBSubnetGroupDescription": "default",
1769
- "DBSubnetGroupName": "default",
1770
- "SubnetGroupStatus": "Complete",
1771
- "Subnets": [
1772
- {
1773
- "SubnetAvailabilityZone": {
1774
- "Name": "us-west-2a"
1775
- },
1776
- "SubnetIdentifier": "subnet-77e8db03",
1777
- "SubnetStatus": "Active"
1778
- },
1779
- {
1780
- "SubnetAvailabilityZone": {
1781
- "Name": "us-west-2b"
1782
- },
1783
- "SubnetIdentifier": "subnet-c39989a1",
1784
- "SubnetStatus": "Active"
1785
- },
1786
- {
1787
- "SubnetAvailabilityZone": {
1788
- "Name": "us-west-2c"
1789
- },
1790
- "SubnetIdentifier": "subnet-4b267b0d",
1791
- "SubnetStatus": "Active"
1792
- }
1793
- ],
1794
- "VpcId": "vpc-c1c5b3a3"
1795
- },
1796
- "DbInstancePort": 0,
1797
- "DbiResourceId": "db-VNZUCCBTEDC4WR7THXNJO72HVQ",
1798
- "DomainMemberships": [
1799
-
1800
- ],
1801
- "Engine": "mysql",
1802
- "EngineVersion": "5.6.27",
1803
- "LicenseModel": "general-public-license",
1804
- "MasterUsername": "mymasteruser",
1805
- "MonitoringInterval": 0,
1806
- "MultiAZ": false,
1807
- "OptionGroupMemberships": [
1808
- {
1809
- "OptionGroupName": "default:mysql-5-6",
1810
- "Status": "in-sync"
1811
- }
1812
- ],
1813
- "PendingModifiedValues": {
1814
- },
1815
- "PreferredBackupWindow": "12:58-13:28",
1816
- "PreferredMaintenanceWindow": "tue:10:16-tue:10:46",
1817
- "PubliclyAccessible": true,
1818
- "ReadReplicaDBInstanceIdentifiers": [
1819
-
1820
- ],
1821
- "StorageEncrypted": false,
1822
- "StorageType": "gp2",
1823
- "VpcSecurityGroups": [
1824
- {
1825
- "Status": "active",
1826
- "VpcSecurityGroupId": "sg-e5e5b0d2"
1827
- }
1828
- ]
1829
- },
1830
- "comments": {
1831
- "input": {
1832
- },
1833
- "output": {
1834
- }
1835
- },
1836
- "description": "The following example restores a DB instance to a new DB instance at a point in time from the source DB instance.",
1837
- "id": "to-restore-a-db-instance-to-a-point-in-time-1473962652154",
1838
- "title": "To restore a DB instance to a point in time."
1839
- }
1840
- ],
1841
- "RevokeDBSecurityGroupIngress": [
1842
- {
1843
- "input": {
1844
- "CIDRIP": "203.0.113.5/32",
1845
- "DBSecurityGroupName": "mydbsecuritygroup"
1846
- },
1847
- "output": {
1848
- },
1849
- "comments": {
1850
- "input": {
1851
- },
1852
- "output": {
1853
- }
1854
- },
1855
- "description": "This example revokes ingress for the specified CIDR block associated with the specified DB security group.",
1856
- "id": "revoke-db-security-group-ingress-ce5b2c1c-bd4e-4809-b04a-6d78ec448813",
1857
- "title": "To revoke ingress for a DB security group"
1858
- }
1859
- ]
1860
- }
1861
- }