aws-sdk-core 2.11.404 → 3.75.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1212) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -562
  4. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +11 -8
  16. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
  18. data/lib/aws-sdk-core/deprecations.rb +16 -10
  19. data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
  20. data/lib/aws-sdk-core/errors.rb +123 -22
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +6 -99
  24. data/lib/aws-sdk-core/json.rb +9 -10
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +60 -26
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  46. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  47. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  48. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  49. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  50. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  51. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  52. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  53. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  54. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +24 -16
  55. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  56. data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
  57. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  58. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  59. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  60. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  61. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  62. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  63. data/lib/aws-sdk-core/query.rb +5 -0
  64. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  65. data/lib/aws-sdk-core/query/handler.rb +20 -16
  66. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  67. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  68. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  69. data/lib/aws-sdk-core/rest.rb +10 -0
  70. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  71. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  72. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  73. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  74. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  75. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  76. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  77. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  78. data/lib/aws-sdk-core/shared_config.rb +172 -15
  79. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  80. data/lib/aws-sdk-core/structure.rb +22 -13
  81. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  82. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  83. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  88. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  89. data/lib/aws-sdk-core/util.rb +66 -0
  90. data/lib/aws-sdk-core/waiters.rb +3 -0
  91. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  92. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  93. data/lib/aws-sdk-core/xml.rb +9 -0
  94. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  95. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  96. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  97. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  98. data/lib/aws-sdk-sts.rb +45 -0
  99. data/lib/aws-sdk-sts/client.rb +1840 -0
  100. data/lib/aws-sdk-sts/client_api.rb +320 -0
  101. data/lib/aws-sdk-sts/customizations.rb +0 -0
  102. data/lib/aws-sdk-sts/errors.rb +142 -0
  103. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  104. data/lib/aws-sdk-sts/resource.rb +23 -0
  105. data/lib/aws-sdk-sts/types.rb +1312 -0
  106. data/lib/seahorse.rb +60 -60
  107. data/lib/seahorse/client/async_base.rb +50 -0
  108. data/lib/seahorse/client/async_response.rb +62 -0
  109. data/lib/seahorse/client/base.rb +5 -9
  110. data/lib/seahorse/client/configuration.rb +4 -2
  111. data/lib/seahorse/client/h2/connection.rb +244 -0
  112. data/lib/seahorse/client/h2/handler.rb +151 -0
  113. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  114. data/lib/seahorse/client/http/async_response.rb +42 -0
  115. data/lib/seahorse/client/http/response.rb +10 -5
  116. data/lib/seahorse/client/logging/formatter.rb +2 -0
  117. data/lib/seahorse/client/logging/handler.rb +2 -0
  118. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  119. data/lib/seahorse/client/net_http/handler.rb +5 -0
  120. data/lib/seahorse/client/net_http/patches.rb +9 -1
  121. data/lib/seahorse/client/networking_error.rb +28 -0
  122. data/lib/seahorse/client/plugin.rb +66 -6
  123. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  124. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  125. data/lib/seahorse/client/plugins/h2.rb +64 -0
  126. data/lib/seahorse/client/plugins/logging.rb +17 -19
  127. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  128. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  129. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  130. data/lib/seahorse/client/request_context.rb +5 -0
  131. data/lib/seahorse/model/api.rb +33 -0
  132. data/lib/seahorse/model/authorizer.rb +21 -0
  133. data/lib/seahorse/model/operation.rb +11 -0
  134. data/lib/seahorse/model/shapes.rb +44 -2
  135. data/lib/seahorse/util.rb +1 -22
  136. metadata +98 -1085
  137. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -863
  138. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  139. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -28
  140. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  141. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  142. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  143. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  144. data/apis/acm/2015-12-08/api-2.json +0 -872
  145. data/apis/acm/2015-12-08/examples-1.json +0 -5
  146. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  147. data/apis/acm/2015-12-08/smoke.json +0 -18
  148. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  149. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
  150. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  151. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  152. data/apis/amplify/2017-07-25/api-2.json +0 -2374
  153. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  154. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  155. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  156. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  157. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  158. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  159. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  160. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  161. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  162. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  163. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
  164. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  165. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  166. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  167. data/apis/application-insights/2018-11-25/api-2.json +0 -721
  168. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  169. data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
  170. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  171. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  172. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  173. data/apis/appmesh/2019-01-25/api-2.json +0 -3424
  174. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  175. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  176. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  177. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  178. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  179. data/apis/appstream/2016-12-01/smoke.json +0 -11
  180. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  181. data/apis/appsync/2017-07-25/api-2.json +0 -2285
  182. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  183. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  184. data/apis/athena/2017-05-18/api-2.json +0 -985
  185. data/apis/athena/2017-05-18/examples-1.json +0 -5
  186. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  187. data/apis/athena/2017-05-18/smoke.json +0 -11
  188. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  189. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  190. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  191. data/apis/autoscaling/2011-01-01/api-2.json +0 -2464
  192. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  193. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  194. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  195. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  196. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  197. data/apis/backup/2018-11-15/api-2.json +0 -2150
  198. data/apis/backup/2018-11-15/examples-1.json +0 -5
  199. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  200. data/apis/batch/2016-08-10/api-2.json +0 -1137
  201. data/apis/batch/2016-08-10/examples-1.json +0 -589
  202. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  203. data/apis/batch/2016-08-10/smoke.json +0 -11
  204. data/apis/budgets/2016-10-20/api-2.json +0 -830
  205. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  206. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  207. data/apis/ce/2017-10-25/api-2.json +0 -1387
  208. data/apis/ce/2017-10-25/examples-1.json +0 -5
  209. data/apis/ce/2017-10-25/paginators-1.json +0 -14
  210. data/apis/chime/2018-05-01/api-2.json +0 -4483
  211. data/apis/chime/2018-05-01/examples-1.json +0 -5
  212. data/apis/chime/2018-05-01/paginators-1.json +0 -59
  213. data/apis/cloud9/2017-09-23/api-2.json +0 -549
  214. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  215. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  216. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  217. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  218. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  219. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  220. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  221. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  222. data/apis/cloudformation/2010-05-15/api-2.json +0 -3389
  223. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  224. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  225. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  226. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  227. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  228. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  229. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  230. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  231. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  232. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  233. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  234. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  235. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  236. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  237. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  238. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  239. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  240. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  241. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  242. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  243. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  244. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  248. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  249. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  250. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  251. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  252. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  253. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  254. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  255. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  256. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  257. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  258. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  259. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  260. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  261. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  262. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  263. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  264. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  265. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  266. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  267. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  268. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  269. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  270. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  271. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  272. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  273. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  274. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  275. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  276. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  277. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  278. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  279. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  280. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  281. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  282. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  283. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  284. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  285. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  286. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  287. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  288. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  289. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  290. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  291. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  292. data/apis/codebuild/2016-10-06/api-2.json +0 -1295
  293. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  294. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  295. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  296. data/apis/codecommit/2015-04-13/api-2.json +0 -5383
  297. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  298. data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
  299. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  300. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  301. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  302. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  303. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  304. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  305. data/apis/codepipeline/2015-07-09/api-2.json +0 -2441
  306. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  307. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  308. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  309. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  310. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  311. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  312. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  313. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  314. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  315. data/apis/codestar/2017-04-19/smoke.json +0 -11
  316. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  317. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  318. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  319. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5395
  320. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  321. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  322. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  323. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  324. data/apis/comprehend/2017-11-27/api-2.json +0 -2367
  325. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  326. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  327. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
  328. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  329. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  330. data/apis/config/2014-11-12/api-2.json +0 -4340
  331. data/apis/config/2014-11-12/examples-1.json +0 -5
  332. data/apis/config/2014-11-12/paginators-1.json +0 -21
  333. data/apis/config/2014-11-12/smoke.json +0 -19
  334. data/apis/connect/2017-08-08/api-2.json +0 -2139
  335. data/apis/connect/2017-08-08/examples-1.json +0 -5
  336. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  337. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  338. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  339. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  340. data/apis/cur/2017-01-06/api-2.json +0 -277
  341. data/apis/cur/2017-01-06/examples-1.json +0 -102
  342. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  343. data/apis/cur/2017-01-06/smoke.json +0 -11
  344. data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
  345. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  346. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  347. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  348. data/apis/datasync/2018-11-09/api-2.json +0 -1354
  349. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  350. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  351. data/apis/dax/2017-04-19/api-2.json +0 -1140
  352. data/apis/dax/2017-04-19/examples-1.json +0 -5
  353. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  354. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  355. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  356. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  357. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  358. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  359. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  360. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  361. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  362. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  363. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  364. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  365. data/apis/discovery/2015-11-01/smoke.json +0 -11
  366. data/apis/dlm/2018-01-12/api-2.json +0 -633
  367. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  368. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  369. data/apis/dms/2016-01-01/api-2.json +0 -2296
  370. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  371. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  372. data/apis/dms/2016-01-01/smoke.json +0 -18
  373. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  374. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  375. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  376. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  377. data/apis/docdb/2014-10-31/smoke.json +0 -18
  378. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  379. data/apis/ds/2015-04-16/api-2.json +0 -2634
  380. data/apis/ds/2015-04-16/examples-1.json +0 -5
  381. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  382. data/apis/ds/2015-04-16/smoke.json +0 -20
  383. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  384. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  385. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  386. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  387. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  388. data/apis/dynamodb/2012-08-10/api-2.json +0 -3024
  389. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  390. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  391. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  392. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  393. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  394. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  395. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  396. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  397. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  398. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  399. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  400. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  401. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  402. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  403. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  404. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  405. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  406. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  407. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  408. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  409. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  410. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  411. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  412. data/apis/ec2/2016-11-15/api-2.json +0 -26786
  413. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  414. data/apis/ec2/2016-11-15/paginators-1.json +0 -462
  415. data/apis/ec2/2016-11-15/resources-1.json +0 -2688
  416. data/apis/ec2/2016-11-15/smoke.json +0 -20
  417. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  418. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  419. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  420. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  421. data/apis/ecr/2015-09-21/smoke.json +0 -18
  422. data/apis/ecs/2014-11-13/api-2.json +0 -2910
  423. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  424. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  425. data/apis/ecs/2014-11-13/smoke.json +0 -18
  426. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  427. data/apis/eks/2017-11-01/api-2.json +0 -1211
  428. data/apis/eks/2017-11-01/examples-1.json +0 -135
  429. data/apis/eks/2017-11-01/paginators-1.json +0 -22
  430. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  431. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  432. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  433. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  434. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  435. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  436. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  437. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  438. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  439. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  440. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -897
  441. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  442. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  443. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  444. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  445. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  446. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  447. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  448. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  449. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2343
  450. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  451. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  452. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  453. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  454. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2241
  455. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  456. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  457. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  458. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  459. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  460. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  461. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  462. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  463. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  464. data/apis/email/2010-12-01/api-2.json +0 -3182
  465. data/apis/email/2010-12-01/examples-1.json +0 -1021
  466. data/apis/email/2010-12-01/paginators-1.json +0 -18
  467. data/apis/email/2010-12-01/smoke.json +0 -18
  468. data/apis/email/2010-12-01/waiters-2.json +0 -18
  469. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  470. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  471. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  472. data/apis/es/2015-01-01/api-2.json +0 -1572
  473. data/apis/es/2015-01-01/examples-1.json +0 -5
  474. data/apis/es/2015-01-01/paginators-1.json +0 -29
  475. data/apis/es/2015-01-01/smoke.json +0 -18
  476. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  477. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  478. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  479. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  480. data/apis/events/2015-10-07/api-2.json +0 -1462
  481. data/apis/events/2015-10-07/examples-1.json +0 -5
  482. data/apis/events/2015-10-07/paginators-1.json +0 -4
  483. data/apis/events/2015-10-07/smoke.json +0 -18
  484. data/apis/firehose/2015-08-04/api-2.json +0 -1445
  485. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  486. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  487. data/apis/firehose/2015-08-04/smoke.json +0 -18
  488. data/apis/fms/2018-01-01/api-2.json +0 -701
  489. data/apis/fms/2018-01-01/examples-1.json +0 -5
  490. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  491. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  492. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  493. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  494. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  495. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  496. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  497. data/apis/fsx/2018-03-01/api-2.json +0 -1063
  498. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  499. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  500. data/apis/gamelift/2015-10-01/api-2.json +0 -3495
  501. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  502. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  503. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  504. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  505. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  506. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  507. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  508. data/apis/glacier/2012-06-01/smoke.json +0 -18
  509. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  510. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  511. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  512. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  513. data/apis/glue/2017-03-31/api-2.json +0 -6302
  514. data/apis/glue/2017-03-31/examples-1.json +0 -5
  515. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  516. data/apis/glue/2017-03-31/smoke.json +0 -11
  517. data/apis/greengrass/2017-06-07/api-2.json +0 -5106
  518. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  519. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  520. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  521. data/apis/guardduty/2017-11-28/api-2.json +0 -3508
  522. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  523. data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
  524. data/apis/health/2016-08-04/api-2.json +0 -554
  525. data/apis/health/2016-08-04/examples-1.json +0 -5
  526. data/apis/health/2016-08-04/paginators-1.json +0 -31
  527. data/apis/health/2016-08-04/smoke.json +0 -11
  528. data/apis/iam/2010-05-08/api-2.json +0 -5787
  529. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  530. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  531. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  532. data/apis/iam/2010-05-08/smoke.json +0 -18
  533. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  534. data/apis/importexport/2010-06-01/api-2.json +0 -667
  535. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  536. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  537. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  538. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  539. data/apis/inspector/2016-02-16/smoke.json +0 -18
  540. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  541. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  542. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  543. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  544. data/apis/iot/2015-05-28/api-2.json +0 -10148
  545. data/apis/iot/2015-05-28/examples-1.json +0 -5
  546. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  547. data/apis/iot/2015-05-28/smoke.json +0 -18
  548. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  549. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  550. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  551. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  552. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  553. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  554. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  555. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  556. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  557. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  558. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  559. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  560. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  561. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  562. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  563. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  564. data/apis/kafka/2018-11-14/api-2.json +0 -1950
  565. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  566. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  567. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  568. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  569. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  570. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  571. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  572. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  573. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  574. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  575. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  576. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  577. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  578. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  579. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  580. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
  581. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  582. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  583. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  584. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  585. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  586. data/apis/kms/2014-11-01/api-2.json +0 -1834
  587. data/apis/kms/2014-11-01/examples-1.json +0 -906
  588. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  589. data/apis/kms/2014-11-01/smoke.json +0 -19
  590. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  591. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  592. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  593. data/apis/lambda/2014-11-11/api-2.json +0 -668
  594. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  595. data/apis/lambda/2015-03-31/api-2.json +0 -2356
  596. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  597. data/apis/lambda/2015-03-31/paginators-1.json +0 -40
  598. data/apis/lambda/2015-03-31/smoke.json +0 -18
  599. data/apis/lambda/2015-03-31/waiters-2.json +0 -22
  600. data/apis/lex-models/2017-04-19/api-2.json +0 -2265
  601. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  602. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  603. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  604. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  605. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  606. data/apis/lightsail/2016-11-28/api-2.json +0 -5015
  607. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  608. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  609. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  610. data/apis/logs/2014-03-28/api-2.json +0 -1701
  611. data/apis/logs/2014-03-28/examples-1.json +0 -5
  612. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  613. data/apis/logs/2014-03-28/smoke.json +0 -19
  614. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  615. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  616. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  617. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  618. data/apis/macie/2017-12-19/api-2.json +0 -365
  619. data/apis/macie/2017-12-19/examples-1.json +0 -5
  620. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  621. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  622. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  623. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  624. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  625. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  626. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  627. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  628. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  629. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  630. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  631. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  632. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  633. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8559
  634. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  635. data/apis/medialive/2017-10-14/api-2.json +0 -9023
  636. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  637. data/apis/medialive/2017-10-14/waiters-2.json +0 -111
  638. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1514
  639. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  640. data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
  641. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  642. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  643. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  644. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  645. data/apis/mediastore/2017-09-01/api-2.json +0 -737
  646. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  647. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  648. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  649. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  650. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  651. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  652. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  653. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -207
  654. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  655. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  656. data/apis/mobile/2017-07-01/api-2.json +0 -551
  657. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  658. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  659. data/apis/monitoring/2010-08-01/api-2.json +0 -1526
  660. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  661. data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
  662. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  663. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  664. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  665. data/apis/mq/2017-11-27/api-2.json +0 -2538
  666. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  667. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  668. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  669. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  670. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  671. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  672. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  673. data/apis/neptune/2014-10-31/smoke.json +0 -18
  674. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  675. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  676. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  677. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  678. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  679. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  680. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  681. data/apis/opsworkscm/2016-11-01/api-2.json +0 -817
  682. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  683. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  684. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  685. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  686. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  687. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  688. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  689. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  690. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  691. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  692. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  693. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  694. data/apis/personalize/2018-05-22/api-2.json +0 -1863
  695. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  696. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  697. data/apis/pi/2018-02-27/api-2.json +0 -253
  698. data/apis/pi/2018-02-27/examples-1.json +0 -5
  699. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  700. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  701. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  702. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  703. data/apis/pinpoint/2016-12-01/api-2.json +0 -11189
  704. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  705. data/apis/polly/2016-06-10/api-2.json +0 -832
  706. data/apis/polly/2016-06-10/examples-1.json +0 -171
  707. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  708. data/apis/polly/2016-06-10/smoke.json +0 -11
  709. data/apis/pricing/2017-10-15/api-2.json +0 -227
  710. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  711. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  712. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  713. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  714. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  715. data/apis/qldb/2019-01-02/api-2.json +0 -776
  716. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  717. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  718. data/apis/quicksight/2018-04-01/api-2.json +0 -5482
  719. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  720. data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
  721. data/apis/ram/2018-01-04/api-2.json +0 -1021
  722. data/apis/ram/2018-01-04/examples-1.json +0 -5
  723. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  724. data/apis/rds-data/2018-08-01/api-2.json +0 -540
  725. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  726. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  727. data/apis/rds/2013-01-10/api-2.json +0 -2903
  728. data/apis/rds/2013-01-10/examples-1.json +0 -5
  729. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  730. data/apis/rds/2013-01-10/smoke.json +0 -18
  731. data/apis/rds/2013-02-12/api-2.json +0 -3059
  732. data/apis/rds/2013-02-12/examples-1.json +0 -5
  733. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  734. data/apis/rds/2013-02-12/smoke.json +0 -18
  735. data/apis/rds/2013-09-09/api-2.json +0 -3160
  736. data/apis/rds/2013-09-09/examples-1.json +0 -5
  737. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  738. data/apis/rds/2013-09-09/smoke.json +0 -18
  739. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  740. data/apis/rds/2014-09-01/api-2.json +0 -3273
  741. data/apis/rds/2014-09-01/examples-1.json +0 -5
  742. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  743. data/apis/rds/2014-09-01/smoke.json +0 -18
  744. data/apis/rds/2014-10-31/api-2.json +0 -6880
  745. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  746. data/apis/rds/2014-10-31/paginators-1.json +0 -140
  747. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  748. data/apis/rds/2014-10-31/smoke.json +0 -18
  749. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  750. data/apis/rds/2015-11-12/api-2.json +0 -5509
  751. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  752. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  753. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  754. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  755. data/apis/redshift/2012-12-01/api-2.json +0 -4995
  756. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  757. data/apis/redshift/2012-12-01/paginators-1.json +0 -100
  758. data/apis/redshift/2012-12-01/smoke.json +0 -18
  759. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  760. data/apis/rekognition/2016-06-27/api-2.json +0 -2148
  761. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  762. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  763. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  764. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  765. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  766. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  767. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  768. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  769. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  770. data/apis/robomaker/2018-06-29/api-2.json +0 -2160
  771. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  772. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  773. data/apis/route53/2013-04-01/api-2.json +0 -3780
  774. data/apis/route53/2013-04-01/examples-1.json +0 -762
  775. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  776. data/apis/route53/2013-04-01/smoke.json +0 -18
  777. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  778. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  779. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  780. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  781. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  782. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  783. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  784. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  785. data/apis/runtime.lex/2016-11-28/api-2.json +0 -708
  786. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  787. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  788. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  789. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  790. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  791. data/apis/s3/2006-03-01/api-2.json +0 -6653
  792. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  793. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  794. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  795. data/apis/s3/2006-03-01/smoke.json +0 -11
  796. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  797. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  798. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  799. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  800. data/apis/sagemaker/2017-07-24/api-2.json +0 -5289
  801. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  802. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  803. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  804. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  805. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  806. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  807. data/apis/sdb/2009-04-15/api-2.json +0 -955
  808. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  809. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  810. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  811. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  812. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  813. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  814. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  815. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  816. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  817. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  818. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  819. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  820. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  821. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  822. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  823. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  824. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  825. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  826. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  827. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  828. data/apis/sesv2/2019-09-27/api-2.json +0 -2093
  829. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  830. data/apis/sesv2/2019-09-27/paginators-1.json +0 -34
  831. data/apis/shield/2016-06-02/api-2.json +0 -893
  832. data/apis/shield/2016-06-02/examples-1.json +0 -5
  833. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  834. data/apis/shield/2016-06-02/smoke.json +0 -11
  835. data/apis/signer/2017-08-25/api-2.json +0 -817
  836. data/apis/signer/2017-08-25/examples-1.json +0 -5
  837. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  838. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  839. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  840. data/apis/sms/2016-10-24/api-2.json +0 -1366
  841. data/apis/sms/2016-10-24/examples-1.json +0 -5
  842. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  843. data/apis/sms/2016-10-24/smoke.json +0 -18
  844. data/apis/snowball/2016-06-30/api-2.json +0 -955
  845. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  846. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  847. data/apis/snowball/2016-06-30/smoke.json +0 -11
  848. data/apis/sns/2010-03-31/api-2.json +0 -1468
  849. data/apis/sns/2010-03-31/examples-1.json +0 -5
  850. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  851. data/apis/sns/2010-03-31/resources-1.json +0 -327
  852. data/apis/sns/2010-03-31/smoke.json +0 -19
  853. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  854. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  855. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  856. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  857. data/apis/sqs/2012-11-05/smoke.json +0 -18
  858. data/apis/ssm/2014-11-06/api-2.json +0 -9111
  859. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  860. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  861. data/apis/ssm/2014-11-06/smoke.json +0 -18
  862. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  863. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  864. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  865. data/apis/sso/2019-06-10/api-2.json +0 -281
  866. data/apis/sso/2019-06-10/examples-1.json +0 -5
  867. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  868. data/apis/states/2016-11-23/api-2.json +0 -1409
  869. data/apis/states/2016-11-23/examples-1.json +0 -5
  870. data/apis/states/2016-11-23/paginators-1.json +0 -28
  871. data/apis/states/2016-11-23/smoke.json +0 -11
  872. data/apis/storagegateway/2013-06-30/api-2.json +0 -3259
  873. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  874. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  875. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  876. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  877. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  878. data/apis/sts/2011-06-15/api-2.json +0 -598
  879. data/apis/sts/2011-06-15/examples-1.json +0 -234
  880. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  881. data/apis/sts/2011-06-15/smoke.json +0 -19
  882. data/apis/support/2013-04-15/api-2.json +0 -773
  883. data/apis/support/2013-04-15/examples-1.json +0 -5
  884. data/apis/support/2013-04-15/paginators-1.json +0 -25
  885. data/apis/support/2013-04-15/smoke.json +0 -22
  886. data/apis/swf/2012-01-25/api-2.json +0 -2792
  887. data/apis/swf/2012-01-25/examples-1.json +0 -5
  888. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  889. data/apis/textract/2018-06-27/api-2.json +0 -572
  890. data/apis/textract/2018-06-27/examples-1.json +0 -5
  891. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  892. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  893. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  894. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  895. data/apis/transcribe/2017-10-26/api-2.json +0 -538
  896. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  897. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  898. data/apis/transfer/2018-11-05/api-2.json +0 -940
  899. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  900. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  901. data/apis/translate/2017-07-01/api-2.json +0 -408
  902. data/apis/translate/2017-07-01/examples-1.json +0 -5
  903. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  904. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  905. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  906. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  907. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  908. data/apis/waf/2015-08-24/api-2.json +0 -3857
  909. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  910. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  911. data/apis/waf/2015-08-24/smoke.json +0 -21
  912. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  913. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  914. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  915. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  916. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  917. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  918. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  919. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  920. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  921. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  922. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  923. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  924. data/apis/workspaces/2015-04-08/api-2.json +0 -1992
  925. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  926. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  927. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  928. data/apis/xray/2016-04-12/api-2.json +0 -1352
  929. data/apis/xray/2016-04-12/examples-1.json +0 -5
  930. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  931. data/bin/aws.rb +0 -180
  932. data/endpoints.json +0 -5642
  933. data/lib/aws-sdk-core/acm.rb +0 -7
  934. data/lib/aws-sdk-core/acmpca.rb +0 -7
  935. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  936. data/lib/aws-sdk-core/amplify.rb +0 -6
  937. data/lib/aws-sdk-core/api/builder.rb +0 -129
  938. data/lib/aws-sdk-core/api/customizations.rb +0 -303
  939. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  940. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  941. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  942. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  943. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  944. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  945. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  946. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  947. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  948. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  949. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  950. data/lib/aws-sdk-core/apigateway.rb +0 -6
  951. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  952. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  953. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  954. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  955. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  956. data/lib/aws-sdk-core/appmesh.rb +0 -6
  957. data/lib/aws-sdk-core/appstream.rb +0 -7
  958. data/lib/aws-sdk-core/appsync.rb +0 -6
  959. data/lib/aws-sdk-core/athena.rb +0 -6
  960. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  961. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  962. data/lib/aws-sdk-core/backup.rb +0 -6
  963. data/lib/aws-sdk-core/batch.rb +0 -6
  964. data/lib/aws-sdk-core/budgets.rb +0 -6
  965. data/lib/aws-sdk-core/checksums.rb +0 -51
  966. data/lib/aws-sdk-core/chime.rb +0 -6
  967. data/lib/aws-sdk-core/client.rb +0 -62
  968. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  969. data/lib/aws-sdk-core/cloud9.rb +0 -6
  970. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  971. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  972. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  973. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  974. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  975. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  976. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  977. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  978. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  979. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  980. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  981. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  982. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  983. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  984. data/lib/aws-sdk-core/codebuild.rb +0 -6
  985. data/lib/aws-sdk-core/codecommit.rb +0 -6
  986. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  987. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  988. data/lib/aws-sdk-core/codestar.rb +0 -6
  989. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  990. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  991. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  992. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  993. data/lib/aws-sdk-core/comprehend.rb +0 -6
  994. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  995. data/lib/aws-sdk-core/configservice.rb +0 -6
  996. data/lib/aws-sdk-core/connect.rb +0 -6
  997. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  998. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  999. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1000. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1001. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1002. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1003. data/lib/aws-sdk-core/datasync.rb +0 -6
  1004. data/lib/aws-sdk-core/dax.rb +0 -6
  1005. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1006. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1007. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1008. data/lib/aws-sdk-core/dlm.rb +0 -6
  1009. data/lib/aws-sdk-core/docdb.rb +0 -7
  1010. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1011. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1012. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1013. data/lib/aws-sdk-core/ec2.rb +0 -8
  1014. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1015. data/lib/aws-sdk-core/ecr.rb +0 -6
  1016. data/lib/aws-sdk-core/ecs.rb +0 -7
  1017. data/lib/aws-sdk-core/efs.rb +0 -6
  1018. data/lib/aws-sdk-core/eks.rb +0 -7
  1019. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1020. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1021. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1022. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1023. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1024. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1025. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1026. data/lib/aws-sdk-core/emr.rb +0 -7
  1027. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1028. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1029. data/lib/aws-sdk-core/firehose.rb +0 -6
  1030. data/lib/aws-sdk-core/fms.rb +0 -6
  1031. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1032. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1033. data/lib/aws-sdk-core/fsx.rb +0 -6
  1034. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1035. data/lib/aws-sdk-core/glacier.rb +0 -8
  1036. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1037. data/lib/aws-sdk-core/glue.rb +0 -6
  1038. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1039. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1040. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1041. data/lib/aws-sdk-core/health.rb +0 -6
  1042. data/lib/aws-sdk-core/iam.rb +0 -8
  1043. data/lib/aws-sdk-core/importexport.rb +0 -5
  1044. data/lib/aws-sdk-core/inspector.rb +0 -6
  1045. data/lib/aws-sdk-core/iot.rb +0 -6
  1046. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1047. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1048. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1049. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1050. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1051. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1052. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1053. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1054. data/lib/aws-sdk-core/kafka.rb +0 -5
  1055. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1056. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1057. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1058. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1059. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1060. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1061. data/lib/aws-sdk-core/kms.rb +0 -6
  1062. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1063. data/lib/aws-sdk-core/lambda.rb +0 -7
  1064. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1065. data/lib/aws-sdk-core/lex.rb +0 -6
  1066. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1067. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1068. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1069. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1070. data/lib/aws-sdk-core/macie.rb +0 -6
  1071. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1072. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1073. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1074. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1075. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1076. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1077. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1078. data/lib/aws-sdk-core/medialive.rb +0 -6
  1079. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1080. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1081. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1082. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1083. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1084. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1085. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1086. data/lib/aws-sdk-core/mobile.rb +0 -6
  1087. data/lib/aws-sdk-core/mq.rb +0 -5
  1088. data/lib/aws-sdk-core/mturk.rb +0 -6
  1089. data/lib/aws-sdk-core/neptune.rb +0 -7
  1090. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1091. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1092. data/lib/aws-sdk-core/organizations.rb +0 -6
  1093. data/lib/aws-sdk-core/partitions.rb +0 -174
  1094. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1095. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1096. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1097. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1098. data/lib/aws-sdk-core/personalize.rb +0 -6
  1099. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1100. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1101. data/lib/aws-sdk-core/pi.rb +0 -6
  1102. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1103. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1104. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1105. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1106. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1107. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1108. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1109. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1110. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1111. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1112. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1113. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1114. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1115. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1116. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1117. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1118. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1119. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1120. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1121. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1122. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1123. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1124. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1125. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1126. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1127. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1128. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1129. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1130. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1131. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1132. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1133. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1134. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1135. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1136. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1137. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1138. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1139. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1140. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1141. data/lib/aws-sdk-core/polly.rb +0 -14
  1142. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1143. data/lib/aws-sdk-core/pricing.rb +0 -6
  1144. data/lib/aws-sdk-core/qldb.rb +0 -6
  1145. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1146. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1147. data/lib/aws-sdk-core/ram.rb +0 -6
  1148. data/lib/aws-sdk-core/rds.rb +0 -16
  1149. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1150. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1151. data/lib/aws-sdk-core/redshift.rb +0 -7
  1152. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1153. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1154. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1155. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1156. data/lib/aws-sdk-core/route53.rb +0 -7
  1157. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1158. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1159. data/lib/aws-sdk-core/s3.rb +0 -26
  1160. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1161. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1162. data/lib/aws-sdk-core/s3control.rb +0 -6
  1163. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1164. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1165. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1166. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1167. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1168. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1169. data/lib/aws-sdk-core/service.rb +0 -4
  1170. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1171. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1172. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1173. data/lib/aws-sdk-core/ses.rb +0 -7
  1174. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1175. data/lib/aws-sdk-core/shield.rb +0 -6
  1176. data/lib/aws-sdk-core/signer.rb +0 -7
  1177. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1178. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1179. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1180. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1181. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1182. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1183. data/lib/aws-sdk-core/sms.rb +0 -6
  1184. data/lib/aws-sdk-core/snowball.rb +0 -6
  1185. data/lib/aws-sdk-core/sns.rb +0 -7
  1186. data/lib/aws-sdk-core/sqs.rb +0 -7
  1187. data/lib/aws-sdk-core/ssm.rb +0 -6
  1188. data/lib/aws-sdk-core/sso.rb +0 -6
  1189. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1190. data/lib/aws-sdk-core/states.rb +0 -6
  1191. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1192. data/lib/aws-sdk-core/sts.rb +0 -6
  1193. data/lib/aws-sdk-core/support.rb +0 -6
  1194. data/lib/aws-sdk-core/swf.rb +0 -6
  1195. data/lib/aws-sdk-core/textract.rb +0 -6
  1196. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1197. data/lib/aws-sdk-core/transfer.rb +0 -6
  1198. data/lib/aws-sdk-core/translate.rb +0 -6
  1199. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1200. data/lib/aws-sdk-core/version.rb +0 -3
  1201. data/lib/aws-sdk-core/waf.rb +0 -6
  1202. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1203. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1204. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1205. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1206. data/lib/aws-sdk-core/worklink.rb +0 -6
  1207. data/lib/aws-sdk-core/workmail.rb +0 -6
  1208. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1209. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1210. data/lib/aws-sdk-core/xray.rb +0 -6
  1211. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1212. data/service-models.json +0 -805
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,4 +0,0 @@
1
- {
2
- "pagination": {
3
- }
4
- }
@@ -1,25 +0,0 @@
1
- {
2
- "version": 2,
3
- "waiters": {
4
- "NodeAssociated": {
5
- "delay": 15,
6
- "maxAttempts": 15,
7
- "operation": "DescribeNodeAssociationStatus",
8
- "description": "Wait until node is associated or disassociated.",
9
- "acceptors": [
10
- {
11
- "expected": "SUCCESS",
12
- "state": "success",
13
- "matcher": "path",
14
- "argument": "NodeAssociationStatus"
15
- },
16
- {
17
- "expected": "FAILED",
18
- "state": "failure",
19
- "matcher": "path",
20
- "argument": "NodeAssociationStatus"
21
- }
22
- ]
23
- }
24
- }
25
- }
@@ -1,2317 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2016-11-28",
5
- "endpointPrefix":"organizations",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceAbbreviation":"Organizations",
9
- "serviceFullName":"AWS Organizations",
10
- "serviceId":"Organizations",
11
- "signatureVersion":"v4",
12
- "targetPrefix":"AWSOrganizationsV20161128",
13
- "uid":"organizations-2016-11-28"
14
- },
15
- "operations":{
16
- "AcceptHandshake":{
17
- "name":"AcceptHandshake",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"AcceptHandshakeRequest"},
23
- "output":{"shape":"AcceptHandshakeResponse"},
24
- "errors":[
25
- {"shape":"AccessDeniedException"},
26
- {"shape":"AWSOrganizationsNotInUseException"},
27
- {"shape":"HandshakeConstraintViolationException"},
28
- {"shape":"HandshakeNotFoundException"},
29
- {"shape":"InvalidHandshakeTransitionException"},
30
- {"shape":"HandshakeAlreadyInStateException"},
31
- {"shape":"InvalidInputException"},
32
- {"shape":"ConcurrentModificationException"},
33
- {"shape":"ServiceException"},
34
- {"shape":"TooManyRequestsException"},
35
- {"shape":"AccessDeniedForDependencyException"}
36
- ]
37
- },
38
- "AttachPolicy":{
39
- "name":"AttachPolicy",
40
- "http":{
41
- "method":"POST",
42
- "requestUri":"/"
43
- },
44
- "input":{"shape":"AttachPolicyRequest"},
45
- "errors":[
46
- {"shape":"AccessDeniedException"},
47
- {"shape":"AWSOrganizationsNotInUseException"},
48
- {"shape":"ConcurrentModificationException"},
49
- {"shape":"ConstraintViolationException"},
50
- {"shape":"DuplicatePolicyAttachmentException"},
51
- {"shape":"InvalidInputException"},
52
- {"shape":"PolicyNotFoundException"},
53
- {"shape":"PolicyTypeNotEnabledException"},
54
- {"shape":"ServiceException"},
55
- {"shape":"TargetNotFoundException"},
56
- {"shape":"TooManyRequestsException"}
57
- ]
58
- },
59
- "CancelHandshake":{
60
- "name":"CancelHandshake",
61
- "http":{
62
- "method":"POST",
63
- "requestUri":"/"
64
- },
65
- "input":{"shape":"CancelHandshakeRequest"},
66
- "output":{"shape":"CancelHandshakeResponse"},
67
- "errors":[
68
- {"shape":"AccessDeniedException"},
69
- {"shape":"ConcurrentModificationException"},
70
- {"shape":"HandshakeNotFoundException"},
71
- {"shape":"InvalidHandshakeTransitionException"},
72
- {"shape":"HandshakeAlreadyInStateException"},
73
- {"shape":"InvalidInputException"},
74
- {"shape":"ServiceException"},
75
- {"shape":"TooManyRequestsException"}
76
- ]
77
- },
78
- "CreateAccount":{
79
- "name":"CreateAccount",
80
- "http":{
81
- "method":"POST",
82
- "requestUri":"/"
83
- },
84
- "input":{"shape":"CreateAccountRequest"},
85
- "output":{"shape":"CreateAccountResponse"},
86
- "errors":[
87
- {"shape":"AccessDeniedException"},
88
- {"shape":"AWSOrganizationsNotInUseException"},
89
- {"shape":"ConcurrentModificationException"},
90
- {"shape":"ConstraintViolationException"},
91
- {"shape":"InvalidInputException"},
92
- {"shape":"FinalizingOrganizationException"},
93
- {"shape":"ServiceException"},
94
- {"shape":"TooManyRequestsException"},
95
- {"shape":"UnsupportedAPIEndpointException"}
96
- ]
97
- },
98
- "CreateGovCloudAccount":{
99
- "name":"CreateGovCloudAccount",
100
- "http":{
101
- "method":"POST",
102
- "requestUri":"/"
103
- },
104
- "input":{"shape":"CreateGovCloudAccountRequest"},
105
- "output":{"shape":"CreateGovCloudAccountResponse"},
106
- "errors":[
107
- {"shape":"AccessDeniedException"},
108
- {"shape":"AWSOrganizationsNotInUseException"},
109
- {"shape":"ConcurrentModificationException"},
110
- {"shape":"ConstraintViolationException"},
111
- {"shape":"InvalidInputException"},
112
- {"shape":"FinalizingOrganizationException"},
113
- {"shape":"ServiceException"},
114
- {"shape":"TooManyRequestsException"},
115
- {"shape":"UnsupportedAPIEndpointException"}
116
- ]
117
- },
118
- "CreateOrganization":{
119
- "name":"CreateOrganization",
120
- "http":{
121
- "method":"POST",
122
- "requestUri":"/"
123
- },
124
- "input":{"shape":"CreateOrganizationRequest"},
125
- "output":{"shape":"CreateOrganizationResponse"},
126
- "errors":[
127
- {"shape":"AccessDeniedException"},
128
- {"shape":"AlreadyInOrganizationException"},
129
- {"shape":"ConcurrentModificationException"},
130
- {"shape":"ConstraintViolationException"},
131
- {"shape":"InvalidInputException"},
132
- {"shape":"ServiceException"},
133
- {"shape":"TooManyRequestsException"},
134
- {"shape":"AccessDeniedForDependencyException"}
135
- ]
136
- },
137
- "CreateOrganizationalUnit":{
138
- "name":"CreateOrganizationalUnit",
139
- "http":{
140
- "method":"POST",
141
- "requestUri":"/"
142
- },
143
- "input":{"shape":"CreateOrganizationalUnitRequest"},
144
- "output":{"shape":"CreateOrganizationalUnitResponse"},
145
- "errors":[
146
- {"shape":"AccessDeniedException"},
147
- {"shape":"AWSOrganizationsNotInUseException"},
148
- {"shape":"ConcurrentModificationException"},
149
- {"shape":"ConstraintViolationException"},
150
- {"shape":"DuplicateOrganizationalUnitException"},
151
- {"shape":"InvalidInputException"},
152
- {"shape":"ParentNotFoundException"},
153
- {"shape":"ServiceException"},
154
- {"shape":"TooManyRequestsException"}
155
- ]
156
- },
157
- "CreatePolicy":{
158
- "name":"CreatePolicy",
159
- "http":{
160
- "method":"POST",
161
- "requestUri":"/"
162
- },
163
- "input":{"shape":"CreatePolicyRequest"},
164
- "output":{"shape":"CreatePolicyResponse"},
165
- "errors":[
166
- {"shape":"AccessDeniedException"},
167
- {"shape":"AWSOrganizationsNotInUseException"},
168
- {"shape":"ConcurrentModificationException"},
169
- {"shape":"ConstraintViolationException"},
170
- {"shape":"DuplicatePolicyException"},
171
- {"shape":"InvalidInputException"},
172
- {"shape":"MalformedPolicyDocumentException"},
173
- {"shape":"PolicyTypeNotAvailableForOrganizationException"},
174
- {"shape":"ServiceException"},
175
- {"shape":"TooManyRequestsException"}
176
- ]
177
- },
178
- "DeclineHandshake":{
179
- "name":"DeclineHandshake",
180
- "http":{
181
- "method":"POST",
182
- "requestUri":"/"
183
- },
184
- "input":{"shape":"DeclineHandshakeRequest"},
185
- "output":{"shape":"DeclineHandshakeResponse"},
186
- "errors":[
187
- {"shape":"AccessDeniedException"},
188
- {"shape":"ConcurrentModificationException"},
189
- {"shape":"HandshakeNotFoundException"},
190
- {"shape":"InvalidHandshakeTransitionException"},
191
- {"shape":"HandshakeAlreadyInStateException"},
192
- {"shape":"InvalidInputException"},
193
- {"shape":"ServiceException"},
194
- {"shape":"TooManyRequestsException"}
195
- ]
196
- },
197
- "DeleteOrganization":{
198
- "name":"DeleteOrganization",
199
- "http":{
200
- "method":"POST",
201
- "requestUri":"/"
202
- },
203
- "errors":[
204
- {"shape":"AccessDeniedException"},
205
- {"shape":"AWSOrganizationsNotInUseException"},
206
- {"shape":"ConcurrentModificationException"},
207
- {"shape":"InvalidInputException"},
208
- {"shape":"OrganizationNotEmptyException"},
209
- {"shape":"ServiceException"},
210
- {"shape":"TooManyRequestsException"}
211
- ]
212
- },
213
- "DeleteOrganizationalUnit":{
214
- "name":"DeleteOrganizationalUnit",
215
- "http":{
216
- "method":"POST",
217
- "requestUri":"/"
218
- },
219
- "input":{"shape":"DeleteOrganizationalUnitRequest"},
220
- "errors":[
221
- {"shape":"AccessDeniedException"},
222
- {"shape":"AWSOrganizationsNotInUseException"},
223
- {"shape":"ConcurrentModificationException"},
224
- {"shape":"InvalidInputException"},
225
- {"shape":"OrganizationalUnitNotEmptyException"},
226
- {"shape":"OrganizationalUnitNotFoundException"},
227
- {"shape":"ServiceException"},
228
- {"shape":"TooManyRequestsException"}
229
- ]
230
- },
231
- "DeletePolicy":{
232
- "name":"DeletePolicy",
233
- "http":{
234
- "method":"POST",
235
- "requestUri":"/"
236
- },
237
- "input":{"shape":"DeletePolicyRequest"},
238
- "errors":[
239
- {"shape":"AccessDeniedException"},
240
- {"shape":"AWSOrganizationsNotInUseException"},
241
- {"shape":"ConcurrentModificationException"},
242
- {"shape":"InvalidInputException"},
243
- {"shape":"PolicyInUseException"},
244
- {"shape":"PolicyNotFoundException"},
245
- {"shape":"ServiceException"},
246
- {"shape":"TooManyRequestsException"}
247
- ]
248
- },
249
- "DescribeAccount":{
250
- "name":"DescribeAccount",
251
- "http":{
252
- "method":"POST",
253
- "requestUri":"/"
254
- },
255
- "input":{"shape":"DescribeAccountRequest"},
256
- "output":{"shape":"DescribeAccountResponse"},
257
- "errors":[
258
- {"shape":"AccessDeniedException"},
259
- {"shape":"AccountNotFoundException"},
260
- {"shape":"AWSOrganizationsNotInUseException"},
261
- {"shape":"InvalidInputException"},
262
- {"shape":"ServiceException"},
263
- {"shape":"TooManyRequestsException"}
264
- ]
265
- },
266
- "DescribeCreateAccountStatus":{
267
- "name":"DescribeCreateAccountStatus",
268
- "http":{
269
- "method":"POST",
270
- "requestUri":"/"
271
- },
272
- "input":{"shape":"DescribeCreateAccountStatusRequest"},
273
- "output":{"shape":"DescribeCreateAccountStatusResponse"},
274
- "errors":[
275
- {"shape":"AccessDeniedException"},
276
- {"shape":"AWSOrganizationsNotInUseException"},
277
- {"shape":"CreateAccountStatusNotFoundException"},
278
- {"shape":"InvalidInputException"},
279
- {"shape":"ServiceException"},
280
- {"shape":"TooManyRequestsException"},
281
- {"shape":"UnsupportedAPIEndpointException"}
282
- ]
283
- },
284
- "DescribeHandshake":{
285
- "name":"DescribeHandshake",
286
- "http":{
287
- "method":"POST",
288
- "requestUri":"/"
289
- },
290
- "input":{"shape":"DescribeHandshakeRequest"},
291
- "output":{"shape":"DescribeHandshakeResponse"},
292
- "errors":[
293
- {"shape":"AccessDeniedException"},
294
- {"shape":"ConcurrentModificationException"},
295
- {"shape":"HandshakeNotFoundException"},
296
- {"shape":"InvalidInputException"},
297
- {"shape":"ServiceException"},
298
- {"shape":"TooManyRequestsException"}
299
- ]
300
- },
301
- "DescribeOrganization":{
302
- "name":"DescribeOrganization",
303
- "http":{
304
- "method":"POST",
305
- "requestUri":"/"
306
- },
307
- "output":{"shape":"DescribeOrganizationResponse"},
308
- "errors":[
309
- {"shape":"AccessDeniedException"},
310
- {"shape":"AWSOrganizationsNotInUseException"},
311
- {"shape":"ConcurrentModificationException"},
312
- {"shape":"ServiceException"},
313
- {"shape":"TooManyRequestsException"}
314
- ]
315
- },
316
- "DescribeOrganizationalUnit":{
317
- "name":"DescribeOrganizationalUnit",
318
- "http":{
319
- "method":"POST",
320
- "requestUri":"/"
321
- },
322
- "input":{"shape":"DescribeOrganizationalUnitRequest"},
323
- "output":{"shape":"DescribeOrganizationalUnitResponse"},
324
- "errors":[
325
- {"shape":"AccessDeniedException"},
326
- {"shape":"AWSOrganizationsNotInUseException"},
327
- {"shape":"InvalidInputException"},
328
- {"shape":"OrganizationalUnitNotFoundException"},
329
- {"shape":"ServiceException"},
330
- {"shape":"TooManyRequestsException"}
331
- ]
332
- },
333
- "DescribePolicy":{
334
- "name":"DescribePolicy",
335
- "http":{
336
- "method":"POST",
337
- "requestUri":"/"
338
- },
339
- "input":{"shape":"DescribePolicyRequest"},
340
- "output":{"shape":"DescribePolicyResponse"},
341
- "errors":[
342
- {"shape":"AccessDeniedException"},
343
- {"shape":"AWSOrganizationsNotInUseException"},
344
- {"shape":"InvalidInputException"},
345
- {"shape":"PolicyNotFoundException"},
346
- {"shape":"ServiceException"},
347
- {"shape":"TooManyRequestsException"}
348
- ]
349
- },
350
- "DetachPolicy":{
351
- "name":"DetachPolicy",
352
- "http":{
353
- "method":"POST",
354
- "requestUri":"/"
355
- },
356
- "input":{"shape":"DetachPolicyRequest"},
357
- "errors":[
358
- {"shape":"AccessDeniedException"},
359
- {"shape":"AWSOrganizationsNotInUseException"},
360
- {"shape":"ConcurrentModificationException"},
361
- {"shape":"ConstraintViolationException"},
362
- {"shape":"InvalidInputException"},
363
- {"shape":"PolicyNotAttachedException"},
364
- {"shape":"PolicyNotFoundException"},
365
- {"shape":"ServiceException"},
366
- {"shape":"TargetNotFoundException"},
367
- {"shape":"TooManyRequestsException"}
368
- ]
369
- },
370
- "DisableAWSServiceAccess":{
371
- "name":"DisableAWSServiceAccess",
372
- "http":{
373
- "method":"POST",
374
- "requestUri":"/"
375
- },
376
- "input":{"shape":"DisableAWSServiceAccessRequest"},
377
- "errors":[
378
- {"shape":"AccessDeniedException"},
379
- {"shape":"AWSOrganizationsNotInUseException"},
380
- {"shape":"ConcurrentModificationException"},
381
- {"shape":"ConstraintViolationException"},
382
- {"shape":"InvalidInputException"},
383
- {"shape":"ServiceException"},
384
- {"shape":"TooManyRequestsException"}
385
- ]
386
- },
387
- "DisablePolicyType":{
388
- "name":"DisablePolicyType",
389
- "http":{
390
- "method":"POST",
391
- "requestUri":"/"
392
- },
393
- "input":{"shape":"DisablePolicyTypeRequest"},
394
- "output":{"shape":"DisablePolicyTypeResponse"},
395
- "errors":[
396
- {"shape":"AccessDeniedException"},
397
- {"shape":"AWSOrganizationsNotInUseException"},
398
- {"shape":"ConcurrentModificationException"},
399
- {"shape":"ConstraintViolationException"},
400
- {"shape":"InvalidInputException"},
401
- {"shape":"PolicyTypeNotEnabledException"},
402
- {"shape":"RootNotFoundException"},
403
- {"shape":"ServiceException"},
404
- {"shape":"TooManyRequestsException"}
405
- ]
406
- },
407
- "EnableAWSServiceAccess":{
408
- "name":"EnableAWSServiceAccess",
409
- "http":{
410
- "method":"POST",
411
- "requestUri":"/"
412
- },
413
- "input":{"shape":"EnableAWSServiceAccessRequest"},
414
- "errors":[
415
- {"shape":"AccessDeniedException"},
416
- {"shape":"AWSOrganizationsNotInUseException"},
417
- {"shape":"ConcurrentModificationException"},
418
- {"shape":"ConstraintViolationException"},
419
- {"shape":"InvalidInputException"},
420
- {"shape":"ServiceException"},
421
- {"shape":"TooManyRequestsException"}
422
- ]
423
- },
424
- "EnableAllFeatures":{
425
- "name":"EnableAllFeatures",
426
- "http":{
427
- "method":"POST",
428
- "requestUri":"/"
429
- },
430
- "input":{"shape":"EnableAllFeaturesRequest"},
431
- "output":{"shape":"EnableAllFeaturesResponse"},
432
- "errors":[
433
- {"shape":"AccessDeniedException"},
434
- {"shape":"AWSOrganizationsNotInUseException"},
435
- {"shape":"ConcurrentModificationException"},
436
- {"shape":"HandshakeConstraintViolationException"},
437
- {"shape":"InvalidInputException"},
438
- {"shape":"ServiceException"},
439
- {"shape":"TooManyRequestsException"}
440
- ]
441
- },
442
- "EnablePolicyType":{
443
- "name":"EnablePolicyType",
444
- "http":{
445
- "method":"POST",
446
- "requestUri":"/"
447
- },
448
- "input":{"shape":"EnablePolicyTypeRequest"},
449
- "output":{"shape":"EnablePolicyTypeResponse"},
450
- "errors":[
451
- {"shape":"AccessDeniedException"},
452
- {"shape":"AWSOrganizationsNotInUseException"},
453
- {"shape":"ConcurrentModificationException"},
454
- {"shape":"ConstraintViolationException"},
455
- {"shape":"InvalidInputException"},
456
- {"shape":"PolicyTypeAlreadyEnabledException"},
457
- {"shape":"RootNotFoundException"},
458
- {"shape":"ServiceException"},
459
- {"shape":"TooManyRequestsException"},
460
- {"shape":"PolicyTypeNotAvailableForOrganizationException"}
461
- ]
462
- },
463
- "InviteAccountToOrganization":{
464
- "name":"InviteAccountToOrganization",
465
- "http":{
466
- "method":"POST",
467
- "requestUri":"/"
468
- },
469
- "input":{"shape":"InviteAccountToOrganizationRequest"},
470
- "output":{"shape":"InviteAccountToOrganizationResponse"},
471
- "errors":[
472
- {"shape":"AccessDeniedException"},
473
- {"shape":"AWSOrganizationsNotInUseException"},
474
- {"shape":"AccountOwnerNotVerifiedException"},
475
- {"shape":"ConcurrentModificationException"},
476
- {"shape":"HandshakeConstraintViolationException"},
477
- {"shape":"DuplicateHandshakeException"},
478
- {"shape":"InvalidInputException"},
479
- {"shape":"FinalizingOrganizationException"},
480
- {"shape":"ServiceException"},
481
- {"shape":"TooManyRequestsException"}
482
- ]
483
- },
484
- "LeaveOrganization":{
485
- "name":"LeaveOrganization",
486
- "http":{
487
- "method":"POST",
488
- "requestUri":"/"
489
- },
490
- "errors":[
491
- {"shape":"AccessDeniedException"},
492
- {"shape":"AccountNotFoundException"},
493
- {"shape":"AWSOrganizationsNotInUseException"},
494
- {"shape":"ConcurrentModificationException"},
495
- {"shape":"ConstraintViolationException"},
496
- {"shape":"InvalidInputException"},
497
- {"shape":"MasterCannotLeaveOrganizationException"},
498
- {"shape":"ServiceException"},
499
- {"shape":"TooManyRequestsException"}
500
- ]
501
- },
502
- "ListAWSServiceAccessForOrganization":{
503
- "name":"ListAWSServiceAccessForOrganization",
504
- "http":{
505
- "method":"POST",
506
- "requestUri":"/"
507
- },
508
- "input":{"shape":"ListAWSServiceAccessForOrganizationRequest"},
509
- "output":{"shape":"ListAWSServiceAccessForOrganizationResponse"},
510
- "errors":[
511
- {"shape":"AccessDeniedException"},
512
- {"shape":"AWSOrganizationsNotInUseException"},
513
- {"shape":"ConstraintViolationException"},
514
- {"shape":"InvalidInputException"},
515
- {"shape":"ServiceException"},
516
- {"shape":"TooManyRequestsException"}
517
- ]
518
- },
519
- "ListAccounts":{
520
- "name":"ListAccounts",
521
- "http":{
522
- "method":"POST",
523
- "requestUri":"/"
524
- },
525
- "input":{"shape":"ListAccountsRequest"},
526
- "output":{"shape":"ListAccountsResponse"},
527
- "errors":[
528
- {"shape":"AccessDeniedException"},
529
- {"shape":"AWSOrganizationsNotInUseException"},
530
- {"shape":"InvalidInputException"},
531
- {"shape":"ServiceException"},
532
- {"shape":"TooManyRequestsException"}
533
- ]
534
- },
535
- "ListAccountsForParent":{
536
- "name":"ListAccountsForParent",
537
- "http":{
538
- "method":"POST",
539
- "requestUri":"/"
540
- },
541
- "input":{"shape":"ListAccountsForParentRequest"},
542
- "output":{"shape":"ListAccountsForParentResponse"},
543
- "errors":[
544
- {"shape":"AccessDeniedException"},
545
- {"shape":"AWSOrganizationsNotInUseException"},
546
- {"shape":"InvalidInputException"},
547
- {"shape":"ParentNotFoundException"},
548
- {"shape":"ServiceException"},
549
- {"shape":"TooManyRequestsException"}
550
- ]
551
- },
552
- "ListChildren":{
553
- "name":"ListChildren",
554
- "http":{
555
- "method":"POST",
556
- "requestUri":"/"
557
- },
558
- "input":{"shape":"ListChildrenRequest"},
559
- "output":{"shape":"ListChildrenResponse"},
560
- "errors":[
561
- {"shape":"AccessDeniedException"},
562
- {"shape":"AWSOrganizationsNotInUseException"},
563
- {"shape":"InvalidInputException"},
564
- {"shape":"ParentNotFoundException"},
565
- {"shape":"ServiceException"},
566
- {"shape":"TooManyRequestsException"}
567
- ]
568
- },
569
- "ListCreateAccountStatus":{
570
- "name":"ListCreateAccountStatus",
571
- "http":{
572
- "method":"POST",
573
- "requestUri":"/"
574
- },
575
- "input":{"shape":"ListCreateAccountStatusRequest"},
576
- "output":{"shape":"ListCreateAccountStatusResponse"},
577
- "errors":[
578
- {"shape":"AccessDeniedException"},
579
- {"shape":"AWSOrganizationsNotInUseException"},
580
- {"shape":"InvalidInputException"},
581
- {"shape":"ServiceException"},
582
- {"shape":"TooManyRequestsException"},
583
- {"shape":"UnsupportedAPIEndpointException"}
584
- ]
585
- },
586
- "ListHandshakesForAccount":{
587
- "name":"ListHandshakesForAccount",
588
- "http":{
589
- "method":"POST",
590
- "requestUri":"/"
591
- },
592
- "input":{"shape":"ListHandshakesForAccountRequest"},
593
- "output":{"shape":"ListHandshakesForAccountResponse"},
594
- "errors":[
595
- {"shape":"AccessDeniedException"},
596
- {"shape":"ConcurrentModificationException"},
597
- {"shape":"InvalidInputException"},
598
- {"shape":"ServiceException"},
599
- {"shape":"TooManyRequestsException"}
600
- ]
601
- },
602
- "ListHandshakesForOrganization":{
603
- "name":"ListHandshakesForOrganization",
604
- "http":{
605
- "method":"POST",
606
- "requestUri":"/"
607
- },
608
- "input":{"shape":"ListHandshakesForOrganizationRequest"},
609
- "output":{"shape":"ListHandshakesForOrganizationResponse"},
610
- "errors":[
611
- {"shape":"AccessDeniedException"},
612
- {"shape":"AWSOrganizationsNotInUseException"},
613
- {"shape":"ConcurrentModificationException"},
614
- {"shape":"InvalidInputException"},
615
- {"shape":"ServiceException"},
616
- {"shape":"TooManyRequestsException"}
617
- ]
618
- },
619
- "ListOrganizationalUnitsForParent":{
620
- "name":"ListOrganizationalUnitsForParent",
621
- "http":{
622
- "method":"POST",
623
- "requestUri":"/"
624
- },
625
- "input":{"shape":"ListOrganizationalUnitsForParentRequest"},
626
- "output":{"shape":"ListOrganizationalUnitsForParentResponse"},
627
- "errors":[
628
- {"shape":"AccessDeniedException"},
629
- {"shape":"AWSOrganizationsNotInUseException"},
630
- {"shape":"InvalidInputException"},
631
- {"shape":"ParentNotFoundException"},
632
- {"shape":"ServiceException"},
633
- {"shape":"TooManyRequestsException"}
634
- ]
635
- },
636
- "ListParents":{
637
- "name":"ListParents",
638
- "http":{
639
- "method":"POST",
640
- "requestUri":"/"
641
- },
642
- "input":{"shape":"ListParentsRequest"},
643
- "output":{"shape":"ListParentsResponse"},
644
- "errors":[
645
- {"shape":"AccessDeniedException"},
646
- {"shape":"AWSOrganizationsNotInUseException"},
647
- {"shape":"ChildNotFoundException"},
648
- {"shape":"InvalidInputException"},
649
- {"shape":"ServiceException"},
650
- {"shape":"TooManyRequestsException"}
651
- ]
652
- },
653
- "ListPolicies":{
654
- "name":"ListPolicies",
655
- "http":{
656
- "method":"POST",
657
- "requestUri":"/"
658
- },
659
- "input":{"shape":"ListPoliciesRequest"},
660
- "output":{"shape":"ListPoliciesResponse"},
661
- "errors":[
662
- {"shape":"AccessDeniedException"},
663
- {"shape":"AWSOrganizationsNotInUseException"},
664
- {"shape":"InvalidInputException"},
665
- {"shape":"ServiceException"},
666
- {"shape":"TooManyRequestsException"}
667
- ]
668
- },
669
- "ListPoliciesForTarget":{
670
- "name":"ListPoliciesForTarget",
671
- "http":{
672
- "method":"POST",
673
- "requestUri":"/"
674
- },
675
- "input":{"shape":"ListPoliciesForTargetRequest"},
676
- "output":{"shape":"ListPoliciesForTargetResponse"},
677
- "errors":[
678
- {"shape":"AccessDeniedException"},
679
- {"shape":"AWSOrganizationsNotInUseException"},
680
- {"shape":"InvalidInputException"},
681
- {"shape":"ServiceException"},
682
- {"shape":"TargetNotFoundException"},
683
- {"shape":"TooManyRequestsException"}
684
- ]
685
- },
686
- "ListRoots":{
687
- "name":"ListRoots",
688
- "http":{
689
- "method":"POST",
690
- "requestUri":"/"
691
- },
692
- "input":{"shape":"ListRootsRequest"},
693
- "output":{"shape":"ListRootsResponse"},
694
- "errors":[
695
- {"shape":"AccessDeniedException"},
696
- {"shape":"AWSOrganizationsNotInUseException"},
697
- {"shape":"InvalidInputException"},
698
- {"shape":"ServiceException"},
699
- {"shape":"TooManyRequestsException"}
700
- ]
701
- },
702
- "ListTagsForResource":{
703
- "name":"ListTagsForResource",
704
- "http":{
705
- "method":"POST",
706
- "requestUri":"/"
707
- },
708
- "input":{"shape":"ListTagsForResourceRequest"},
709
- "output":{"shape":"ListTagsForResourceResponse"},
710
- "errors":[
711
- {"shape":"AccessDeniedException"},
712
- {"shape":"AWSOrganizationsNotInUseException"},
713
- {"shape":"TargetNotFoundException"},
714
- {"shape":"InvalidInputException"},
715
- {"shape":"ServiceException"},
716
- {"shape":"TooManyRequestsException"}
717
- ]
718
- },
719
- "ListTargetsForPolicy":{
720
- "name":"ListTargetsForPolicy",
721
- "http":{
722
- "method":"POST",
723
- "requestUri":"/"
724
- },
725
- "input":{"shape":"ListTargetsForPolicyRequest"},
726
- "output":{"shape":"ListTargetsForPolicyResponse"},
727
- "errors":[
728
- {"shape":"AccessDeniedException"},
729
- {"shape":"AWSOrganizationsNotInUseException"},
730
- {"shape":"InvalidInputException"},
731
- {"shape":"PolicyNotFoundException"},
732
- {"shape":"ServiceException"},
733
- {"shape":"TooManyRequestsException"}
734
- ]
735
- },
736
- "MoveAccount":{
737
- "name":"MoveAccount",
738
- "http":{
739
- "method":"POST",
740
- "requestUri":"/"
741
- },
742
- "input":{"shape":"MoveAccountRequest"},
743
- "errors":[
744
- {"shape":"AccessDeniedException"},
745
- {"shape":"InvalidInputException"},
746
- {"shape":"SourceParentNotFoundException"},
747
- {"shape":"DestinationParentNotFoundException"},
748
- {"shape":"DuplicateAccountException"},
749
- {"shape":"AccountNotFoundException"},
750
- {"shape":"TooManyRequestsException"},
751
- {"shape":"ConcurrentModificationException"},
752
- {"shape":"AWSOrganizationsNotInUseException"},
753
- {"shape":"ServiceException"}
754
- ]
755
- },
756
- "RemoveAccountFromOrganization":{
757
- "name":"RemoveAccountFromOrganization",
758
- "http":{
759
- "method":"POST",
760
- "requestUri":"/"
761
- },
762
- "input":{"shape":"RemoveAccountFromOrganizationRequest"},
763
- "errors":[
764
- {"shape":"AccessDeniedException"},
765
- {"shape":"AccountNotFoundException"},
766
- {"shape":"AWSOrganizationsNotInUseException"},
767
- {"shape":"ConcurrentModificationException"},
768
- {"shape":"ConstraintViolationException"},
769
- {"shape":"InvalidInputException"},
770
- {"shape":"MasterCannotLeaveOrganizationException"},
771
- {"shape":"ServiceException"},
772
- {"shape":"TooManyRequestsException"}
773
- ]
774
- },
775
- "TagResource":{
776
- "name":"TagResource",
777
- "http":{
778
- "method":"POST",
779
- "requestUri":"/"
780
- },
781
- "input":{"shape":"TagResourceRequest"},
782
- "errors":[
783
- {"shape":"AccessDeniedException"},
784
- {"shape":"ConcurrentModificationException"},
785
- {"shape":"AWSOrganizationsNotInUseException"},
786
- {"shape":"TargetNotFoundException"},
787
- {"shape":"ConstraintViolationException"},
788
- {"shape":"InvalidInputException"},
789
- {"shape":"ServiceException"},
790
- {"shape":"TooManyRequestsException"}
791
- ]
792
- },
793
- "UntagResource":{
794
- "name":"UntagResource",
795
- "http":{
796
- "method":"POST",
797
- "requestUri":"/"
798
- },
799
- "input":{"shape":"UntagResourceRequest"},
800
- "errors":[
801
- {"shape":"AccessDeniedException"},
802
- {"shape":"ConcurrentModificationException"},
803
- {"shape":"AWSOrganizationsNotInUseException"},
804
- {"shape":"TargetNotFoundException"},
805
- {"shape":"ConstraintViolationException"},
806
- {"shape":"InvalidInputException"},
807
- {"shape":"ServiceException"},
808
- {"shape":"TooManyRequestsException"}
809
- ]
810
- },
811
- "UpdateOrganizationalUnit":{
812
- "name":"UpdateOrganizationalUnit",
813
- "http":{
814
- "method":"POST",
815
- "requestUri":"/"
816
- },
817
- "input":{"shape":"UpdateOrganizationalUnitRequest"},
818
- "output":{"shape":"UpdateOrganizationalUnitResponse"},
819
- "errors":[
820
- {"shape":"AccessDeniedException"},
821
- {"shape":"AWSOrganizationsNotInUseException"},
822
- {"shape":"ConcurrentModificationException"},
823
- {"shape":"DuplicateOrganizationalUnitException"},
824
- {"shape":"InvalidInputException"},
825
- {"shape":"OrganizationalUnitNotFoundException"},
826
- {"shape":"ServiceException"},
827
- {"shape":"TooManyRequestsException"}
828
- ]
829
- },
830
- "UpdatePolicy":{
831
- "name":"UpdatePolicy",
832
- "http":{
833
- "method":"POST",
834
- "requestUri":"/"
835
- },
836
- "input":{"shape":"UpdatePolicyRequest"},
837
- "output":{"shape":"UpdatePolicyResponse"},
838
- "errors":[
839
- {"shape":"AccessDeniedException"},
840
- {"shape":"AWSOrganizationsNotInUseException"},
841
- {"shape":"ConcurrentModificationException"},
842
- {"shape":"ConstraintViolationException"},
843
- {"shape":"DuplicatePolicyException"},
844
- {"shape":"InvalidInputException"},
845
- {"shape":"MalformedPolicyDocumentException"},
846
- {"shape":"PolicyNotFoundException"},
847
- {"shape":"ServiceException"},
848
- {"shape":"TooManyRequestsException"}
849
- ]
850
- }
851
- },
852
- "shapes":{
853
- "AWSOrganizationsNotInUseException":{
854
- "type":"structure",
855
- "members":{
856
- "Message":{"shape":"ExceptionMessage"}
857
- },
858
- "exception":true
859
- },
860
- "AcceptHandshakeRequest":{
861
- "type":"structure",
862
- "required":["HandshakeId"],
863
- "members":{
864
- "HandshakeId":{"shape":"HandshakeId"}
865
- }
866
- },
867
- "AcceptHandshakeResponse":{
868
- "type":"structure",
869
- "members":{
870
- "Handshake":{"shape":"Handshake"}
871
- }
872
- },
873
- "AccessDeniedException":{
874
- "type":"structure",
875
- "members":{
876
- "Message":{"shape":"ExceptionMessage"}
877
- },
878
- "exception":true
879
- },
880
- "AccessDeniedForDependencyException":{
881
- "type":"structure",
882
- "members":{
883
- "Message":{"shape":"ExceptionMessage"},
884
- "Reason":{"shape":"AccessDeniedForDependencyExceptionReason"}
885
- },
886
- "exception":true
887
- },
888
- "AccessDeniedForDependencyExceptionReason":{
889
- "type":"string",
890
- "enum":["ACCESS_DENIED_DURING_CREATE_SERVICE_LINKED_ROLE"]
891
- },
892
- "Account":{
893
- "type":"structure",
894
- "members":{
895
- "Id":{"shape":"AccountId"},
896
- "Arn":{"shape":"AccountArn"},
897
- "Email":{"shape":"Email"},
898
- "Name":{"shape":"AccountName"},
899
- "Status":{"shape":"AccountStatus"},
900
- "JoinedMethod":{"shape":"AccountJoinedMethod"},
901
- "JoinedTimestamp":{"shape":"Timestamp"}
902
- }
903
- },
904
- "AccountArn":{
905
- "type":"string",
906
- "pattern":"^arn:aws:organizations::\\d{12}:account\\/o-[a-z0-9]{10,32}\\/\\d{12}"
907
- },
908
- "AccountId":{
909
- "type":"string",
910
- "pattern":"^\\d{12}$"
911
- },
912
- "AccountJoinedMethod":{
913
- "type":"string",
914
- "enum":[
915
- "INVITED",
916
- "CREATED"
917
- ]
918
- },
919
- "AccountName":{
920
- "type":"string",
921
- "max":50,
922
- "min":1,
923
- "pattern":"[\\u0020-\\u007E]+",
924
- "sensitive":true
925
- },
926
- "AccountNotFoundException":{
927
- "type":"structure",
928
- "members":{
929
- "Message":{"shape":"ExceptionMessage"}
930
- },
931
- "exception":true
932
- },
933
- "AccountOwnerNotVerifiedException":{
934
- "type":"structure",
935
- "members":{
936
- "Message":{"shape":"ExceptionMessage"}
937
- },
938
- "exception":true
939
- },
940
- "AccountStatus":{
941
- "type":"string",
942
- "enum":[
943
- "ACTIVE",
944
- "SUSPENDED"
945
- ]
946
- },
947
- "Accounts":{
948
- "type":"list",
949
- "member":{"shape":"Account"}
950
- },
951
- "ActionType":{
952
- "type":"string",
953
- "enum":[
954
- "INVITE",
955
- "ENABLE_ALL_FEATURES",
956
- "APPROVE_ALL_FEATURES",
957
- "ADD_ORGANIZATIONS_SERVICE_LINKED_ROLE"
958
- ]
959
- },
960
- "AlreadyInOrganizationException":{
961
- "type":"structure",
962
- "members":{
963
- "Message":{"shape":"ExceptionMessage"}
964
- },
965
- "exception":true
966
- },
967
- "AttachPolicyRequest":{
968
- "type":"structure",
969
- "required":[
970
- "PolicyId",
971
- "TargetId"
972
- ],
973
- "members":{
974
- "PolicyId":{"shape":"PolicyId"},
975
- "TargetId":{"shape":"PolicyTargetId"}
976
- }
977
- },
978
- "AwsManagedPolicy":{"type":"boolean"},
979
- "CancelHandshakeRequest":{
980
- "type":"structure",
981
- "required":["HandshakeId"],
982
- "members":{
983
- "HandshakeId":{"shape":"HandshakeId"}
984
- }
985
- },
986
- "CancelHandshakeResponse":{
987
- "type":"structure",
988
- "members":{
989
- "Handshake":{"shape":"Handshake"}
990
- }
991
- },
992
- "Child":{
993
- "type":"structure",
994
- "members":{
995
- "Id":{"shape":"ChildId"},
996
- "Type":{"shape":"ChildType"}
997
- }
998
- },
999
- "ChildId":{
1000
- "type":"string",
1001
- "pattern":"^(\\d{12})|(ou-[0-9a-z]{4,32}-[a-z0-9]{8,32})$"
1002
- },
1003
- "ChildNotFoundException":{
1004
- "type":"structure",
1005
- "members":{
1006
- "Message":{"shape":"ExceptionMessage"}
1007
- },
1008
- "exception":true
1009
- },
1010
- "ChildType":{
1011
- "type":"string",
1012
- "enum":[
1013
- "ACCOUNT",
1014
- "ORGANIZATIONAL_UNIT"
1015
- ]
1016
- },
1017
- "Children":{
1018
- "type":"list",
1019
- "member":{"shape":"Child"}
1020
- },
1021
- "ConcurrentModificationException":{
1022
- "type":"structure",
1023
- "members":{
1024
- "Message":{"shape":"ExceptionMessage"}
1025
- },
1026
- "exception":true
1027
- },
1028
- "ConstraintViolationException":{
1029
- "type":"structure",
1030
- "members":{
1031
- "Message":{"shape":"ExceptionMessage"},
1032
- "Reason":{"shape":"ConstraintViolationExceptionReason"}
1033
- },
1034
- "exception":true
1035
- },
1036
- "ConstraintViolationExceptionReason":{
1037
- "type":"string",
1038
- "enum":[
1039
- "ACCOUNT_NUMBER_LIMIT_EXCEEDED",
1040
- "HANDSHAKE_RATE_LIMIT_EXCEEDED",
1041
- "OU_NUMBER_LIMIT_EXCEEDED",
1042
- "OU_DEPTH_LIMIT_EXCEEDED",
1043
- "POLICY_NUMBER_LIMIT_EXCEEDED",
1044
- "MAX_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED",
1045
- "MIN_POLICY_TYPE_ATTACHMENT_LIMIT_EXCEEDED",
1046
- "ACCOUNT_CANNOT_LEAVE_ORGANIZATION",
1047
- "ACCOUNT_CANNOT_LEAVE_WITHOUT_EULA",
1048
- "ACCOUNT_CANNOT_LEAVE_WITHOUT_PHONE_VERIFICATION",
1049
- "MASTER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED",
1050
- "MEMBER_ACCOUNT_PAYMENT_INSTRUMENT_REQUIRED",
1051
- "ACCOUNT_CREATION_RATE_LIMIT_EXCEEDED",
1052
- "MASTER_ACCOUNT_ADDRESS_DOES_NOT_MATCH_MARKETPLACE",
1053
- "MASTER_ACCOUNT_MISSING_CONTACT_INFO",
1054
- "MASTER_ACCOUNT_NOT_GOVCLOUD_ENABLED",
1055
- "ORGANIZATION_NOT_IN_ALL_FEATURES_MODE",
1056
- "CREATE_ORGANIZATION_IN_BILLING_MODE_UNSUPPORTED_REGION",
1057
- "EMAIL_VERIFICATION_CODE_EXPIRED",
1058
- "WAIT_PERIOD_ACTIVE",
1059
- "MAX_TAG_LIMIT_EXCEEDED",
1060
- "TAG_POLICY_VIOLATION"
1061
- ]
1062
- },
1063
- "CreateAccountFailureReason":{
1064
- "type":"string",
1065
- "enum":[
1066
- "ACCOUNT_LIMIT_EXCEEDED",
1067
- "EMAIL_ALREADY_EXISTS",
1068
- "INVALID_ADDRESS",
1069
- "INVALID_EMAIL",
1070
- "CONCURRENT_ACCOUNT_MODIFICATION",
1071
- "INTERNAL_FAILURE"
1072
- ]
1073
- },
1074
- "CreateAccountRequest":{
1075
- "type":"structure",
1076
- "required":[
1077
- "Email",
1078
- "AccountName"
1079
- ],
1080
- "members":{
1081
- "Email":{"shape":"Email"},
1082
- "AccountName":{"shape":"AccountName"},
1083
- "RoleName":{"shape":"RoleName"},
1084
- "IamUserAccessToBilling":{"shape":"IAMUserAccessToBilling"}
1085
- }
1086
- },
1087
- "CreateAccountRequestId":{
1088
- "type":"string",
1089
- "pattern":"^car-[a-z0-9]{8,32}$"
1090
- },
1091
- "CreateAccountResponse":{
1092
- "type":"structure",
1093
- "members":{
1094
- "CreateAccountStatus":{"shape":"CreateAccountStatus"}
1095
- }
1096
- },
1097
- "CreateAccountState":{
1098
- "type":"string",
1099
- "enum":[
1100
- "IN_PROGRESS",
1101
- "SUCCEEDED",
1102
- "FAILED"
1103
- ]
1104
- },
1105
- "CreateAccountStates":{
1106
- "type":"list",
1107
- "member":{"shape":"CreateAccountState"}
1108
- },
1109
- "CreateAccountStatus":{
1110
- "type":"structure",
1111
- "members":{
1112
- "Id":{"shape":"CreateAccountRequestId"},
1113
- "AccountName":{"shape":"AccountName"},
1114
- "State":{"shape":"CreateAccountState"},
1115
- "RequestedTimestamp":{"shape":"Timestamp"},
1116
- "CompletedTimestamp":{"shape":"Timestamp"},
1117
- "AccountId":{"shape":"AccountId"},
1118
- "GovCloudAccountId":{"shape":"AccountId"},
1119
- "FailureReason":{"shape":"CreateAccountFailureReason"}
1120
- }
1121
- },
1122
- "CreateAccountStatusNotFoundException":{
1123
- "type":"structure",
1124
- "members":{
1125
- "Message":{"shape":"ExceptionMessage"}
1126
- },
1127
- "exception":true
1128
- },
1129
- "CreateAccountStatuses":{
1130
- "type":"list",
1131
- "member":{"shape":"CreateAccountStatus"}
1132
- },
1133
- "CreateGovCloudAccountRequest":{
1134
- "type":"structure",
1135
- "required":[
1136
- "Email",
1137
- "AccountName"
1138
- ],
1139
- "members":{
1140
- "Email":{"shape":"Email"},
1141
- "AccountName":{"shape":"AccountName"},
1142
- "RoleName":{"shape":"RoleName"},
1143
- "IamUserAccessToBilling":{"shape":"IAMUserAccessToBilling"}
1144
- }
1145
- },
1146
- "CreateGovCloudAccountResponse":{
1147
- "type":"structure",
1148
- "members":{
1149
- "CreateAccountStatus":{"shape":"CreateAccountStatus"}
1150
- }
1151
- },
1152
- "CreateOrganizationRequest":{
1153
- "type":"structure",
1154
- "members":{
1155
- "FeatureSet":{"shape":"OrganizationFeatureSet"}
1156
- }
1157
- },
1158
- "CreateOrganizationResponse":{
1159
- "type":"structure",
1160
- "members":{
1161
- "Organization":{"shape":"Organization"}
1162
- }
1163
- },
1164
- "CreateOrganizationalUnitRequest":{
1165
- "type":"structure",
1166
- "required":[
1167
- "ParentId",
1168
- "Name"
1169
- ],
1170
- "members":{
1171
- "ParentId":{"shape":"ParentId"},
1172
- "Name":{"shape":"OrganizationalUnitName"}
1173
- }
1174
- },
1175
- "CreateOrganizationalUnitResponse":{
1176
- "type":"structure",
1177
- "members":{
1178
- "OrganizationalUnit":{"shape":"OrganizationalUnit"}
1179
- }
1180
- },
1181
- "CreatePolicyRequest":{
1182
- "type":"structure",
1183
- "required":[
1184
- "Content",
1185
- "Description",
1186
- "Name",
1187
- "Type"
1188
- ],
1189
- "members":{
1190
- "Content":{"shape":"PolicyContent"},
1191
- "Description":{"shape":"PolicyDescription"},
1192
- "Name":{"shape":"PolicyName"},
1193
- "Type":{"shape":"PolicyType"}
1194
- }
1195
- },
1196
- "CreatePolicyResponse":{
1197
- "type":"structure",
1198
- "members":{
1199
- "Policy":{"shape":"Policy"}
1200
- }
1201
- },
1202
- "DeclineHandshakeRequest":{
1203
- "type":"structure",
1204
- "required":["HandshakeId"],
1205
- "members":{
1206
- "HandshakeId":{"shape":"HandshakeId"}
1207
- }
1208
- },
1209
- "DeclineHandshakeResponse":{
1210
- "type":"structure",
1211
- "members":{
1212
- "Handshake":{"shape":"Handshake"}
1213
- }
1214
- },
1215
- "DeleteOrganizationalUnitRequest":{
1216
- "type":"structure",
1217
- "required":["OrganizationalUnitId"],
1218
- "members":{
1219
- "OrganizationalUnitId":{"shape":"OrganizationalUnitId"}
1220
- }
1221
- },
1222
- "DeletePolicyRequest":{
1223
- "type":"structure",
1224
- "required":["PolicyId"],
1225
- "members":{
1226
- "PolicyId":{"shape":"PolicyId"}
1227
- }
1228
- },
1229
- "DescribeAccountRequest":{
1230
- "type":"structure",
1231
- "required":["AccountId"],
1232
- "members":{
1233
- "AccountId":{"shape":"AccountId"}
1234
- }
1235
- },
1236
- "DescribeAccountResponse":{
1237
- "type":"structure",
1238
- "members":{
1239
- "Account":{"shape":"Account"}
1240
- }
1241
- },
1242
- "DescribeCreateAccountStatusRequest":{
1243
- "type":"structure",
1244
- "required":["CreateAccountRequestId"],
1245
- "members":{
1246
- "CreateAccountRequestId":{"shape":"CreateAccountRequestId"}
1247
- }
1248
- },
1249
- "DescribeCreateAccountStatusResponse":{
1250
- "type":"structure",
1251
- "members":{
1252
- "CreateAccountStatus":{"shape":"CreateAccountStatus"}
1253
- }
1254
- },
1255
- "DescribeHandshakeRequest":{
1256
- "type":"structure",
1257
- "required":["HandshakeId"],
1258
- "members":{
1259
- "HandshakeId":{"shape":"HandshakeId"}
1260
- }
1261
- },
1262
- "DescribeHandshakeResponse":{
1263
- "type":"structure",
1264
- "members":{
1265
- "Handshake":{"shape":"Handshake"}
1266
- }
1267
- },
1268
- "DescribeOrganizationResponse":{
1269
- "type":"structure",
1270
- "members":{
1271
- "Organization":{"shape":"Organization"}
1272
- }
1273
- },
1274
- "DescribeOrganizationalUnitRequest":{
1275
- "type":"structure",
1276
- "required":["OrganizationalUnitId"],
1277
- "members":{
1278
- "OrganizationalUnitId":{"shape":"OrganizationalUnitId"}
1279
- }
1280
- },
1281
- "DescribeOrganizationalUnitResponse":{
1282
- "type":"structure",
1283
- "members":{
1284
- "OrganizationalUnit":{"shape":"OrganizationalUnit"}
1285
- }
1286
- },
1287
- "DescribePolicyRequest":{
1288
- "type":"structure",
1289
- "required":["PolicyId"],
1290
- "members":{
1291
- "PolicyId":{"shape":"PolicyId"}
1292
- }
1293
- },
1294
- "DescribePolicyResponse":{
1295
- "type":"structure",
1296
- "members":{
1297
- "Policy":{"shape":"Policy"}
1298
- }
1299
- },
1300
- "DestinationParentNotFoundException":{
1301
- "type":"structure",
1302
- "members":{
1303
- "Message":{"shape":"ExceptionMessage"}
1304
- },
1305
- "exception":true
1306
- },
1307
- "DetachPolicyRequest":{
1308
- "type":"structure",
1309
- "required":[
1310
- "PolicyId",
1311
- "TargetId"
1312
- ],
1313
- "members":{
1314
- "PolicyId":{"shape":"PolicyId"},
1315
- "TargetId":{"shape":"PolicyTargetId"}
1316
- }
1317
- },
1318
- "DisableAWSServiceAccessRequest":{
1319
- "type":"structure",
1320
- "required":["ServicePrincipal"],
1321
- "members":{
1322
- "ServicePrincipal":{"shape":"ServicePrincipal"}
1323
- }
1324
- },
1325
- "DisablePolicyTypeRequest":{
1326
- "type":"structure",
1327
- "required":[
1328
- "RootId",
1329
- "PolicyType"
1330
- ],
1331
- "members":{
1332
- "RootId":{"shape":"RootId"},
1333
- "PolicyType":{"shape":"PolicyType"}
1334
- }
1335
- },
1336
- "DisablePolicyTypeResponse":{
1337
- "type":"structure",
1338
- "members":{
1339
- "Root":{"shape":"Root"}
1340
- }
1341
- },
1342
- "DuplicateAccountException":{
1343
- "type":"structure",
1344
- "members":{
1345
- "Message":{"shape":"ExceptionMessage"}
1346
- },
1347
- "exception":true
1348
- },
1349
- "DuplicateHandshakeException":{
1350
- "type":"structure",
1351
- "members":{
1352
- "Message":{"shape":"ExceptionMessage"}
1353
- },
1354
- "exception":true
1355
- },
1356
- "DuplicateOrganizationalUnitException":{
1357
- "type":"structure",
1358
- "members":{
1359
- "Message":{"shape":"ExceptionMessage"}
1360
- },
1361
- "exception":true
1362
- },
1363
- "DuplicatePolicyAttachmentException":{
1364
- "type":"structure",
1365
- "members":{
1366
- "Message":{"shape":"ExceptionMessage"}
1367
- },
1368
- "exception":true
1369
- },
1370
- "DuplicatePolicyException":{
1371
- "type":"structure",
1372
- "members":{
1373
- "Message":{"shape":"ExceptionMessage"}
1374
- },
1375
- "exception":true
1376
- },
1377
- "Email":{
1378
- "type":"string",
1379
- "max":64,
1380
- "min":6,
1381
- "pattern":"[^\\s@]+@[^\\s@]+\\.[^\\s@]+",
1382
- "sensitive":true
1383
- },
1384
- "EnableAWSServiceAccessRequest":{
1385
- "type":"structure",
1386
- "required":["ServicePrincipal"],
1387
- "members":{
1388
- "ServicePrincipal":{"shape":"ServicePrincipal"}
1389
- }
1390
- },
1391
- "EnableAllFeaturesRequest":{
1392
- "type":"structure",
1393
- "members":{
1394
- }
1395
- },
1396
- "EnableAllFeaturesResponse":{
1397
- "type":"structure",
1398
- "members":{
1399
- "Handshake":{"shape":"Handshake"}
1400
- }
1401
- },
1402
- "EnablePolicyTypeRequest":{
1403
- "type":"structure",
1404
- "required":[
1405
- "RootId",
1406
- "PolicyType"
1407
- ],
1408
- "members":{
1409
- "RootId":{"shape":"RootId"},
1410
- "PolicyType":{"shape":"PolicyType"}
1411
- }
1412
- },
1413
- "EnablePolicyTypeResponse":{
1414
- "type":"structure",
1415
- "members":{
1416
- "Root":{"shape":"Root"}
1417
- }
1418
- },
1419
- "EnabledServicePrincipal":{
1420
- "type":"structure",
1421
- "members":{
1422
- "ServicePrincipal":{"shape":"ServicePrincipal"},
1423
- "DateEnabled":{"shape":"Timestamp"}
1424
- }
1425
- },
1426
- "EnabledServicePrincipals":{
1427
- "type":"list",
1428
- "member":{"shape":"EnabledServicePrincipal"}
1429
- },
1430
- "ExceptionMessage":{"type":"string"},
1431
- "ExceptionType":{"type":"string"},
1432
- "FinalizingOrganizationException":{
1433
- "type":"structure",
1434
- "members":{
1435
- "Message":{"shape":"ExceptionMessage"}
1436
- },
1437
- "exception":true
1438
- },
1439
- "GenericArn":{
1440
- "type":"string",
1441
- "pattern":"^arn:aws:organizations::.+:.+"
1442
- },
1443
- "Handshake":{
1444
- "type":"structure",
1445
- "members":{
1446
- "Id":{"shape":"HandshakeId"},
1447
- "Arn":{"shape":"HandshakeArn"},
1448
- "Parties":{"shape":"HandshakeParties"},
1449
- "State":{"shape":"HandshakeState"},
1450
- "RequestedTimestamp":{"shape":"Timestamp"},
1451
- "ExpirationTimestamp":{"shape":"Timestamp"},
1452
- "Action":{"shape":"ActionType"},
1453
- "Resources":{"shape":"HandshakeResources"}
1454
- }
1455
- },
1456
- "HandshakeAlreadyInStateException":{
1457
- "type":"structure",
1458
- "members":{
1459
- "Message":{"shape":"ExceptionMessage"}
1460
- },
1461
- "exception":true
1462
- },
1463
- "HandshakeArn":{
1464
- "type":"string",
1465
- "pattern":"^arn:aws:organizations::\\d{12}:handshake\\/o-[a-z0-9]{10,32}\\/[a-z_]{1,32}\\/h-[0-9a-z]{8,32}"
1466
- },
1467
- "HandshakeConstraintViolationException":{
1468
- "type":"structure",
1469
- "members":{
1470
- "Message":{"shape":"ExceptionMessage"},
1471
- "Reason":{"shape":"HandshakeConstraintViolationExceptionReason"}
1472
- },
1473
- "exception":true
1474
- },
1475
- "HandshakeConstraintViolationExceptionReason":{
1476
- "type":"string",
1477
- "enum":[
1478
- "ACCOUNT_NUMBER_LIMIT_EXCEEDED",
1479
- "HANDSHAKE_RATE_LIMIT_EXCEEDED",
1480
- "ALREADY_IN_AN_ORGANIZATION",
1481
- "ORGANIZATION_ALREADY_HAS_ALL_FEATURES",
1482
- "INVITE_DISABLED_DURING_ENABLE_ALL_FEATURES",
1483
- "PAYMENT_INSTRUMENT_REQUIRED",
1484
- "ORGANIZATION_FROM_DIFFERENT_SELLER_OF_RECORD",
1485
- "ORGANIZATION_MEMBERSHIP_CHANGE_RATE_LIMIT_EXCEEDED"
1486
- ]
1487
- },
1488
- "HandshakeFilter":{
1489
- "type":"structure",
1490
- "members":{
1491
- "ActionType":{"shape":"ActionType"},
1492
- "ParentHandshakeId":{"shape":"HandshakeId"}
1493
- }
1494
- },
1495
- "HandshakeId":{
1496
- "type":"string",
1497
- "pattern":"^h-[0-9a-z]{8,32}$"
1498
- },
1499
- "HandshakeNotFoundException":{
1500
- "type":"structure",
1501
- "members":{
1502
- "Message":{"shape":"ExceptionMessage"}
1503
- },
1504
- "exception":true
1505
- },
1506
- "HandshakeNotes":{
1507
- "type":"string",
1508
- "max":1024,
1509
- "sensitive":true
1510
- },
1511
- "HandshakeParties":{
1512
- "type":"list",
1513
- "member":{"shape":"HandshakeParty"}
1514
- },
1515
- "HandshakeParty":{
1516
- "type":"structure",
1517
- "required":[
1518
- "Id",
1519
- "Type"
1520
- ],
1521
- "members":{
1522
- "Id":{"shape":"HandshakePartyId"},
1523
- "Type":{"shape":"HandshakePartyType"}
1524
- }
1525
- },
1526
- "HandshakePartyId":{
1527
- "type":"string",
1528
- "max":64,
1529
- "min":1,
1530
- "sensitive":true
1531
- },
1532
- "HandshakePartyType":{
1533
- "type":"string",
1534
- "enum":[
1535
- "ACCOUNT",
1536
- "ORGANIZATION",
1537
- "EMAIL"
1538
- ]
1539
- },
1540
- "HandshakeResource":{
1541
- "type":"structure",
1542
- "members":{
1543
- "Value":{"shape":"HandshakeResourceValue"},
1544
- "Type":{"shape":"HandshakeResourceType"},
1545
- "Resources":{"shape":"HandshakeResources"}
1546
- }
1547
- },
1548
- "HandshakeResourceType":{
1549
- "type":"string",
1550
- "enum":[
1551
- "ACCOUNT",
1552
- "ORGANIZATION",
1553
- "ORGANIZATION_FEATURE_SET",
1554
- "EMAIL",
1555
- "MASTER_EMAIL",
1556
- "MASTER_NAME",
1557
- "NOTES",
1558
- "PARENT_HANDSHAKE"
1559
- ]
1560
- },
1561
- "HandshakeResourceValue":{
1562
- "type":"string",
1563
- "sensitive":true
1564
- },
1565
- "HandshakeResources":{
1566
- "type":"list",
1567
- "member":{"shape":"HandshakeResource"}
1568
- },
1569
- "HandshakeState":{
1570
- "type":"string",
1571
- "enum":[
1572
- "REQUESTED",
1573
- "OPEN",
1574
- "CANCELED",
1575
- "ACCEPTED",
1576
- "DECLINED",
1577
- "EXPIRED"
1578
- ]
1579
- },
1580
- "Handshakes":{
1581
- "type":"list",
1582
- "member":{"shape":"Handshake"}
1583
- },
1584
- "IAMUserAccessToBilling":{
1585
- "type":"string",
1586
- "enum":[
1587
- "ALLOW",
1588
- "DENY"
1589
- ]
1590
- },
1591
- "InvalidHandshakeTransitionException":{
1592
- "type":"structure",
1593
- "members":{
1594
- "Message":{"shape":"ExceptionMessage"}
1595
- },
1596
- "exception":true
1597
- },
1598
- "InvalidInputException":{
1599
- "type":"structure",
1600
- "members":{
1601
- "Message":{"shape":"ExceptionMessage"},
1602
- "Reason":{"shape":"InvalidInputExceptionReason"}
1603
- },
1604
- "exception":true
1605
- },
1606
- "InvalidInputExceptionReason":{
1607
- "type":"string",
1608
- "enum":[
1609
- "INVALID_PARTY_TYPE_TARGET",
1610
- "INVALID_SYNTAX_ORGANIZATION_ARN",
1611
- "INVALID_SYNTAX_POLICY_ID",
1612
- "INVALID_ENUM",
1613
- "INVALID_LIST_MEMBER",
1614
- "MAX_LENGTH_EXCEEDED",
1615
- "MAX_VALUE_EXCEEDED",
1616
- "MIN_LENGTH_EXCEEDED",
1617
- "MIN_VALUE_EXCEEDED",
1618
- "IMMUTABLE_POLICY",
1619
- "INVALID_PATTERN",
1620
- "INVALID_PATTERN_TARGET_ID",
1621
- "INPUT_REQUIRED",
1622
- "INVALID_NEXT_TOKEN",
1623
- "MAX_LIMIT_EXCEEDED_FILTER",
1624
- "MOVING_ACCOUNT_BETWEEN_DIFFERENT_ROOTS",
1625
- "INVALID_FULL_NAME_TARGET",
1626
- "UNRECOGNIZED_SERVICE_PRINCIPAL",
1627
- "INVALID_ROLE_NAME",
1628
- "INVALID_SYSTEM_TAGS_PARAMETER"
1629
- ]
1630
- },
1631
- "InviteAccountToOrganizationRequest":{
1632
- "type":"structure",
1633
- "required":["Target"],
1634
- "members":{
1635
- "Target":{"shape":"HandshakeParty"},
1636
- "Notes":{"shape":"HandshakeNotes"}
1637
- }
1638
- },
1639
- "InviteAccountToOrganizationResponse":{
1640
- "type":"structure",
1641
- "members":{
1642
- "Handshake":{"shape":"Handshake"}
1643
- }
1644
- },
1645
- "ListAWSServiceAccessForOrganizationRequest":{
1646
- "type":"structure",
1647
- "members":{
1648
- "NextToken":{"shape":"NextToken"},
1649
- "MaxResults":{"shape":"MaxResults"}
1650
- }
1651
- },
1652
- "ListAWSServiceAccessForOrganizationResponse":{
1653
- "type":"structure",
1654
- "members":{
1655
- "EnabledServicePrincipals":{"shape":"EnabledServicePrincipals"},
1656
- "NextToken":{"shape":"NextToken"}
1657
- }
1658
- },
1659
- "ListAccountsForParentRequest":{
1660
- "type":"structure",
1661
- "required":["ParentId"],
1662
- "members":{
1663
- "ParentId":{"shape":"ParentId"},
1664
- "NextToken":{"shape":"NextToken"},
1665
- "MaxResults":{"shape":"MaxResults"}
1666
- }
1667
- },
1668
- "ListAccountsForParentResponse":{
1669
- "type":"structure",
1670
- "members":{
1671
- "Accounts":{"shape":"Accounts"},
1672
- "NextToken":{"shape":"NextToken"}
1673
- }
1674
- },
1675
- "ListAccountsRequest":{
1676
- "type":"structure",
1677
- "members":{
1678
- "NextToken":{"shape":"NextToken"},
1679
- "MaxResults":{"shape":"MaxResults"}
1680
- }
1681
- },
1682
- "ListAccountsResponse":{
1683
- "type":"structure",
1684
- "members":{
1685
- "Accounts":{"shape":"Accounts"},
1686
- "NextToken":{"shape":"NextToken"}
1687
- }
1688
- },
1689
- "ListChildrenRequest":{
1690
- "type":"structure",
1691
- "required":[
1692
- "ParentId",
1693
- "ChildType"
1694
- ],
1695
- "members":{
1696
- "ParentId":{"shape":"ParentId"},
1697
- "ChildType":{"shape":"ChildType"},
1698
- "NextToken":{"shape":"NextToken"},
1699
- "MaxResults":{"shape":"MaxResults"}
1700
- }
1701
- },
1702
- "ListChildrenResponse":{
1703
- "type":"structure",
1704
- "members":{
1705
- "Children":{"shape":"Children"},
1706
- "NextToken":{"shape":"NextToken"}
1707
- }
1708
- },
1709
- "ListCreateAccountStatusRequest":{
1710
- "type":"structure",
1711
- "members":{
1712
- "States":{"shape":"CreateAccountStates"},
1713
- "NextToken":{"shape":"NextToken"},
1714
- "MaxResults":{"shape":"MaxResults"}
1715
- }
1716
- },
1717
- "ListCreateAccountStatusResponse":{
1718
- "type":"structure",
1719
- "members":{
1720
- "CreateAccountStatuses":{"shape":"CreateAccountStatuses"},
1721
- "NextToken":{"shape":"NextToken"}
1722
- }
1723
- },
1724
- "ListHandshakesForAccountRequest":{
1725
- "type":"structure",
1726
- "members":{
1727
- "Filter":{"shape":"HandshakeFilter"},
1728
- "NextToken":{"shape":"NextToken"},
1729
- "MaxResults":{"shape":"MaxResults"}
1730
- }
1731
- },
1732
- "ListHandshakesForAccountResponse":{
1733
- "type":"structure",
1734
- "members":{
1735
- "Handshakes":{"shape":"Handshakes"},
1736
- "NextToken":{"shape":"NextToken"}
1737
- }
1738
- },
1739
- "ListHandshakesForOrganizationRequest":{
1740
- "type":"structure",
1741
- "members":{
1742
- "Filter":{"shape":"HandshakeFilter"},
1743
- "NextToken":{"shape":"NextToken"},
1744
- "MaxResults":{"shape":"MaxResults"}
1745
- }
1746
- },
1747
- "ListHandshakesForOrganizationResponse":{
1748
- "type":"structure",
1749
- "members":{
1750
- "Handshakes":{"shape":"Handshakes"},
1751
- "NextToken":{"shape":"NextToken"}
1752
- }
1753
- },
1754
- "ListOrganizationalUnitsForParentRequest":{
1755
- "type":"structure",
1756
- "required":["ParentId"],
1757
- "members":{
1758
- "ParentId":{"shape":"ParentId"},
1759
- "NextToken":{"shape":"NextToken"},
1760
- "MaxResults":{"shape":"MaxResults"}
1761
- }
1762
- },
1763
- "ListOrganizationalUnitsForParentResponse":{
1764
- "type":"structure",
1765
- "members":{
1766
- "OrganizationalUnits":{"shape":"OrganizationalUnits"},
1767
- "NextToken":{"shape":"NextToken"}
1768
- }
1769
- },
1770
- "ListParentsRequest":{
1771
- "type":"structure",
1772
- "required":["ChildId"],
1773
- "members":{
1774
- "ChildId":{"shape":"ChildId"},
1775
- "NextToken":{"shape":"NextToken"},
1776
- "MaxResults":{"shape":"MaxResults"}
1777
- }
1778
- },
1779
- "ListParentsResponse":{
1780
- "type":"structure",
1781
- "members":{
1782
- "Parents":{"shape":"Parents"},
1783
- "NextToken":{"shape":"NextToken"}
1784
- }
1785
- },
1786
- "ListPoliciesForTargetRequest":{
1787
- "type":"structure",
1788
- "required":[
1789
- "TargetId",
1790
- "Filter"
1791
- ],
1792
- "members":{
1793
- "TargetId":{"shape":"PolicyTargetId"},
1794
- "Filter":{"shape":"PolicyType"},
1795
- "NextToken":{"shape":"NextToken"},
1796
- "MaxResults":{"shape":"MaxResults"}
1797
- }
1798
- },
1799
- "ListPoliciesForTargetResponse":{
1800
- "type":"structure",
1801
- "members":{
1802
- "Policies":{"shape":"Policies"},
1803
- "NextToken":{"shape":"NextToken"}
1804
- }
1805
- },
1806
- "ListPoliciesRequest":{
1807
- "type":"structure",
1808
- "required":["Filter"],
1809
- "members":{
1810
- "Filter":{"shape":"PolicyType"},
1811
- "NextToken":{"shape":"NextToken"},
1812
- "MaxResults":{"shape":"MaxResults"}
1813
- }
1814
- },
1815
- "ListPoliciesResponse":{
1816
- "type":"structure",
1817
- "members":{
1818
- "Policies":{"shape":"Policies"},
1819
- "NextToken":{"shape":"NextToken"}
1820
- }
1821
- },
1822
- "ListRootsRequest":{
1823
- "type":"structure",
1824
- "members":{
1825
- "NextToken":{"shape":"NextToken"},
1826
- "MaxResults":{"shape":"MaxResults"}
1827
- }
1828
- },
1829
- "ListRootsResponse":{
1830
- "type":"structure",
1831
- "members":{
1832
- "Roots":{"shape":"Roots"},
1833
- "NextToken":{"shape":"NextToken"}
1834
- }
1835
- },
1836
- "ListTagsForResourceRequest":{
1837
- "type":"structure",
1838
- "required":["ResourceId"],
1839
- "members":{
1840
- "ResourceId":{"shape":"TaggableResourceId"},
1841
- "NextToken":{"shape":"NextToken"}
1842
- }
1843
- },
1844
- "ListTagsForResourceResponse":{
1845
- "type":"structure",
1846
- "members":{
1847
- "Tags":{"shape":"Tags"},
1848
- "NextToken":{"shape":"NextToken"}
1849
- }
1850
- },
1851
- "ListTargetsForPolicyRequest":{
1852
- "type":"structure",
1853
- "required":["PolicyId"],
1854
- "members":{
1855
- "PolicyId":{"shape":"PolicyId"},
1856
- "NextToken":{"shape":"NextToken"},
1857
- "MaxResults":{"shape":"MaxResults"}
1858
- }
1859
- },
1860
- "ListTargetsForPolicyResponse":{
1861
- "type":"structure",
1862
- "members":{
1863
- "Targets":{"shape":"PolicyTargets"},
1864
- "NextToken":{"shape":"NextToken"}
1865
- }
1866
- },
1867
- "MalformedPolicyDocumentException":{
1868
- "type":"structure",
1869
- "members":{
1870
- "Message":{"shape":"ExceptionMessage"}
1871
- },
1872
- "exception":true
1873
- },
1874
- "MasterCannotLeaveOrganizationException":{
1875
- "type":"structure",
1876
- "members":{
1877
- "Message":{"shape":"ExceptionMessage"}
1878
- },
1879
- "exception":true
1880
- },
1881
- "MaxResults":{
1882
- "type":"integer",
1883
- "box":true,
1884
- "max":20,
1885
- "min":1
1886
- },
1887
- "MoveAccountRequest":{
1888
- "type":"structure",
1889
- "required":[
1890
- "AccountId",
1891
- "SourceParentId",
1892
- "DestinationParentId"
1893
- ],
1894
- "members":{
1895
- "AccountId":{"shape":"AccountId"},
1896
- "SourceParentId":{"shape":"ParentId"},
1897
- "DestinationParentId":{"shape":"ParentId"}
1898
- }
1899
- },
1900
- "NextToken":{"type":"string"},
1901
- "Organization":{
1902
- "type":"structure",
1903
- "members":{
1904
- "Id":{"shape":"OrganizationId"},
1905
- "Arn":{"shape":"OrganizationArn"},
1906
- "FeatureSet":{"shape":"OrganizationFeatureSet"},
1907
- "MasterAccountArn":{"shape":"AccountArn"},
1908
- "MasterAccountId":{"shape":"AccountId"},
1909
- "MasterAccountEmail":{"shape":"Email"},
1910
- "AvailablePolicyTypes":{"shape":"PolicyTypes"}
1911
- }
1912
- },
1913
- "OrganizationArn":{
1914
- "type":"string",
1915
- "pattern":"^arn:aws:organizations::\\d{12}:organization\\/o-[a-z0-9]{10,32}"
1916
- },
1917
- "OrganizationFeatureSet":{
1918
- "type":"string",
1919
- "enum":[
1920
- "ALL",
1921
- "CONSOLIDATED_BILLING"
1922
- ]
1923
- },
1924
- "OrganizationId":{
1925
- "type":"string",
1926
- "pattern":"^o-[a-z0-9]{10,32}$"
1927
- },
1928
- "OrganizationNotEmptyException":{
1929
- "type":"structure",
1930
- "members":{
1931
- "Message":{"shape":"ExceptionMessage"}
1932
- },
1933
- "exception":true
1934
- },
1935
- "OrganizationalUnit":{
1936
- "type":"structure",
1937
- "members":{
1938
- "Id":{"shape":"OrganizationalUnitId"},
1939
- "Arn":{"shape":"OrganizationalUnitArn"},
1940
- "Name":{"shape":"OrganizationalUnitName"}
1941
- }
1942
- },
1943
- "OrganizationalUnitArn":{
1944
- "type":"string",
1945
- "pattern":"^arn:aws:organizations::\\d{12}:ou\\/o-[a-z0-9]{10,32}\\/ou-[0-9a-z]{4,32}-[0-9a-z]{8,32}"
1946
- },
1947
- "OrganizationalUnitId":{
1948
- "type":"string",
1949
- "pattern":"^ou-[0-9a-z]{4,32}-[a-z0-9]{8,32}$"
1950
- },
1951
- "OrganizationalUnitName":{
1952
- "type":"string",
1953
- "max":128,
1954
- "min":1
1955
- },
1956
- "OrganizationalUnitNotEmptyException":{
1957
- "type":"structure",
1958
- "members":{
1959
- "Message":{"shape":"ExceptionMessage"}
1960
- },
1961
- "exception":true
1962
- },
1963
- "OrganizationalUnitNotFoundException":{
1964
- "type":"structure",
1965
- "members":{
1966
- "Message":{"shape":"ExceptionMessage"}
1967
- },
1968
- "exception":true
1969
- },
1970
- "OrganizationalUnits":{
1971
- "type":"list",
1972
- "member":{"shape":"OrganizationalUnit"}
1973
- },
1974
- "Parent":{
1975
- "type":"structure",
1976
- "members":{
1977
- "Id":{"shape":"ParentId"},
1978
- "Type":{"shape":"ParentType"}
1979
- }
1980
- },
1981
- "ParentId":{
1982
- "type":"string",
1983
- "pattern":"^(r-[0-9a-z]{4,32})|(ou-[0-9a-z]{4,32}-[a-z0-9]{8,32})$"
1984
- },
1985
- "ParentNotFoundException":{
1986
- "type":"structure",
1987
- "members":{
1988
- "Message":{"shape":"ExceptionMessage"}
1989
- },
1990
- "exception":true
1991
- },
1992
- "ParentType":{
1993
- "type":"string",
1994
- "enum":[
1995
- "ROOT",
1996
- "ORGANIZATIONAL_UNIT"
1997
- ]
1998
- },
1999
- "Parents":{
2000
- "type":"list",
2001
- "member":{"shape":"Parent"}
2002
- },
2003
- "Policies":{
2004
- "type":"list",
2005
- "member":{"shape":"PolicySummary"}
2006
- },
2007
- "Policy":{
2008
- "type":"structure",
2009
- "members":{
2010
- "PolicySummary":{"shape":"PolicySummary"},
2011
- "Content":{"shape":"PolicyContent"}
2012
- }
2013
- },
2014
- "PolicyArn":{
2015
- "type":"string",
2016
- "pattern":"^(arn:aws:organizations::\\d{12}:policy\\/o-[a-z0-9]{10,32}\\/[0-9a-z_]+\\/p-[0-9a-z]{10,32})|(arn:aws:organizations::aws:policy\\/[0-9a-z_]+\\/p-[0-9a-zA-Z_]{10,128})"
2017
- },
2018
- "PolicyContent":{
2019
- "type":"string",
2020
- "max":1000000,
2021
- "min":1
2022
- },
2023
- "PolicyDescription":{
2024
- "type":"string",
2025
- "max":512
2026
- },
2027
- "PolicyId":{
2028
- "type":"string",
2029
- "pattern":"^p-[0-9a-zA-Z_]{8,128}$"
2030
- },
2031
- "PolicyInUseException":{
2032
- "type":"structure",
2033
- "members":{
2034
- "Message":{"shape":"ExceptionMessage"}
2035
- },
2036
- "exception":true
2037
- },
2038
- "PolicyName":{
2039
- "type":"string",
2040
- "max":128,
2041
- "min":1
2042
- },
2043
- "PolicyNotAttachedException":{
2044
- "type":"structure",
2045
- "members":{
2046
- "Message":{"shape":"ExceptionMessage"}
2047
- },
2048
- "exception":true
2049
- },
2050
- "PolicyNotFoundException":{
2051
- "type":"structure",
2052
- "members":{
2053
- "Message":{"shape":"ExceptionMessage"}
2054
- },
2055
- "exception":true
2056
- },
2057
- "PolicySummary":{
2058
- "type":"structure",
2059
- "members":{
2060
- "Id":{"shape":"PolicyId"},
2061
- "Arn":{"shape":"PolicyArn"},
2062
- "Name":{"shape":"PolicyName"},
2063
- "Description":{"shape":"PolicyDescription"},
2064
- "Type":{"shape":"PolicyType"},
2065
- "AwsManaged":{"shape":"AwsManagedPolicy"}
2066
- }
2067
- },
2068
- "PolicyTargetId":{
2069
- "type":"string",
2070
- "pattern":"^(r-[0-9a-z]{4,32})|(\\d{12})|(ou-[0-9a-z]{4,32}-[a-z0-9]{8,32})$"
2071
- },
2072
- "PolicyTargetSummary":{
2073
- "type":"structure",
2074
- "members":{
2075
- "TargetId":{"shape":"PolicyTargetId"},
2076
- "Arn":{"shape":"GenericArn"},
2077
- "Name":{"shape":"TargetName"},
2078
- "Type":{"shape":"TargetType"}
2079
- }
2080
- },
2081
- "PolicyTargets":{
2082
- "type":"list",
2083
- "member":{"shape":"PolicyTargetSummary"}
2084
- },
2085
- "PolicyType":{
2086
- "type":"string",
2087
- "enum":["SERVICE_CONTROL_POLICY"]
2088
- },
2089
- "PolicyTypeAlreadyEnabledException":{
2090
- "type":"structure",
2091
- "members":{
2092
- "Message":{"shape":"ExceptionMessage"}
2093
- },
2094
- "exception":true
2095
- },
2096
- "PolicyTypeNotAvailableForOrganizationException":{
2097
- "type":"structure",
2098
- "members":{
2099
- "Message":{"shape":"ExceptionMessage"}
2100
- },
2101
- "exception":true
2102
- },
2103
- "PolicyTypeNotEnabledException":{
2104
- "type":"structure",
2105
- "members":{
2106
- "Message":{"shape":"ExceptionMessage"}
2107
- },
2108
- "exception":true
2109
- },
2110
- "PolicyTypeStatus":{
2111
- "type":"string",
2112
- "enum":[
2113
- "ENABLED",
2114
- "PENDING_ENABLE",
2115
- "PENDING_DISABLE"
2116
- ]
2117
- },
2118
- "PolicyTypeSummary":{
2119
- "type":"structure",
2120
- "members":{
2121
- "Type":{"shape":"PolicyType"},
2122
- "Status":{"shape":"PolicyTypeStatus"}
2123
- }
2124
- },
2125
- "PolicyTypes":{
2126
- "type":"list",
2127
- "member":{"shape":"PolicyTypeSummary"}
2128
- },
2129
- "RemoveAccountFromOrganizationRequest":{
2130
- "type":"structure",
2131
- "required":["AccountId"],
2132
- "members":{
2133
- "AccountId":{"shape":"AccountId"}
2134
- }
2135
- },
2136
- "RoleName":{
2137
- "type":"string",
2138
- "pattern":"[\\w+=,.@-]{1,64}"
2139
- },
2140
- "Root":{
2141
- "type":"structure",
2142
- "members":{
2143
- "Id":{"shape":"RootId"},
2144
- "Arn":{"shape":"RootArn"},
2145
- "Name":{"shape":"RootName"},
2146
- "PolicyTypes":{"shape":"PolicyTypes"}
2147
- }
2148
- },
2149
- "RootArn":{
2150
- "type":"string",
2151
- "pattern":"^arn:aws:organizations::\\d{12}:root\\/o-[a-z0-9]{10,32}\\/r-[0-9a-z]{4,32}"
2152
- },
2153
- "RootId":{
2154
- "type":"string",
2155
- "pattern":"^r-[0-9a-z]{4,32}$"
2156
- },
2157
- "RootName":{
2158
- "type":"string",
2159
- "max":128,
2160
- "min":1
2161
- },
2162
- "RootNotFoundException":{
2163
- "type":"structure",
2164
- "members":{
2165
- "Message":{"shape":"ExceptionMessage"}
2166
- },
2167
- "exception":true
2168
- },
2169
- "Roots":{
2170
- "type":"list",
2171
- "member":{"shape":"Root"}
2172
- },
2173
- "ServiceException":{
2174
- "type":"structure",
2175
- "members":{
2176
- "Message":{"shape":"ExceptionMessage"}
2177
- },
2178
- "exception":true
2179
- },
2180
- "ServicePrincipal":{
2181
- "type":"string",
2182
- "max":128,
2183
- "min":1,
2184
- "pattern":"[\\w+=,.@-]*"
2185
- },
2186
- "SourceParentNotFoundException":{
2187
- "type":"structure",
2188
- "members":{
2189
- "Message":{"shape":"ExceptionMessage"}
2190
- },
2191
- "exception":true
2192
- },
2193
- "Tag":{
2194
- "type":"structure",
2195
- "required":[
2196
- "Key",
2197
- "Value"
2198
- ],
2199
- "members":{
2200
- "Key":{"shape":"TagKey"},
2201
- "Value":{"shape":"TagValue"}
2202
- }
2203
- },
2204
- "TagKey":{
2205
- "type":"string",
2206
- "max":128,
2207
- "min":1,
2208
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
2209
- },
2210
- "TagKeys":{
2211
- "type":"list",
2212
- "member":{"shape":"TagKey"}
2213
- },
2214
- "TagResourceRequest":{
2215
- "type":"structure",
2216
- "required":[
2217
- "ResourceId",
2218
- "Tags"
2219
- ],
2220
- "members":{
2221
- "ResourceId":{"shape":"TaggableResourceId"},
2222
- "Tags":{"shape":"Tags"}
2223
- }
2224
- },
2225
- "TagValue":{
2226
- "type":"string",
2227
- "max":256,
2228
- "min":0,
2229
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
2230
- },
2231
- "TaggableResourceId":{
2232
- "type":"string",
2233
- "pattern":"^\\d{12}$"
2234
- },
2235
- "Tags":{
2236
- "type":"list",
2237
- "member":{"shape":"Tag"}
2238
- },
2239
- "TargetName":{
2240
- "type":"string",
2241
- "max":128,
2242
- "min":1
2243
- },
2244
- "TargetNotFoundException":{
2245
- "type":"structure",
2246
- "members":{
2247
- "Message":{"shape":"ExceptionMessage"}
2248
- },
2249
- "exception":true
2250
- },
2251
- "TargetType":{
2252
- "type":"string",
2253
- "enum":[
2254
- "ACCOUNT",
2255
- "ORGANIZATIONAL_UNIT",
2256
- "ROOT"
2257
- ]
2258
- },
2259
- "Timestamp":{"type":"timestamp"},
2260
- "TooManyRequestsException":{
2261
- "type":"structure",
2262
- "members":{
2263
- "Type":{"shape":"ExceptionType"},
2264
- "Message":{"shape":"ExceptionMessage"}
2265
- },
2266
- "exception":true
2267
- },
2268
- "UnsupportedAPIEndpointException":{
2269
- "type":"structure",
2270
- "members":{
2271
- "Message":{"shape":"ExceptionMessage"}
2272
- },
2273
- "exception":true
2274
- },
2275
- "UntagResourceRequest":{
2276
- "type":"structure",
2277
- "required":[
2278
- "ResourceId",
2279
- "TagKeys"
2280
- ],
2281
- "members":{
2282
- "ResourceId":{"shape":"TaggableResourceId"},
2283
- "TagKeys":{"shape":"TagKeys"}
2284
- }
2285
- },
2286
- "UpdateOrganizationalUnitRequest":{
2287
- "type":"structure",
2288
- "required":["OrganizationalUnitId"],
2289
- "members":{
2290
- "OrganizationalUnitId":{"shape":"OrganizationalUnitId"},
2291
- "Name":{"shape":"OrganizationalUnitName"}
2292
- }
2293
- },
2294
- "UpdateOrganizationalUnitResponse":{
2295
- "type":"structure",
2296
- "members":{
2297
- "OrganizationalUnit":{"shape":"OrganizationalUnit"}
2298
- }
2299
- },
2300
- "UpdatePolicyRequest":{
2301
- "type":"structure",
2302
- "required":["PolicyId"],
2303
- "members":{
2304
- "PolicyId":{"shape":"PolicyId"},
2305
- "Name":{"shape":"PolicyName"},
2306
- "Description":{"shape":"PolicyDescription"},
2307
- "Content":{"shape":"PolicyContent"}
2308
- }
2309
- },
2310
- "UpdatePolicyResponse":{
2311
- "type":"structure",
2312
- "members":{
2313
- "Policy":{"shape":"Policy"}
2314
- }
2315
- }
2316
- }
2317
- }