aws-sdk-core 2.11.502 → 3.94.0

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