aws-sdk-core 2.11.445 → 3.89.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1296) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +89 -582
  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 +101 -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 +11 -8
  18. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  19. data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
  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 +146 -24
  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 +9 -10
  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 +4 -3
  33. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  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 +60 -26
  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 +280 -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 +43 -50
  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/retry_errors.rb +81 -25
  60. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  61. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  62. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  63. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  64. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  65. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  66. data/lib/aws-sdk-core/query.rb +5 -0
  67. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  68. data/lib/aws-sdk-core/query/handler.rb +20 -16
  69. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  70. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  71. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  72. data/lib/aws-sdk-core/rest.rb +10 -0
  73. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  74. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  75. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  76. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  77. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  78. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  79. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  80. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  81. data/lib/aws-sdk-core/shared_config.rb +187 -15
  82. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  83. data/lib/aws-sdk-core/structure.rb +22 -13
  84. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  85. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  86. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  87. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  88. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  89. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  90. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  91. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  92. data/lib/aws-sdk-core/util.rb +66 -0
  93. data/lib/aws-sdk-core/waiters.rb +3 -0
  94. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  95. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  96. data/lib/aws-sdk-core/xml.rb +9 -0
  97. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  98. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  99. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  100. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  101. data/lib/aws-sdk-sts.rb +45 -0
  102. data/lib/aws-sdk-sts/client.rb +2156 -0
  103. data/lib/aws-sdk-sts/client_api.rb +336 -0
  104. data/lib/aws-sdk-sts/customizations.rb +2 -0
  105. data/lib/aws-sdk-sts/errors.rb +142 -0
  106. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  107. data/lib/aws-sdk-sts/presigner.rb +67 -0
  108. data/lib/aws-sdk-sts/resource.rb +23 -0
  109. data/lib/aws-sdk-sts/types.rb +1504 -0
  110. data/lib/seahorse.rb +60 -60
  111. data/lib/seahorse/client/async_base.rb +50 -0
  112. data/lib/seahorse/client/async_response.rb +62 -0
  113. data/lib/seahorse/client/base.rb +5 -9
  114. data/lib/seahorse/client/configuration.rb +4 -2
  115. data/lib/seahorse/client/h2/connection.rb +246 -0
  116. data/lib/seahorse/client/h2/handler.rb +151 -0
  117. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  118. data/lib/seahorse/client/http/async_response.rb +42 -0
  119. data/lib/seahorse/client/http/response.rb +10 -5
  120. data/lib/seahorse/client/logging/formatter.rb +6 -2
  121. data/lib/seahorse/client/logging/handler.rb +2 -0
  122. data/lib/seahorse/client/net_http/connection_pool.rb +35 -21
  123. data/lib/seahorse/client/net_http/handler.rb +12 -1
  124. data/lib/seahorse/client/net_http/patches.rb +9 -1
  125. data/lib/seahorse/client/networking_error.rb +28 -0
  126. data/lib/seahorse/client/plugin.rb +67 -6
  127. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  128. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  129. data/lib/seahorse/client/plugins/h2.rb +64 -0
  130. data/lib/seahorse/client/plugins/logging.rb +17 -19
  131. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  132. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  133. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  134. data/lib/seahorse/client/request_context.rb +5 -0
  135. data/lib/seahorse/model/api.rb +33 -0
  136. data/lib/seahorse/model/authorizer.rb +21 -0
  137. data/lib/seahorse/model/operation.rb +11 -0
  138. data/lib/seahorse/model/shapes.rb +44 -2
  139. data/lib/seahorse/util.rb +1 -22
  140. metadata +104 -1169
  141. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -914
  142. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  143. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
  144. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1128
  145. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  146. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -24
  147. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  148. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  149. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  150. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  151. data/apis/acm/2015-12-08/api-2.json +0 -872
  152. data/apis/acm/2015-12-08/examples-1.json +0 -5
  153. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  154. data/apis/acm/2015-12-08/smoke.json +0 -18
  155. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  156. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4133
  157. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  158. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  159. data/apis/amplify/2017-07-25/api-2.json +0 -2374
  160. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  161. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  162. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  163. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  164. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  165. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  166. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  167. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  168. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -6379
  169. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  170. data/apis/appconfig/2019-10-09/api-2.json +0 -1391
  171. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  172. data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
  173. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -786
  174. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  175. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  176. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  177. data/apis/application-insights/2018-11-25/api-2.json +0 -1208
  178. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  179. data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
  180. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  181. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  182. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  183. data/apis/appmesh/2019-01-25/api-2.json +0 -3424
  184. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  185. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  186. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  187. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  188. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  189. data/apis/appstream/2016-12-01/smoke.json +0 -11
  190. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  191. data/apis/appsync/2017-07-25/api-2.json +0 -2288
  192. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  193. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  194. data/apis/athena/2017-05-18/api-2.json +0 -989
  195. data/apis/athena/2017-05-18/examples-1.json +0 -5
  196. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  197. data/apis/athena/2017-05-18/smoke.json +0 -11
  198. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  199. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  200. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  201. data/apis/autoscaling/2011-01-01/api-2.json +0 -2464
  202. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  203. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  204. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  205. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  206. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  207. data/apis/backup/2018-11-15/api-2.json +0 -2345
  208. data/apis/backup/2018-11-15/examples-1.json +0 -5
  209. data/apis/backup/2018-11-15/paginators-1.json +0 -64
  210. data/apis/batch/2016-08-10/api-2.json +0 -1137
  211. data/apis/batch/2016-08-10/examples-1.json +0 -589
  212. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  213. data/apis/batch/2016-08-10/smoke.json +0 -11
  214. data/apis/budgets/2016-10-20/api-2.json +0 -830
  215. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  216. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  217. data/apis/ce/2017-10-25/api-2.json +0 -1633
  218. data/apis/ce/2017-10-25/examples-1.json +0 -5
  219. data/apis/ce/2017-10-25/paginators-1.json +0 -14
  220. data/apis/chime/2018-05-01/api-2.json +0 -4653
  221. data/apis/chime/2018-05-01/examples-1.json +0 -5
  222. data/apis/chime/2018-05-01/paginators-1.json +0 -59
  223. data/apis/cloud9/2017-09-23/api-2.json +0 -549
  224. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  225. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  226. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  227. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  228. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  229. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  230. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  231. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  232. data/apis/cloudformation/2010-05-15/api-2.json +0 -3438
  233. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  234. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  235. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  236. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  237. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  238. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  239. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  240. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  241. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  242. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  243. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  244. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  245. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  246. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  247. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  248. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  249. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  250. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  251. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  252. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  253. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  254. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  255. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  256. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  257. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  258. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  259. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  260. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  261. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  262. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  263. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  264. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  265. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  266. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  267. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  268. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  269. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  270. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  271. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  272. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  273. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  274. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  275. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  276. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  277. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  278. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  279. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  280. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  281. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  282. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  283. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  284. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  285. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  286. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  287. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  288. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -741
  289. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  290. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  291. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  292. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  293. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  294. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  295. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  296. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  297. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  298. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  299. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  300. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  301. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  302. data/apis/codebuild/2016-10-06/api-2.json +0 -1910
  303. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  304. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  305. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  306. data/apis/codecommit/2015-04-13/api-2.json +0 -5383
  307. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  308. data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
  309. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  310. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  311. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  312. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  313. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  314. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  315. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -351
  316. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  317. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -10
  318. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -645
  319. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  320. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -14
  321. data/apis/codepipeline/2015-07-09/api-2.json +0 -2505
  322. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  323. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  324. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  325. data/apis/codestar-connections/2019-12-01/api-2.json +0 -194
  326. data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
  327. data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -9
  328. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  329. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  330. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  331. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  332. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  333. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  334. data/apis/codestar/2017-04-19/smoke.json +0 -11
  335. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  336. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  337. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  338. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5449
  339. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  340. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  341. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  342. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  343. data/apis/comprehend/2017-11-27/api-2.json +0 -2664
  344. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  345. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  346. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -924
  347. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  348. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  349. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -571
  350. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  351. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  352. data/apis/config/2014-11-12/api-2.json +0 -4340
  353. data/apis/config/2014-11-12/examples-1.json +0 -5
  354. data/apis/config/2014-11-12/paginators-1.json +0 -21
  355. data/apis/config/2014-11-12/smoke.json +0 -19
  356. data/apis/connect/2017-08-08/api-2.json +0 -2139
  357. data/apis/connect/2017-08-08/examples-1.json +0 -5
  358. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  359. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  360. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  361. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  362. data/apis/cur/2017-01-06/api-2.json +0 -277
  363. data/apis/cur/2017-01-06/examples-1.json +0 -102
  364. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  365. data/apis/cur/2017-01-06/smoke.json +0 -11
  366. data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
  367. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  368. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  369. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  370. data/apis/datasync/2018-11-09/api-2.json +0 -1451
  371. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  372. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  373. data/apis/dax/2017-04-19/api-2.json +0 -1140
  374. data/apis/dax/2017-04-19/examples-1.json +0 -5
  375. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  376. data/apis/detective/2018-10-26/api-2.json +0 -447
  377. data/apis/detective/2018-10-26/examples-1.json +0 -5
  378. data/apis/detective/2018-10-26/paginators-1.json +0 -19
  379. data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
  380. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  381. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
  382. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  383. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  384. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  385. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  386. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  387. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  388. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  389. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  390. data/apis/discovery/2015-11-01/smoke.json +0 -11
  391. data/apis/dlm/2018-01-12/api-2.json +0 -687
  392. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  393. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  394. data/apis/dms/2016-01-01/api-2.json +0 -2296
  395. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  396. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  397. data/apis/dms/2016-01-01/smoke.json +0 -18
  398. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  399. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  400. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  401. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  402. data/apis/docdb/2014-10-31/smoke.json +0 -18
  403. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  404. data/apis/ds/2015-04-16/api-2.json +0 -3019
  405. data/apis/ds/2015-04-16/examples-1.json +0 -5
  406. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  407. data/apis/ds/2015-04-16/smoke.json +0 -20
  408. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  409. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  410. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  411. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  412. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  413. data/apis/dynamodb/2012-08-10/api-2.json +0 -3182
  414. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  415. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
  416. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  417. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  418. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  419. data/apis/ebs/2019-11-02/api-2.json +0 -277
  420. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  421. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  422. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  423. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  424. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  425. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  426. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  427. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  428. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  429. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  430. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  431. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  432. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  433. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  434. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  435. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  436. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  437. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  438. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  439. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  440. data/apis/ec2/2016-11-15/api-2.json +0 -29182
  441. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  442. data/apis/ec2/2016-11-15/paginators-1.json +0 -474
  443. data/apis/ec2/2016-11-15/resources-1.json +0 -2907
  444. data/apis/ec2/2016-11-15/smoke.json +0 -20
  445. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  446. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  447. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  448. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  449. data/apis/ecr/2015-09-21/smoke.json +0 -18
  450. data/apis/ecr/2015-09-21/waiters-2.json +0 -45
  451. data/apis/ecs/2014-11-13/api-2.json +0 -3150
  452. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  453. data/apis/ecs/2014-11-13/paginators-1.json +0 -52
  454. data/apis/ecs/2014-11-13/smoke.json +0 -18
  455. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  456. data/apis/eks/2017-11-01/api-2.json +0 -1434
  457. data/apis/eks/2017-11-01/examples-1.json +0 -135
  458. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  459. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  460. data/apis/elastic-inference/2017-07-25/api-2.json +0 -174
  461. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  462. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -4
  463. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  464. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  465. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  466. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  467. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  468. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  469. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  470. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  471. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  472. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1370
  473. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  474. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
  475. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  476. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  477. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  478. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  479. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  480. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  481. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2346
  482. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  483. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  484. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  485. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  486. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2241
  487. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  488. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  489. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  490. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  491. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  492. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  493. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  494. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  495. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  496. data/apis/email/2010-12-01/api-2.json +0 -3182
  497. data/apis/email/2010-12-01/examples-1.json +0 -1021
  498. data/apis/email/2010-12-01/paginators-1.json +0 -18
  499. data/apis/email/2010-12-01/smoke.json +0 -18
  500. data/apis/email/2010-12-01/waiters-2.json +0 -18
  501. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  502. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  503. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  504. data/apis/es/2015-01-01/api-2.json +0 -1632
  505. data/apis/es/2015-01-01/examples-1.json +0 -5
  506. data/apis/es/2015-01-01/paginators-1.json +0 -29
  507. data/apis/es/2015-01-01/smoke.json +0 -18
  508. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  509. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  510. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  511. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  512. data/apis/events/2015-10-07/api-2.json +0 -1462
  513. data/apis/events/2015-10-07/examples-1.json +0 -5
  514. data/apis/events/2015-10-07/paginators-1.json +0 -4
  515. data/apis/events/2015-10-07/smoke.json +0 -18
  516. data/apis/firehose/2015-08-04/api-2.json +0 -1445
  517. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  518. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  519. data/apis/firehose/2015-08-04/smoke.json +0 -18
  520. data/apis/fms/2018-01-01/api-2.json +0 -829
  521. data/apis/fms/2018-01-01/examples-1.json +0 -5
  522. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  523. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  524. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  525. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  526. data/apis/forecastquery/2018-06-26/api-2.json +0 -146
  527. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  528. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  529. data/apis/frauddetector/2019-11-15/api-2.json +0 -1541
  530. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  531. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -39
  532. data/apis/fsx/2018-03-01/api-2.json +0 -1340
  533. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  534. data/apis/fsx/2018-03-01/paginators-1.json +0 -19
  535. data/apis/gamelift/2015-10-01/api-2.json +0 -3695
  536. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  537. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  538. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  539. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  540. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  541. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  542. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  543. data/apis/glacier/2012-06-01/smoke.json +0 -18
  544. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  545. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  546. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  547. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  548. data/apis/glue/2017-03-31/api-2.json +0 -6305
  549. data/apis/glue/2017-03-31/examples-1.json +0 -5
  550. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  551. data/apis/glue/2017-03-31/smoke.json +0 -11
  552. data/apis/greengrass/2017-06-07/api-2.json +0 -5124
  553. data/apis/groundstation/2019-05-23/api-2.json +0 -1409
  554. data/apis/groundstation/2019-05-23/examples-1.json +0 -5
  555. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  556. data/apis/guardduty/2017-11-28/api-2.json +0 -3508
  557. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  558. data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
  559. data/apis/health/2016-08-04/api-2.json +0 -836
  560. data/apis/health/2016-08-04/examples-1.json +0 -5
  561. data/apis/health/2016-08-04/paginators-1.json +0 -52
  562. data/apis/health/2016-08-04/smoke.json +0 -11
  563. data/apis/iam/2010-05-08/api-2.json +0 -5797
  564. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  565. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  566. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  567. data/apis/iam/2010-05-08/smoke.json +0 -18
  568. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  569. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2414
  570. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  571. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  572. data/apis/importexport/2010-06-01/api-2.json +0 -667
  573. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  574. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  575. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  576. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  577. data/apis/inspector/2016-02-16/smoke.json +0 -18
  578. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  579. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  580. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  581. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  582. data/apis/iot/2015-05-28/api-2.json +0 -11061
  583. data/apis/iot/2015-05-28/examples-1.json +0 -5
  584. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  585. data/apis/iot/2015-05-28/smoke.json +0 -18
  586. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  587. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  588. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  589. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  590. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  591. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  592. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  593. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  594. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  595. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  596. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  597. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  598. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  599. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
  600. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  601. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  602. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  603. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  604. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  605. data/apis/kafka/2018-11-14/api-2.json +0 -2208
  606. data/apis/kafka/2018-11-14/paginators-1.json +0 -40
  607. data/apis/kendra/2019-02-03/api-2.json +0 -1738
  608. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  609. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  610. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  611. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  612. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  613. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  614. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  615. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  616. data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
  617. data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
  618. data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
  619. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  620. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  621. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  622. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  623. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  624. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  625. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  626. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  627. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2266
  628. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  629. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  630. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -954
  631. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  632. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
  633. data/apis/kms/2014-11-01/api-2.json +0 -2155
  634. data/apis/kms/2014-11-01/examples-1.json +0 -906
  635. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  636. data/apis/kms/2014-11-01/smoke.json +0 -19
  637. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  638. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  639. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  640. data/apis/lambda/2014-11-11/api-2.json +0 -668
  641. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  642. data/apis/lambda/2015-03-31/api-2.json +0 -2944
  643. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  644. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  645. data/apis/lambda/2015-03-31/smoke.json +0 -18
  646. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  647. data/apis/lex-models/2017-04-19/api-2.json +0 -2395
  648. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  649. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  650. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  651. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  652. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  653. data/apis/lightsail/2016-11-28/api-2.json +0 -5017
  654. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  655. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  656. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  657. data/apis/logs/2014-03-28/api-2.json +0 -1701
  658. data/apis/logs/2014-03-28/examples-1.json +0 -5
  659. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  660. data/apis/logs/2014-03-28/smoke.json +0 -19
  661. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  662. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  663. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  664. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  665. data/apis/macie/2017-12-19/api-2.json +0 -365
  666. data/apis/macie/2017-12-19/examples-1.json +0 -5
  667. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  668. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  669. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  670. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  671. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  672. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  673. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  674. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  675. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  676. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  677. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  678. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  679. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  680. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8695
  681. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  682. data/apis/medialive/2017-10-14/api-2.json +0 -10694
  683. data/apis/medialive/2017-10-14/paginators-1.json +0 -52
  684. data/apis/medialive/2017-10-14/waiters-2.json +0 -217
  685. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1565
  686. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  687. data/apis/mediapackage/2017-10-12/api-2.json +0 -2516
  688. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  689. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  690. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  691. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  692. data/apis/mediastore/2017-09-01/api-2.json +0 -737
  693. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  694. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  695. data/apis/mediatailor/2018-04-23/api-2.json +0 -557
  696. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  697. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  698. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  699. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  700. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -207
  701. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  702. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  703. data/apis/mobile/2017-07-01/api-2.json +0 -551
  704. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  705. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  706. data/apis/monitoring/2010-08-01/api-2.json +0 -1876
  707. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  708. data/apis/monitoring/2010-08-01/paginators-1.json +0 -43
  709. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  710. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  711. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  712. data/apis/mq/2017-11-27/api-2.json +0 -2577
  713. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  714. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  715. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  716. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  717. data/apis/neptune/2014-10-31/api-2.json +0 -3583
  718. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  719. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  720. data/apis/neptune/2014-10-31/smoke.json +0 -18
  721. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  722. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  723. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  724. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  725. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  726. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  727. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  728. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  729. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  730. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  731. data/apis/opsworkscm/2016-11-01/api-2.json +0 -947
  732. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  733. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  734. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  735. data/apis/organizations/2016-11-28/api-2.json +0 -2401
  736. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  737. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  738. data/apis/outposts/2019-12-03/api-2.json +0 -367
  739. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  740. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  741. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  742. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  743. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  744. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -147
  745. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  746. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  747. data/apis/personalize/2018-05-22/api-2.json +0 -1863
  748. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  749. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  750. data/apis/pi/2018-02-27/api-2.json +0 -253
  751. data/apis/pi/2018-02-27/examples-1.json +0 -5
  752. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  753. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  754. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  755. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  756. data/apis/pinpoint/2016-12-01/api-2.json +0 -11495
  757. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  758. data/apis/polly/2016-06-10/api-2.json +0 -832
  759. data/apis/polly/2016-06-10/examples-1.json +0 -171
  760. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  761. data/apis/polly/2016-06-10/smoke.json +0 -11
  762. data/apis/pricing/2017-10-15/api-2.json +0 -227
  763. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  764. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  765. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  766. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  767. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  768. data/apis/qldb/2019-01-02/api-2.json +0 -776
  769. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  770. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  771. data/apis/quicksight/2018-04-01/api-2.json +0 -5482
  772. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  773. data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
  774. data/apis/ram/2018-01-04/api-2.json +0 -1272
  775. data/apis/ram/2018-01-04/examples-1.json +0 -5
  776. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  777. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  778. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  779. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  780. data/apis/rds/2013-01-10/api-2.json +0 -2903
  781. data/apis/rds/2013-01-10/examples-1.json +0 -5
  782. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  783. data/apis/rds/2013-01-10/smoke.json +0 -18
  784. data/apis/rds/2013-02-12/api-2.json +0 -3059
  785. data/apis/rds/2013-02-12/examples-1.json +0 -5
  786. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  787. data/apis/rds/2013-02-12/smoke.json +0 -18
  788. data/apis/rds/2013-09-09/api-2.json +0 -3160
  789. data/apis/rds/2013-09-09/examples-1.json +0 -5
  790. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  791. data/apis/rds/2013-09-09/smoke.json +0 -18
  792. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  793. data/apis/rds/2014-09-01/api-2.json +0 -3273
  794. data/apis/rds/2014-09-01/examples-1.json +0 -5
  795. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  796. data/apis/rds/2014-09-01/smoke.json +0 -18
  797. data/apis/rds/2014-10-31/api-2.json +0 -7646
  798. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  799. data/apis/rds/2014-10-31/paginators-1.json +0 -164
  800. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  801. data/apis/rds/2014-10-31/smoke.json +0 -18
  802. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  803. data/apis/rds/2015-11-12/api-2.json +0 -5509
  804. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  805. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  806. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  807. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  808. data/apis/redshift/2012-12-01/api-2.json +0 -5263
  809. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  810. data/apis/redshift/2012-12-01/paginators-1.json +0 -106
  811. data/apis/redshift/2012-12-01/smoke.json +0 -18
  812. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  813. data/apis/rekognition/2016-06-27/api-2.json +0 -2659
  814. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  815. data/apis/rekognition/2016-06-27/paginators-1.json +0 -63
  816. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  817. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  818. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  819. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  820. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  821. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  822. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  823. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  824. data/apis/robomaker/2018-06-29/api-2.json +0 -2380
  825. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  826. data/apis/robomaker/2018-06-29/paginators-1.json +0 -46
  827. data/apis/route53/2013-04-01/api-2.json +0 -3780
  828. data/apis/route53/2013-04-01/examples-1.json +0 -762
  829. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  830. data/apis/route53/2013-04-01/smoke.json +0 -18
  831. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  832. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  833. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  834. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  835. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  836. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  837. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  838. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  839. data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
  840. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  841. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  842. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  843. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  844. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  845. data/apis/s3/2006-03-01/api-2.json +0 -6653
  846. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  847. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  848. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  849. data/apis/s3/2006-03-01/smoke.json +0 -11
  850. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  851. data/apis/s3control/2018-08-20/api-2.json +0 -1377
  852. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  853. data/apis/s3control/2018-08-20/paginators-1.json +0 -14
  854. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -367
  855. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  856. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  857. data/apis/sagemaker/2017-07-24/api-2.json +0 -9199
  858. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  859. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -196
  860. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  861. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  862. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  863. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  864. data/apis/schemas/2019-12-02/api-2.json +0 -2700
  865. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  866. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  867. data/apis/sdb/2009-04-15/api-2.json +0 -955
  868. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  869. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  870. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  871. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  872. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  873. data/apis/securityhub/2018-10-26/api-2.json +0 -2806
  874. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  875. data/apis/securityhub/2018-10-26/paginators-1.json +0 -54
  876. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1806
  877. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  878. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  879. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  880. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  881. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  882. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  883. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  884. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  885. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  886. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  887. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  888. data/apis/sesv2/2019-09-27/api-2.json +0 -2433
  889. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  890. data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
  891. data/apis/shield/2016-06-02/api-2.json +0 -968
  892. data/apis/shield/2016-06-02/examples-1.json +0 -5
  893. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  894. data/apis/shield/2016-06-02/smoke.json +0 -11
  895. data/apis/signer/2017-08-25/api-2.json +0 -817
  896. data/apis/signer/2017-08-25/examples-1.json +0 -5
  897. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  898. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  899. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  900. data/apis/sms/2016-10-24/api-2.json +0 -1366
  901. data/apis/sms/2016-10-24/examples-1.json +0 -5
  902. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  903. data/apis/sms/2016-10-24/smoke.json +0 -18
  904. data/apis/snowball/2016-06-30/api-2.json +0 -955
  905. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  906. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  907. data/apis/snowball/2016-06-30/smoke.json +0 -11
  908. data/apis/sns/2010-03-31/api-2.json +0 -1468
  909. data/apis/sns/2010-03-31/examples-1.json +0 -5
  910. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  911. data/apis/sns/2010-03-31/resources-1.json +0 -327
  912. data/apis/sns/2010-03-31/smoke.json +0 -19
  913. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  914. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  915. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  916. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  917. data/apis/sqs/2012-11-05/smoke.json +0 -18
  918. data/apis/ssm/2014-11-06/api-2.json +0 -9217
  919. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  920. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  921. data/apis/ssm/2014-11-06/smoke.json +0 -18
  922. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  923. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  924. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  925. data/apis/sso/2019-06-10/api-2.json +0 -281
  926. data/apis/sso/2019-06-10/examples-1.json +0 -5
  927. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  928. data/apis/states/2016-11-23/api-2.json +0 -1476
  929. data/apis/states/2016-11-23/examples-1.json +0 -5
  930. data/apis/states/2016-11-23/paginators-1.json +0 -28
  931. data/apis/states/2016-11-23/smoke.json +0 -11
  932. data/apis/storagegateway/2013-06-30/api-2.json +0 -3260
  933. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  934. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  935. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  936. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  937. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  938. data/apis/sts/2011-06-15/api-2.json +0 -598
  939. data/apis/sts/2011-06-15/examples-1.json +0 -271
  940. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  941. data/apis/sts/2011-06-15/smoke.json +0 -19
  942. data/apis/support/2013-04-15/api-2.json +0 -773
  943. data/apis/support/2013-04-15/examples-1.json +0 -5
  944. data/apis/support/2013-04-15/paginators-1.json +0 -25
  945. data/apis/support/2013-04-15/smoke.json +0 -22
  946. data/apis/swf/2012-01-25/api-2.json +0 -2792
  947. data/apis/swf/2012-01-25/examples-1.json +0 -5
  948. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  949. data/apis/textract/2018-06-27/api-2.json +0 -653
  950. data/apis/textract/2018-06-27/examples-1.json +0 -5
  951. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  952. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  953. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  954. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  955. data/apis/transcribe/2017-10-26/api-2.json +0 -740
  956. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  957. data/apis/transcribe/2017-10-26/paginators-1.json +0 -19
  958. data/apis/transfer/2018-11-05/api-2.json +0 -964
  959. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  960. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  961. data/apis/translate/2017-07-01/api-2.json +0 -658
  962. data/apis/translate/2017-07-01/examples-1.json +0 -5
  963. data/apis/translate/2017-07-01/paginators-1.json +0 -14
  964. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  965. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  966. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  967. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  968. data/apis/waf/2015-08-24/api-2.json +0 -3857
  969. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  970. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  971. data/apis/waf/2015-08-24/smoke.json +0 -21
  972. data/apis/wafv2/2019-07-29/api-2.json +0 -2418
  973. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  974. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  975. data/apis/wafv2/2019-07-29/smoke.json +0 -21
  976. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  977. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  978. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  979. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  980. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  981. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  982. data/apis/workmail/2017-10-01/api-2.json +0 -1918
  983. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  984. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  985. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  986. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  987. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  988. data/apis/workspaces/2015-04-08/api-2.json +0 -2029
  989. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  990. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  991. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  992. data/apis/xray/2016-04-12/api-2.json +0 -1352
  993. data/apis/xray/2016-04-12/examples-1.json +0 -5
  994. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  995. data/bin/aws.rb +0 -180
  996. data/endpoints.json +0 -5960
  997. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  998. data/lib/aws-sdk-core/acm.rb +0 -7
  999. data/lib/aws-sdk-core/acmpca.rb +0 -7
  1000. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  1001. data/lib/aws-sdk-core/amplify.rb +0 -6
  1002. data/lib/aws-sdk-core/api/builder.rb +0 -129
  1003. data/lib/aws-sdk-core/api/customizations.rb +0 -304
  1004. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  1005. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  1006. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  1007. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  1008. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  1009. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  1010. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  1011. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  1012. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  1013. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1014. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1015. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1016. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1017. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1018. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1019. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1020. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1021. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1022. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1023. data/lib/aws-sdk-core/appstream.rb +0 -7
  1024. data/lib/aws-sdk-core/appsync.rb +0 -6
  1025. data/lib/aws-sdk-core/athena.rb +0 -6
  1026. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1027. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1028. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1029. data/lib/aws-sdk-core/backup.rb +0 -6
  1030. data/lib/aws-sdk-core/batch.rb +0 -6
  1031. data/lib/aws-sdk-core/budgets.rb +0 -6
  1032. data/lib/aws-sdk-core/checksums.rb +0 -51
  1033. data/lib/aws-sdk-core/chime.rb +0 -6
  1034. data/lib/aws-sdk-core/client.rb +0 -72
  1035. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1036. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1037. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1038. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1039. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1040. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1041. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1042. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1043. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1044. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1045. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1046. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1047. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1048. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1049. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1050. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1051. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1052. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1053. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1054. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1055. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1056. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1057. data/lib/aws-sdk-core/codestar.rb +0 -6
  1058. data/lib/aws-sdk-core/codestarconnections.rb +0 -6
  1059. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1060. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1061. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1062. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1063. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1064. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1065. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1066. data/lib/aws-sdk-core/configservice.rb +0 -6
  1067. data/lib/aws-sdk-core/connect.rb +0 -6
  1068. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1069. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1070. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1071. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1072. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1073. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1074. data/lib/aws-sdk-core/datasync.rb +0 -6
  1075. data/lib/aws-sdk-core/dax.rb +0 -6
  1076. data/lib/aws-sdk-core/detective.rb +0 -6
  1077. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1078. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1079. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1080. data/lib/aws-sdk-core/dlm.rb +0 -6
  1081. data/lib/aws-sdk-core/docdb.rb +0 -7
  1082. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1083. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1084. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1085. data/lib/aws-sdk-core/ebs.rb +0 -6
  1086. data/lib/aws-sdk-core/ec2.rb +0 -8
  1087. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1088. data/lib/aws-sdk-core/ecr.rb +0 -7
  1089. data/lib/aws-sdk-core/ecs.rb +0 -7
  1090. data/lib/aws-sdk-core/efs.rb +0 -6
  1091. data/lib/aws-sdk-core/eks.rb +0 -7
  1092. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1093. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1094. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1095. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1096. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1097. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1098. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1099. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1100. data/lib/aws-sdk-core/emr.rb +0 -7
  1101. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1102. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1103. data/lib/aws-sdk-core/firehose.rb +0 -6
  1104. data/lib/aws-sdk-core/fms.rb +0 -6
  1105. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1106. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1107. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1108. data/lib/aws-sdk-core/fsx.rb +0 -6
  1109. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1110. data/lib/aws-sdk-core/glacier.rb +0 -8
  1111. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1112. data/lib/aws-sdk-core/glue.rb +0 -6
  1113. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1114. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1115. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1116. data/lib/aws-sdk-core/health.rb +0 -6
  1117. data/lib/aws-sdk-core/iam.rb +0 -8
  1118. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1119. data/lib/aws-sdk-core/importexport.rb +0 -5
  1120. data/lib/aws-sdk-core/inspector.rb +0 -6
  1121. data/lib/aws-sdk-core/iot.rb +0 -6
  1122. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1123. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1124. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1125. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1126. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1127. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1128. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1129. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1130. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1131. data/lib/aws-sdk-core/kafka.rb +0 -5
  1132. data/lib/aws-sdk-core/kendra.rb +0 -6
  1133. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1134. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1135. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1136. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1137. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1138. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1139. data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
  1140. data/lib/aws-sdk-core/kms.rb +0 -6
  1141. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1142. data/lib/aws-sdk-core/lambda.rb +0 -7
  1143. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1144. data/lib/aws-sdk-core/lex.rb +0 -6
  1145. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1146. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1147. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1148. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1149. data/lib/aws-sdk-core/macie.rb +0 -6
  1150. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1151. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1152. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1153. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1154. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1155. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1156. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1157. data/lib/aws-sdk-core/medialive.rb +0 -6
  1158. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1159. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1160. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1161. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1162. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1163. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1164. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1165. data/lib/aws-sdk-core/mobile.rb +0 -6
  1166. data/lib/aws-sdk-core/mq.rb +0 -5
  1167. data/lib/aws-sdk-core/mturk.rb +0 -6
  1168. data/lib/aws-sdk-core/neptune.rb +0 -7
  1169. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1170. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1171. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1172. data/lib/aws-sdk-core/organizations.rb +0 -6
  1173. data/lib/aws-sdk-core/outposts.rb +0 -6
  1174. data/lib/aws-sdk-core/partitions.rb +0 -174
  1175. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1176. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1177. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1178. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1179. data/lib/aws-sdk-core/personalize.rb +0 -6
  1180. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1181. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1182. data/lib/aws-sdk-core/pi.rb +0 -6
  1183. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1184. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1185. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1186. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1187. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1188. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1189. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1190. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1191. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1192. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1193. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1194. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1195. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1196. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1197. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1198. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1199. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1200. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1201. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1202. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1203. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1204. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1205. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1206. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1207. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1208. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1209. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1210. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1211. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1212. data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
  1213. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1214. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1215. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1216. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1217. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1218. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1219. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1220. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1221. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1222. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1223. data/lib/aws-sdk-core/polly.rb +0 -14
  1224. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1225. data/lib/aws-sdk-core/pricing.rb +0 -6
  1226. data/lib/aws-sdk-core/qldb.rb +0 -6
  1227. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1228. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1229. data/lib/aws-sdk-core/ram.rb +0 -6
  1230. data/lib/aws-sdk-core/rds.rb +0 -16
  1231. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1232. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1233. data/lib/aws-sdk-core/redshift.rb +0 -7
  1234. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1235. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1236. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1237. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1238. data/lib/aws-sdk-core/route53.rb +0 -7
  1239. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1240. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1241. data/lib/aws-sdk-core/s3.rb +0 -26
  1242. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1243. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1244. data/lib/aws-sdk-core/s3control.rb +0 -6
  1245. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1246. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1247. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1248. data/lib/aws-sdk-core/schemas.rb +0 -6
  1249. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1250. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1251. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1252. data/lib/aws-sdk-core/service.rb +0 -4
  1253. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1254. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1255. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1256. data/lib/aws-sdk-core/ses.rb +0 -7
  1257. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1258. data/lib/aws-sdk-core/shield.rb +0 -6
  1259. data/lib/aws-sdk-core/signer.rb +0 -7
  1260. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1261. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1262. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1263. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1264. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1265. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1266. data/lib/aws-sdk-core/sms.rb +0 -6
  1267. data/lib/aws-sdk-core/snowball.rb +0 -6
  1268. data/lib/aws-sdk-core/sns.rb +0 -7
  1269. data/lib/aws-sdk-core/sqs.rb +0 -7
  1270. data/lib/aws-sdk-core/ssm.rb +0 -6
  1271. data/lib/aws-sdk-core/sso.rb +0 -6
  1272. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1273. data/lib/aws-sdk-core/states.rb +0 -6
  1274. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1275. data/lib/aws-sdk-core/sts.rb +0 -6
  1276. data/lib/aws-sdk-core/support.rb +0 -6
  1277. data/lib/aws-sdk-core/swf.rb +0 -6
  1278. data/lib/aws-sdk-core/textract.rb +0 -6
  1279. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1280. data/lib/aws-sdk-core/transfer.rb +0 -6
  1281. data/lib/aws-sdk-core/translate.rb +0 -6
  1282. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1283. data/lib/aws-sdk-core/version.rb +0 -3
  1284. data/lib/aws-sdk-core/waf.rb +0 -6
  1285. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1286. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1287. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1288. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1289. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1290. data/lib/aws-sdk-core/worklink.rb +0 -6
  1291. data/lib/aws-sdk-core/workmail.rb +0 -6
  1292. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1293. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1294. data/lib/aws-sdk-core/xray.rb +0 -6
  1295. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1296. data/service-models.json +0 -881
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,99 +0,0 @@
1
- {
2
- "pagination": {
3
- "ListAppliedSchemaArns": {
4
- "input_token": "NextToken",
5
- "output_token": "NextToken",
6
- "limit_key": "MaxResults"
7
- },
8
- "ListAttachedIndices": {
9
- "input_token": "NextToken",
10
- "output_token": "NextToken",
11
- "limit_key": "MaxResults"
12
- },
13
- "ListDevelopmentSchemaArns": {
14
- "input_token": "NextToken",
15
- "output_token": "NextToken",
16
- "limit_key": "MaxResults"
17
- },
18
- "ListDirectories": {
19
- "input_token": "NextToken",
20
- "output_token": "NextToken",
21
- "limit_key": "MaxResults"
22
- },
23
- "ListFacetAttributes": {
24
- "input_token": "NextToken",
25
- "output_token": "NextToken",
26
- "limit_key": "MaxResults"
27
- },
28
- "ListFacetNames": {
29
- "input_token": "NextToken",
30
- "output_token": "NextToken",
31
- "limit_key": "MaxResults"
32
- },
33
- "ListIndex": {
34
- "input_token": "NextToken",
35
- "output_token": "NextToken",
36
- "limit_key": "MaxResults"
37
- },
38
- "ListManagedSchemaArns": {
39
- "input_token": "NextToken",
40
- "output_token": "NextToken",
41
- "limit_key": "MaxResults"
42
- },
43
- "ListObjectAttributes": {
44
- "input_token": "NextToken",
45
- "output_token": "NextToken",
46
- "limit_key": "MaxResults"
47
- },
48
- "ListObjectChildren": {
49
- "input_token": "NextToken",
50
- "output_token": "NextToken",
51
- "limit_key": "MaxResults"
52
- },
53
- "ListObjectParentPaths": {
54
- "input_token": "NextToken",
55
- "output_token": "NextToken",
56
- "limit_key": "MaxResults"
57
- },
58
- "ListObjectParents": {
59
- "input_token": "NextToken",
60
- "output_token": "NextToken",
61
- "limit_key": "MaxResults"
62
- },
63
- "ListObjectPolicies": {
64
- "input_token": "NextToken",
65
- "output_token": "NextToken",
66
- "limit_key": "MaxResults"
67
- },
68
- "ListPolicyAttachments": {
69
- "input_token": "NextToken",
70
- "output_token": "NextToken",
71
- "limit_key": "MaxResults"
72
- },
73
- "ListPublishedSchemaArns": {
74
- "input_token": "NextToken",
75
- "output_token": "NextToken",
76
- "limit_key": "MaxResults"
77
- },
78
- "ListTagsForResource": {
79
- "input_token": "NextToken",
80
- "output_token": "NextToken",
81
- "limit_key": "MaxResults"
82
- },
83
- "ListTypedLinkFacetAttributes": {
84
- "input_token": "NextToken",
85
- "output_token": "NextToken",
86
- "limit_key": "MaxResults"
87
- },
88
- "ListTypedLinkFacetNames": {
89
- "input_token": "NextToken",
90
- "output_token": "NextToken",
91
- "limit_key": "MaxResults"
92
- },
93
- "LookupPolicy": {
94
- "input_token": "NextToken",
95
- "output_token": "NextToken",
96
- "limit_key": "MaxResults"
97
- }
98
- }
99
- }
@@ -1,3438 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2010-05-15",
5
- "endpointPrefix":"cloudformation",
6
- "protocol":"query",
7
- "serviceFullName":"AWS CloudFormation",
8
- "serviceId":"CloudFormation",
9
- "signatureVersion":"v4",
10
- "uid":"cloudformation-2010-05-15",
11
- "xmlNamespace":"http://cloudformation.amazonaws.com/doc/2010-05-15/"
12
- },
13
- "operations":{
14
- "CancelUpdateStack":{
15
- "name":"CancelUpdateStack",
16
- "http":{
17
- "method":"POST",
18
- "requestUri":"/"
19
- },
20
- "input":{"shape":"CancelUpdateStackInput"},
21
- "errors":[
22
- {"shape":"TokenAlreadyExistsException"}
23
- ]
24
- },
25
- "ContinueUpdateRollback":{
26
- "name":"ContinueUpdateRollback",
27
- "http":{
28
- "method":"POST",
29
- "requestUri":"/"
30
- },
31
- "input":{"shape":"ContinueUpdateRollbackInput"},
32
- "output":{
33
- "shape":"ContinueUpdateRollbackOutput",
34
- "resultWrapper":"ContinueUpdateRollbackResult"
35
- },
36
- "errors":[
37
- {"shape":"TokenAlreadyExistsException"}
38
- ]
39
- },
40
- "CreateChangeSet":{
41
- "name":"CreateChangeSet",
42
- "http":{
43
- "method":"POST",
44
- "requestUri":"/"
45
- },
46
- "input":{"shape":"CreateChangeSetInput"},
47
- "output":{
48
- "shape":"CreateChangeSetOutput",
49
- "resultWrapper":"CreateChangeSetResult"
50
- },
51
- "errors":[
52
- {"shape":"AlreadyExistsException"},
53
- {"shape":"InsufficientCapabilitiesException"},
54
- {"shape":"LimitExceededException"}
55
- ]
56
- },
57
- "CreateStack":{
58
- "name":"CreateStack",
59
- "http":{
60
- "method":"POST",
61
- "requestUri":"/"
62
- },
63
- "input":{"shape":"CreateStackInput"},
64
- "output":{
65
- "shape":"CreateStackOutput",
66
- "resultWrapper":"CreateStackResult"
67
- },
68
- "errors":[
69
- {"shape":"LimitExceededException"},
70
- {"shape":"AlreadyExistsException"},
71
- {"shape":"TokenAlreadyExistsException"},
72
- {"shape":"InsufficientCapabilitiesException"}
73
- ]
74
- },
75
- "CreateStackInstances":{
76
- "name":"CreateStackInstances",
77
- "http":{
78
- "method":"POST",
79
- "requestUri":"/"
80
- },
81
- "input":{"shape":"CreateStackInstancesInput"},
82
- "output":{
83
- "shape":"CreateStackInstancesOutput",
84
- "resultWrapper":"CreateStackInstancesResult"
85
- },
86
- "errors":[
87
- {"shape":"StackSetNotFoundException"},
88
- {"shape":"OperationInProgressException"},
89
- {"shape":"OperationIdAlreadyExistsException"},
90
- {"shape":"StaleRequestException"},
91
- {"shape":"InvalidOperationException"},
92
- {"shape":"LimitExceededException"}
93
- ]
94
- },
95
- "CreateStackSet":{
96
- "name":"CreateStackSet",
97
- "http":{
98
- "method":"POST",
99
- "requestUri":"/"
100
- },
101
- "input":{"shape":"CreateStackSetInput"},
102
- "output":{
103
- "shape":"CreateStackSetOutput",
104
- "resultWrapper":"CreateStackSetResult"
105
- },
106
- "errors":[
107
- {"shape":"NameAlreadyExistsException"},
108
- {"shape":"CreatedButModifiedException"},
109
- {"shape":"LimitExceededException"}
110
- ]
111
- },
112
- "DeleteChangeSet":{
113
- "name":"DeleteChangeSet",
114
- "http":{
115
- "method":"POST",
116
- "requestUri":"/"
117
- },
118
- "input":{"shape":"DeleteChangeSetInput"},
119
- "output":{
120
- "shape":"DeleteChangeSetOutput",
121
- "resultWrapper":"DeleteChangeSetResult"
122
- },
123
- "errors":[
124
- {"shape":"InvalidChangeSetStatusException"}
125
- ]
126
- },
127
- "DeleteStack":{
128
- "name":"DeleteStack",
129
- "http":{
130
- "method":"POST",
131
- "requestUri":"/"
132
- },
133
- "input":{"shape":"DeleteStackInput"},
134
- "errors":[
135
- {"shape":"TokenAlreadyExistsException"}
136
- ]
137
- },
138
- "DeleteStackInstances":{
139
- "name":"DeleteStackInstances",
140
- "http":{
141
- "method":"POST",
142
- "requestUri":"/"
143
- },
144
- "input":{"shape":"DeleteStackInstancesInput"},
145
- "output":{
146
- "shape":"DeleteStackInstancesOutput",
147
- "resultWrapper":"DeleteStackInstancesResult"
148
- },
149
- "errors":[
150
- {"shape":"StackSetNotFoundException"},
151
- {"shape":"OperationInProgressException"},
152
- {"shape":"OperationIdAlreadyExistsException"},
153
- {"shape":"StaleRequestException"},
154
- {"shape":"InvalidOperationException"}
155
- ]
156
- },
157
- "DeleteStackSet":{
158
- "name":"DeleteStackSet",
159
- "http":{
160
- "method":"POST",
161
- "requestUri":"/"
162
- },
163
- "input":{"shape":"DeleteStackSetInput"},
164
- "output":{
165
- "shape":"DeleteStackSetOutput",
166
- "resultWrapper":"DeleteStackSetResult"
167
- },
168
- "errors":[
169
- {"shape":"StackSetNotEmptyException"},
170
- {"shape":"OperationInProgressException"}
171
- ]
172
- },
173
- "DeregisterType":{
174
- "name":"DeregisterType",
175
- "http":{
176
- "method":"POST",
177
- "requestUri":"/"
178
- },
179
- "input":{"shape":"DeregisterTypeInput"},
180
- "output":{
181
- "shape":"DeregisterTypeOutput",
182
- "resultWrapper":"DeregisterTypeResult"
183
- },
184
- "errors":[
185
- {"shape":"CFNRegistryException"},
186
- {"shape":"TypeNotFoundException"}
187
- ],
188
- "idempotent":true
189
- },
190
- "DescribeAccountLimits":{
191
- "name":"DescribeAccountLimits",
192
- "http":{
193
- "method":"POST",
194
- "requestUri":"/"
195
- },
196
- "input":{"shape":"DescribeAccountLimitsInput"},
197
- "output":{
198
- "shape":"DescribeAccountLimitsOutput",
199
- "resultWrapper":"DescribeAccountLimitsResult"
200
- }
201
- },
202
- "DescribeChangeSet":{
203
- "name":"DescribeChangeSet",
204
- "http":{
205
- "method":"POST",
206
- "requestUri":"/"
207
- },
208
- "input":{"shape":"DescribeChangeSetInput"},
209
- "output":{
210
- "shape":"DescribeChangeSetOutput",
211
- "resultWrapper":"DescribeChangeSetResult"
212
- },
213
- "errors":[
214
- {"shape":"ChangeSetNotFoundException"}
215
- ]
216
- },
217
- "DescribeStackDriftDetectionStatus":{
218
- "name":"DescribeStackDriftDetectionStatus",
219
- "http":{
220
- "method":"POST",
221
- "requestUri":"/"
222
- },
223
- "input":{"shape":"DescribeStackDriftDetectionStatusInput"},
224
- "output":{
225
- "shape":"DescribeStackDriftDetectionStatusOutput",
226
- "resultWrapper":"DescribeStackDriftDetectionStatusResult"
227
- }
228
- },
229
- "DescribeStackEvents":{
230
- "name":"DescribeStackEvents",
231
- "http":{
232
- "method":"POST",
233
- "requestUri":"/"
234
- },
235
- "input":{"shape":"DescribeStackEventsInput"},
236
- "output":{
237
- "shape":"DescribeStackEventsOutput",
238
- "resultWrapper":"DescribeStackEventsResult"
239
- }
240
- },
241
- "DescribeStackInstance":{
242
- "name":"DescribeStackInstance",
243
- "http":{
244
- "method":"POST",
245
- "requestUri":"/"
246
- },
247
- "input":{"shape":"DescribeStackInstanceInput"},
248
- "output":{
249
- "shape":"DescribeStackInstanceOutput",
250
- "resultWrapper":"DescribeStackInstanceResult"
251
- },
252
- "errors":[
253
- {"shape":"StackSetNotFoundException"},
254
- {"shape":"StackInstanceNotFoundException"}
255
- ]
256
- },
257
- "DescribeStackResource":{
258
- "name":"DescribeStackResource",
259
- "http":{
260
- "method":"POST",
261
- "requestUri":"/"
262
- },
263
- "input":{"shape":"DescribeStackResourceInput"},
264
- "output":{
265
- "shape":"DescribeStackResourceOutput",
266
- "resultWrapper":"DescribeStackResourceResult"
267
- }
268
- },
269
- "DescribeStackResourceDrifts":{
270
- "name":"DescribeStackResourceDrifts",
271
- "http":{
272
- "method":"POST",
273
- "requestUri":"/"
274
- },
275
- "input":{"shape":"DescribeStackResourceDriftsInput"},
276
- "output":{
277
- "shape":"DescribeStackResourceDriftsOutput",
278
- "resultWrapper":"DescribeStackResourceDriftsResult"
279
- }
280
- },
281
- "DescribeStackResources":{
282
- "name":"DescribeStackResources",
283
- "http":{
284
- "method":"POST",
285
- "requestUri":"/"
286
- },
287
- "input":{"shape":"DescribeStackResourcesInput"},
288
- "output":{
289
- "shape":"DescribeStackResourcesOutput",
290
- "resultWrapper":"DescribeStackResourcesResult"
291
- }
292
- },
293
- "DescribeStackSet":{
294
- "name":"DescribeStackSet",
295
- "http":{
296
- "method":"POST",
297
- "requestUri":"/"
298
- },
299
- "input":{"shape":"DescribeStackSetInput"},
300
- "output":{
301
- "shape":"DescribeStackSetOutput",
302
- "resultWrapper":"DescribeStackSetResult"
303
- },
304
- "errors":[
305
- {"shape":"StackSetNotFoundException"}
306
- ]
307
- },
308
- "DescribeStackSetOperation":{
309
- "name":"DescribeStackSetOperation",
310
- "http":{
311
- "method":"POST",
312
- "requestUri":"/"
313
- },
314
- "input":{"shape":"DescribeStackSetOperationInput"},
315
- "output":{
316
- "shape":"DescribeStackSetOperationOutput",
317
- "resultWrapper":"DescribeStackSetOperationResult"
318
- },
319
- "errors":[
320
- {"shape":"StackSetNotFoundException"},
321
- {"shape":"OperationNotFoundException"}
322
- ]
323
- },
324
- "DescribeStacks":{
325
- "name":"DescribeStacks",
326
- "http":{
327
- "method":"POST",
328
- "requestUri":"/"
329
- },
330
- "input":{"shape":"DescribeStacksInput"},
331
- "output":{
332
- "shape":"DescribeStacksOutput",
333
- "resultWrapper":"DescribeStacksResult"
334
- }
335
- },
336
- "DescribeType":{
337
- "name":"DescribeType",
338
- "http":{
339
- "method":"POST",
340
- "requestUri":"/"
341
- },
342
- "input":{"shape":"DescribeTypeInput"},
343
- "output":{
344
- "shape":"DescribeTypeOutput",
345
- "resultWrapper":"DescribeTypeResult"
346
- },
347
- "errors":[
348
- {"shape":"CFNRegistryException"},
349
- {"shape":"TypeNotFoundException"}
350
- ],
351
- "idempotent":true
352
- },
353
- "DescribeTypeRegistration":{
354
- "name":"DescribeTypeRegistration",
355
- "http":{
356
- "method":"POST",
357
- "requestUri":"/"
358
- },
359
- "input":{"shape":"DescribeTypeRegistrationInput"},
360
- "output":{
361
- "shape":"DescribeTypeRegistrationOutput",
362
- "resultWrapper":"DescribeTypeRegistrationResult"
363
- },
364
- "errors":[
365
- {"shape":"CFNRegistryException"}
366
- ],
367
- "idempotent":true
368
- },
369
- "DetectStackDrift":{
370
- "name":"DetectStackDrift",
371
- "http":{
372
- "method":"POST",
373
- "requestUri":"/"
374
- },
375
- "input":{"shape":"DetectStackDriftInput"},
376
- "output":{
377
- "shape":"DetectStackDriftOutput",
378
- "resultWrapper":"DetectStackDriftResult"
379
- }
380
- },
381
- "DetectStackResourceDrift":{
382
- "name":"DetectStackResourceDrift",
383
- "http":{
384
- "method":"POST",
385
- "requestUri":"/"
386
- },
387
- "input":{"shape":"DetectStackResourceDriftInput"},
388
- "output":{
389
- "shape":"DetectStackResourceDriftOutput",
390
- "resultWrapper":"DetectStackResourceDriftResult"
391
- }
392
- },
393
- "DetectStackSetDrift":{
394
- "name":"DetectStackSetDrift",
395
- "http":{
396
- "method":"POST",
397
- "requestUri":"/"
398
- },
399
- "input":{"shape":"DetectStackSetDriftInput"},
400
- "output":{
401
- "shape":"DetectStackSetDriftOutput",
402
- "resultWrapper":"DetectStackSetDriftResult"
403
- },
404
- "errors":[
405
- {"shape":"InvalidOperationException"},
406
- {"shape":"OperationInProgressException"},
407
- {"shape":"StackSetNotFoundException"}
408
- ]
409
- },
410
- "EstimateTemplateCost":{
411
- "name":"EstimateTemplateCost",
412
- "http":{
413
- "method":"POST",
414
- "requestUri":"/"
415
- },
416
- "input":{"shape":"EstimateTemplateCostInput"},
417
- "output":{
418
- "shape":"EstimateTemplateCostOutput",
419
- "resultWrapper":"EstimateTemplateCostResult"
420
- }
421
- },
422
- "ExecuteChangeSet":{
423
- "name":"ExecuteChangeSet",
424
- "http":{
425
- "method":"POST",
426
- "requestUri":"/"
427
- },
428
- "input":{"shape":"ExecuteChangeSetInput"},
429
- "output":{
430
- "shape":"ExecuteChangeSetOutput",
431
- "resultWrapper":"ExecuteChangeSetResult"
432
- },
433
- "errors":[
434
- {"shape":"InvalidChangeSetStatusException"},
435
- {"shape":"ChangeSetNotFoundException"},
436
- {"shape":"InsufficientCapabilitiesException"},
437
- {"shape":"TokenAlreadyExistsException"}
438
- ]
439
- },
440
- "GetStackPolicy":{
441
- "name":"GetStackPolicy",
442
- "http":{
443
- "method":"POST",
444
- "requestUri":"/"
445
- },
446
- "input":{"shape":"GetStackPolicyInput"},
447
- "output":{
448
- "shape":"GetStackPolicyOutput",
449
- "resultWrapper":"GetStackPolicyResult"
450
- }
451
- },
452
- "GetTemplate":{
453
- "name":"GetTemplate",
454
- "http":{
455
- "method":"POST",
456
- "requestUri":"/"
457
- },
458
- "input":{"shape":"GetTemplateInput"},
459
- "output":{
460
- "shape":"GetTemplateOutput",
461
- "resultWrapper":"GetTemplateResult"
462
- },
463
- "errors":[
464
- {"shape":"ChangeSetNotFoundException"}
465
- ]
466
- },
467
- "GetTemplateSummary":{
468
- "name":"GetTemplateSummary",
469
- "http":{
470
- "method":"POST",
471
- "requestUri":"/"
472
- },
473
- "input":{"shape":"GetTemplateSummaryInput"},
474
- "output":{
475
- "shape":"GetTemplateSummaryOutput",
476
- "resultWrapper":"GetTemplateSummaryResult"
477
- },
478
- "errors":[
479
- {"shape":"StackSetNotFoundException"}
480
- ]
481
- },
482
- "ListChangeSets":{
483
- "name":"ListChangeSets",
484
- "http":{
485
- "method":"POST",
486
- "requestUri":"/"
487
- },
488
- "input":{"shape":"ListChangeSetsInput"},
489
- "output":{
490
- "shape":"ListChangeSetsOutput",
491
- "resultWrapper":"ListChangeSetsResult"
492
- }
493
- },
494
- "ListExports":{
495
- "name":"ListExports",
496
- "http":{
497
- "method":"POST",
498
- "requestUri":"/"
499
- },
500
- "input":{"shape":"ListExportsInput"},
501
- "output":{
502
- "shape":"ListExportsOutput",
503
- "resultWrapper":"ListExportsResult"
504
- }
505
- },
506
- "ListImports":{
507
- "name":"ListImports",
508
- "http":{
509
- "method":"POST",
510
- "requestUri":"/"
511
- },
512
- "input":{"shape":"ListImportsInput"},
513
- "output":{
514
- "shape":"ListImportsOutput",
515
- "resultWrapper":"ListImportsResult"
516
- }
517
- },
518
- "ListStackInstances":{
519
- "name":"ListStackInstances",
520
- "http":{
521
- "method":"POST",
522
- "requestUri":"/"
523
- },
524
- "input":{"shape":"ListStackInstancesInput"},
525
- "output":{
526
- "shape":"ListStackInstancesOutput",
527
- "resultWrapper":"ListStackInstancesResult"
528
- },
529
- "errors":[
530
- {"shape":"StackSetNotFoundException"}
531
- ]
532
- },
533
- "ListStackResources":{
534
- "name":"ListStackResources",
535
- "http":{
536
- "method":"POST",
537
- "requestUri":"/"
538
- },
539
- "input":{"shape":"ListStackResourcesInput"},
540
- "output":{
541
- "shape":"ListStackResourcesOutput",
542
- "resultWrapper":"ListStackResourcesResult"
543
- }
544
- },
545
- "ListStackSetOperationResults":{
546
- "name":"ListStackSetOperationResults",
547
- "http":{
548
- "method":"POST",
549
- "requestUri":"/"
550
- },
551
- "input":{"shape":"ListStackSetOperationResultsInput"},
552
- "output":{
553
- "shape":"ListStackSetOperationResultsOutput",
554
- "resultWrapper":"ListStackSetOperationResultsResult"
555
- },
556
- "errors":[
557
- {"shape":"StackSetNotFoundException"},
558
- {"shape":"OperationNotFoundException"}
559
- ]
560
- },
561
- "ListStackSetOperations":{
562
- "name":"ListStackSetOperations",
563
- "http":{
564
- "method":"POST",
565
- "requestUri":"/"
566
- },
567
- "input":{"shape":"ListStackSetOperationsInput"},
568
- "output":{
569
- "shape":"ListStackSetOperationsOutput",
570
- "resultWrapper":"ListStackSetOperationsResult"
571
- },
572
- "errors":[
573
- {"shape":"StackSetNotFoundException"}
574
- ]
575
- },
576
- "ListStackSets":{
577
- "name":"ListStackSets",
578
- "http":{
579
- "method":"POST",
580
- "requestUri":"/"
581
- },
582
- "input":{"shape":"ListStackSetsInput"},
583
- "output":{
584
- "shape":"ListStackSetsOutput",
585
- "resultWrapper":"ListStackSetsResult"
586
- }
587
- },
588
- "ListStacks":{
589
- "name":"ListStacks",
590
- "http":{
591
- "method":"POST",
592
- "requestUri":"/"
593
- },
594
- "input":{"shape":"ListStacksInput"},
595
- "output":{
596
- "shape":"ListStacksOutput",
597
- "resultWrapper":"ListStacksResult"
598
- }
599
- },
600
- "ListTypeRegistrations":{
601
- "name":"ListTypeRegistrations",
602
- "http":{
603
- "method":"POST",
604
- "requestUri":"/"
605
- },
606
- "input":{"shape":"ListTypeRegistrationsInput"},
607
- "output":{
608
- "shape":"ListTypeRegistrationsOutput",
609
- "resultWrapper":"ListTypeRegistrationsResult"
610
- },
611
- "errors":[
612
- {"shape":"CFNRegistryException"}
613
- ],
614
- "idempotent":true
615
- },
616
- "ListTypeVersions":{
617
- "name":"ListTypeVersions",
618
- "http":{
619
- "method":"POST",
620
- "requestUri":"/"
621
- },
622
- "input":{"shape":"ListTypeVersionsInput"},
623
- "output":{
624
- "shape":"ListTypeVersionsOutput",
625
- "resultWrapper":"ListTypeVersionsResult"
626
- },
627
- "errors":[
628
- {"shape":"CFNRegistryException"}
629
- ],
630
- "idempotent":true
631
- },
632
- "ListTypes":{
633
- "name":"ListTypes",
634
- "http":{
635
- "method":"POST",
636
- "requestUri":"/"
637
- },
638
- "input":{"shape":"ListTypesInput"},
639
- "output":{
640
- "shape":"ListTypesOutput",
641
- "resultWrapper":"ListTypesResult"
642
- },
643
- "errors":[
644
- {"shape":"CFNRegistryException"}
645
- ],
646
- "idempotent":true
647
- },
648
- "RecordHandlerProgress":{
649
- "name":"RecordHandlerProgress",
650
- "http":{
651
- "method":"POST",
652
- "requestUri":"/"
653
- },
654
- "input":{"shape":"RecordHandlerProgressInput"},
655
- "output":{
656
- "shape":"RecordHandlerProgressOutput",
657
- "resultWrapper":"RecordHandlerProgressResult"
658
- },
659
- "errors":[
660
- {"shape":"InvalidStateTransitionException"},
661
- {"shape":"OperationStatusCheckFailedException"}
662
- ],
663
- "idempotent":true
664
- },
665
- "RegisterType":{
666
- "name":"RegisterType",
667
- "http":{
668
- "method":"POST",
669
- "requestUri":"/"
670
- },
671
- "input":{"shape":"RegisterTypeInput"},
672
- "output":{
673
- "shape":"RegisterTypeOutput",
674
- "resultWrapper":"RegisterTypeResult"
675
- },
676
- "errors":[
677
- {"shape":"CFNRegistryException"}
678
- ],
679
- "idempotent":true
680
- },
681
- "SetStackPolicy":{
682
- "name":"SetStackPolicy",
683
- "http":{
684
- "method":"POST",
685
- "requestUri":"/"
686
- },
687
- "input":{"shape":"SetStackPolicyInput"}
688
- },
689
- "SetTypeDefaultVersion":{
690
- "name":"SetTypeDefaultVersion",
691
- "http":{
692
- "method":"POST",
693
- "requestUri":"/"
694
- },
695
- "input":{"shape":"SetTypeDefaultVersionInput"},
696
- "output":{
697
- "shape":"SetTypeDefaultVersionOutput",
698
- "resultWrapper":"SetTypeDefaultVersionResult"
699
- },
700
- "errors":[
701
- {"shape":"CFNRegistryException"},
702
- {"shape":"TypeNotFoundException"}
703
- ],
704
- "idempotent":true
705
- },
706
- "SignalResource":{
707
- "name":"SignalResource",
708
- "http":{
709
- "method":"POST",
710
- "requestUri":"/"
711
- },
712
- "input":{"shape":"SignalResourceInput"}
713
- },
714
- "StopStackSetOperation":{
715
- "name":"StopStackSetOperation",
716
- "http":{
717
- "method":"POST",
718
- "requestUri":"/"
719
- },
720
- "input":{"shape":"StopStackSetOperationInput"},
721
- "output":{
722
- "shape":"StopStackSetOperationOutput",
723
- "resultWrapper":"StopStackSetOperationResult"
724
- },
725
- "errors":[
726
- {"shape":"StackSetNotFoundException"},
727
- {"shape":"OperationNotFoundException"},
728
- {"shape":"InvalidOperationException"}
729
- ]
730
- },
731
- "UpdateStack":{
732
- "name":"UpdateStack",
733
- "http":{
734
- "method":"POST",
735
- "requestUri":"/"
736
- },
737
- "input":{"shape":"UpdateStackInput"},
738
- "output":{
739
- "shape":"UpdateStackOutput",
740
- "resultWrapper":"UpdateStackResult"
741
- },
742
- "errors":[
743
- {"shape":"InsufficientCapabilitiesException"},
744
- {"shape":"TokenAlreadyExistsException"}
745
- ]
746
- },
747
- "UpdateStackInstances":{
748
- "name":"UpdateStackInstances",
749
- "http":{
750
- "method":"POST",
751
- "requestUri":"/"
752
- },
753
- "input":{"shape":"UpdateStackInstancesInput"},
754
- "output":{
755
- "shape":"UpdateStackInstancesOutput",
756
- "resultWrapper":"UpdateStackInstancesResult"
757
- },
758
- "errors":[
759
- {"shape":"StackSetNotFoundException"},
760
- {"shape":"StackInstanceNotFoundException"},
761
- {"shape":"OperationInProgressException"},
762
- {"shape":"OperationIdAlreadyExistsException"},
763
- {"shape":"StaleRequestException"},
764
- {"shape":"InvalidOperationException"}
765
- ]
766
- },
767
- "UpdateStackSet":{
768
- "name":"UpdateStackSet",
769
- "http":{
770
- "method":"POST",
771
- "requestUri":"/"
772
- },
773
- "input":{"shape":"UpdateStackSetInput"},
774
- "output":{
775
- "shape":"UpdateStackSetOutput",
776
- "resultWrapper":"UpdateStackSetResult"
777
- },
778
- "errors":[
779
- {"shape":"StackSetNotFoundException"},
780
- {"shape":"OperationInProgressException"},
781
- {"shape":"OperationIdAlreadyExistsException"},
782
- {"shape":"StaleRequestException"},
783
- {"shape":"InvalidOperationException"},
784
- {"shape":"StackInstanceNotFoundException"}
785
- ]
786
- },
787
- "UpdateTerminationProtection":{
788
- "name":"UpdateTerminationProtection",
789
- "http":{
790
- "method":"POST",
791
- "requestUri":"/"
792
- },
793
- "input":{"shape":"UpdateTerminationProtectionInput"},
794
- "output":{
795
- "shape":"UpdateTerminationProtectionOutput",
796
- "resultWrapper":"UpdateTerminationProtectionResult"
797
- }
798
- },
799
- "ValidateTemplate":{
800
- "name":"ValidateTemplate",
801
- "http":{
802
- "method":"POST",
803
- "requestUri":"/"
804
- },
805
- "input":{"shape":"ValidateTemplateInput"},
806
- "output":{
807
- "shape":"ValidateTemplateOutput",
808
- "resultWrapper":"ValidateTemplateResult"
809
- }
810
- }
811
- },
812
- "shapes":{
813
- "Account":{
814
- "type":"string",
815
- "pattern":"^[0-9]{12}$"
816
- },
817
- "AccountGateResult":{
818
- "type":"structure",
819
- "members":{
820
- "Status":{"shape":"AccountGateStatus"},
821
- "StatusReason":{"shape":"AccountGateStatusReason"}
822
- }
823
- },
824
- "AccountGateStatus":{
825
- "type":"string",
826
- "enum":[
827
- "SUCCEEDED",
828
- "FAILED",
829
- "SKIPPED"
830
- ]
831
- },
832
- "AccountGateStatusReason":{"type":"string"},
833
- "AccountLimit":{
834
- "type":"structure",
835
- "members":{
836
- "Name":{"shape":"LimitName"},
837
- "Value":{"shape":"LimitValue"}
838
- }
839
- },
840
- "AccountLimitList":{
841
- "type":"list",
842
- "member":{"shape":"AccountLimit"}
843
- },
844
- "AccountList":{
845
- "type":"list",
846
- "member":{"shape":"Account"}
847
- },
848
- "AllowedValue":{"type":"string"},
849
- "AllowedValues":{
850
- "type":"list",
851
- "member":{"shape":"AllowedValue"}
852
- },
853
- "AlreadyExistsException":{
854
- "type":"structure",
855
- "members":{
856
- },
857
- "error":{
858
- "code":"AlreadyExistsException",
859
- "httpStatusCode":400,
860
- "senderFault":true
861
- },
862
- "exception":true
863
- },
864
- "Arn":{"type":"string"},
865
- "AutoDeployment":{
866
- "type":"structure",
867
- "members":{
868
- "Enabled":{"shape":"AutoDeploymentNullable"},
869
- "RetainStacksOnAccountRemoval":{"shape":"RetainStacksOnAccountRemovalNullable"}
870
- }
871
- },
872
- "AutoDeploymentNullable":{"type":"boolean"},
873
- "BoxedInteger":{
874
- "type":"integer",
875
- "box":true
876
- },
877
- "BoxedMaxResults":{
878
- "type":"integer",
879
- "box":true,
880
- "max":100,
881
- "min":1
882
- },
883
- "CFNRegistryException":{
884
- "type":"structure",
885
- "members":{
886
- "Message":{"shape":"ErrorMessage"}
887
- },
888
- "error":{
889
- "code":"CFNRegistryException",
890
- "httpStatusCode":400,
891
- "senderFault":true
892
- },
893
- "exception":true
894
- },
895
- "CancelUpdateStackInput":{
896
- "type":"structure",
897
- "required":["StackName"],
898
- "members":{
899
- "StackName":{"shape":"StackName"},
900
- "ClientRequestToken":{"shape":"ClientRequestToken"}
901
- }
902
- },
903
- "Capabilities":{
904
- "type":"list",
905
- "member":{"shape":"Capability"}
906
- },
907
- "CapabilitiesReason":{"type":"string"},
908
- "Capability":{
909
- "type":"string",
910
- "enum":[
911
- "CAPABILITY_IAM",
912
- "CAPABILITY_NAMED_IAM",
913
- "CAPABILITY_AUTO_EXPAND"
914
- ]
915
- },
916
- "CausingEntity":{"type":"string"},
917
- "Change":{
918
- "type":"structure",
919
- "members":{
920
- "Type":{"shape":"ChangeType"},
921
- "ResourceChange":{"shape":"ResourceChange"}
922
- }
923
- },
924
- "ChangeAction":{
925
- "type":"string",
926
- "enum":[
927
- "Add",
928
- "Modify",
929
- "Remove",
930
- "Import"
931
- ]
932
- },
933
- "ChangeSetId":{
934
- "type":"string",
935
- "min":1,
936
- "pattern":"arn:[-a-zA-Z0-9:/]*"
937
- },
938
- "ChangeSetName":{
939
- "type":"string",
940
- "max":128,
941
- "min":1,
942
- "pattern":"[a-zA-Z][-a-zA-Z0-9]*"
943
- },
944
- "ChangeSetNameOrId":{
945
- "type":"string",
946
- "max":1600,
947
- "min":1,
948
- "pattern":"[a-zA-Z][-a-zA-Z0-9]*|arn:[-a-zA-Z0-9:/]*"
949
- },
950
- "ChangeSetNotFoundException":{
951
- "type":"structure",
952
- "members":{
953
- },
954
- "error":{
955
- "code":"ChangeSetNotFound",
956
- "httpStatusCode":404,
957
- "senderFault":true
958
- },
959
- "exception":true
960
- },
961
- "ChangeSetStatus":{
962
- "type":"string",
963
- "enum":[
964
- "CREATE_PENDING",
965
- "CREATE_IN_PROGRESS",
966
- "CREATE_COMPLETE",
967
- "DELETE_COMPLETE",
968
- "FAILED"
969
- ]
970
- },
971
- "ChangeSetStatusReason":{"type":"string"},
972
- "ChangeSetSummaries":{
973
- "type":"list",
974
- "member":{"shape":"ChangeSetSummary"}
975
- },
976
- "ChangeSetSummary":{
977
- "type":"structure",
978
- "members":{
979
- "StackId":{"shape":"StackId"},
980
- "StackName":{"shape":"StackName"},
981
- "ChangeSetId":{"shape":"ChangeSetId"},
982
- "ChangeSetName":{"shape":"ChangeSetName"},
983
- "ExecutionStatus":{"shape":"ExecutionStatus"},
984
- "Status":{"shape":"ChangeSetStatus"},
985
- "StatusReason":{"shape":"ChangeSetStatusReason"},
986
- "CreationTime":{"shape":"CreationTime"},
987
- "Description":{"shape":"Description"}
988
- }
989
- },
990
- "ChangeSetType":{
991
- "type":"string",
992
- "enum":[
993
- "CREATE",
994
- "UPDATE",
995
- "IMPORT"
996
- ]
997
- },
998
- "ChangeSource":{
999
- "type":"string",
1000
- "enum":[
1001
- "ResourceReference",
1002
- "ParameterReference",
1003
- "ResourceAttribute",
1004
- "DirectModification",
1005
- "Automatic"
1006
- ]
1007
- },
1008
- "ChangeType":{
1009
- "type":"string",
1010
- "enum":["Resource"]
1011
- },
1012
- "Changes":{
1013
- "type":"list",
1014
- "member":{"shape":"Change"}
1015
- },
1016
- "ClientRequestToken":{
1017
- "type":"string",
1018
- "max":128,
1019
- "min":1,
1020
- "pattern":"[a-zA-Z0-9][-a-zA-Z0-9]*"
1021
- },
1022
- "ClientToken":{
1023
- "type":"string",
1024
- "max":128,
1025
- "min":1
1026
- },
1027
- "ContinueUpdateRollbackInput":{
1028
- "type":"structure",
1029
- "required":["StackName"],
1030
- "members":{
1031
- "StackName":{"shape":"StackNameOrId"},
1032
- "RoleARN":{"shape":"RoleARN"},
1033
- "ResourcesToSkip":{"shape":"ResourcesToSkip"},
1034
- "ClientRequestToken":{"shape":"ClientRequestToken"}
1035
- }
1036
- },
1037
- "ContinueUpdateRollbackOutput":{
1038
- "type":"structure",
1039
- "members":{
1040
- }
1041
- },
1042
- "CreateChangeSetInput":{
1043
- "type":"structure",
1044
- "required":[
1045
- "StackName",
1046
- "ChangeSetName"
1047
- ],
1048
- "members":{
1049
- "StackName":{"shape":"StackNameOrId"},
1050
- "TemplateBody":{"shape":"TemplateBody"},
1051
- "TemplateURL":{"shape":"TemplateURL"},
1052
- "UsePreviousTemplate":{"shape":"UsePreviousTemplate"},
1053
- "Parameters":{"shape":"Parameters"},
1054
- "Capabilities":{"shape":"Capabilities"},
1055
- "ResourceTypes":{"shape":"ResourceTypes"},
1056
- "RoleARN":{"shape":"RoleARN"},
1057
- "RollbackConfiguration":{"shape":"RollbackConfiguration"},
1058
- "NotificationARNs":{"shape":"NotificationARNs"},
1059
- "Tags":{"shape":"Tags"},
1060
- "ChangeSetName":{"shape":"ChangeSetName"},
1061
- "ClientToken":{"shape":"ClientToken"},
1062
- "Description":{"shape":"Description"},
1063
- "ChangeSetType":{"shape":"ChangeSetType"},
1064
- "ResourcesToImport":{"shape":"ResourcesToImport"}
1065
- }
1066
- },
1067
- "CreateChangeSetOutput":{
1068
- "type":"structure",
1069
- "members":{
1070
- "Id":{"shape":"ChangeSetId"},
1071
- "StackId":{"shape":"StackId"}
1072
- }
1073
- },
1074
- "CreateStackInput":{
1075
- "type":"structure",
1076
- "required":["StackName"],
1077
- "members":{
1078
- "StackName":{"shape":"StackName"},
1079
- "TemplateBody":{"shape":"TemplateBody"},
1080
- "TemplateURL":{"shape":"TemplateURL"},
1081
- "Parameters":{"shape":"Parameters"},
1082
- "DisableRollback":{"shape":"DisableRollback"},
1083
- "RollbackConfiguration":{"shape":"RollbackConfiguration"},
1084
- "TimeoutInMinutes":{"shape":"TimeoutMinutes"},
1085
- "NotificationARNs":{"shape":"NotificationARNs"},
1086
- "Capabilities":{"shape":"Capabilities"},
1087
- "ResourceTypes":{"shape":"ResourceTypes"},
1088
- "RoleARN":{"shape":"RoleARN"},
1089
- "OnFailure":{"shape":"OnFailure"},
1090
- "StackPolicyBody":{"shape":"StackPolicyBody"},
1091
- "StackPolicyURL":{"shape":"StackPolicyURL"},
1092
- "Tags":{"shape":"Tags"},
1093
- "ClientRequestToken":{"shape":"ClientRequestToken"},
1094
- "EnableTerminationProtection":{"shape":"EnableTerminationProtection"}
1095
- }
1096
- },
1097
- "CreateStackInstancesInput":{
1098
- "type":"structure",
1099
- "required":[
1100
- "StackSetName",
1101
- "Regions"
1102
- ],
1103
- "members":{
1104
- "StackSetName":{"shape":"StackSetName"},
1105
- "Accounts":{"shape":"AccountList"},
1106
- "DeploymentTargets":{"shape":"DeploymentTargets"},
1107
- "Regions":{"shape":"RegionList"},
1108
- "ParameterOverrides":{"shape":"Parameters"},
1109
- "OperationPreferences":{"shape":"StackSetOperationPreferences"},
1110
- "OperationId":{
1111
- "shape":"ClientRequestToken",
1112
- "idempotencyToken":true
1113
- }
1114
- }
1115
- },
1116
- "CreateStackInstancesOutput":{
1117
- "type":"structure",
1118
- "members":{
1119
- "OperationId":{"shape":"ClientRequestToken"}
1120
- }
1121
- },
1122
- "CreateStackOutput":{
1123
- "type":"structure",
1124
- "members":{
1125
- "StackId":{"shape":"StackId"}
1126
- }
1127
- },
1128
- "CreateStackSetInput":{
1129
- "type":"structure",
1130
- "required":["StackSetName"],
1131
- "members":{
1132
- "StackSetName":{"shape":"StackSetName"},
1133
- "Description":{"shape":"Description"},
1134
- "TemplateBody":{"shape":"TemplateBody"},
1135
- "TemplateURL":{"shape":"TemplateURL"},
1136
- "Parameters":{"shape":"Parameters"},
1137
- "Capabilities":{"shape":"Capabilities"},
1138
- "Tags":{"shape":"Tags"},
1139
- "AdministrationRoleARN":{"shape":"RoleARN"},
1140
- "ExecutionRoleName":{"shape":"ExecutionRoleName"},
1141
- "PermissionModel":{"shape":"PermissionModels"},
1142
- "AutoDeployment":{"shape":"AutoDeployment"},
1143
- "ClientRequestToken":{
1144
- "shape":"ClientRequestToken",
1145
- "idempotencyToken":true
1146
- }
1147
- }
1148
- },
1149
- "CreateStackSetOutput":{
1150
- "type":"structure",
1151
- "members":{
1152
- "StackSetId":{"shape":"StackSetId"}
1153
- }
1154
- },
1155
- "CreatedButModifiedException":{
1156
- "type":"structure",
1157
- "members":{
1158
- },
1159
- "error":{
1160
- "code":"CreatedButModifiedException",
1161
- "httpStatusCode":409,
1162
- "senderFault":true
1163
- },
1164
- "exception":true
1165
- },
1166
- "CreationTime":{"type":"timestamp"},
1167
- "DeleteChangeSetInput":{
1168
- "type":"structure",
1169
- "required":["ChangeSetName"],
1170
- "members":{
1171
- "ChangeSetName":{"shape":"ChangeSetNameOrId"},
1172
- "StackName":{"shape":"StackNameOrId"}
1173
- }
1174
- },
1175
- "DeleteChangeSetOutput":{
1176
- "type":"structure",
1177
- "members":{
1178
- }
1179
- },
1180
- "DeleteStackInput":{
1181
- "type":"structure",
1182
- "required":["StackName"],
1183
- "members":{
1184
- "StackName":{"shape":"StackName"},
1185
- "RetainResources":{"shape":"RetainResources"},
1186
- "RoleARN":{"shape":"RoleARN"},
1187
- "ClientRequestToken":{"shape":"ClientRequestToken"}
1188
- }
1189
- },
1190
- "DeleteStackInstancesInput":{
1191
- "type":"structure",
1192
- "required":[
1193
- "StackSetName",
1194
- "Regions",
1195
- "RetainStacks"
1196
- ],
1197
- "members":{
1198
- "StackSetName":{"shape":"StackSetName"},
1199
- "Accounts":{"shape":"AccountList"},
1200
- "DeploymentTargets":{"shape":"DeploymentTargets"},
1201
- "Regions":{"shape":"RegionList"},
1202
- "OperationPreferences":{"shape":"StackSetOperationPreferences"},
1203
- "RetainStacks":{"shape":"RetainStacks"},
1204
- "OperationId":{
1205
- "shape":"ClientRequestToken",
1206
- "idempotencyToken":true
1207
- }
1208
- }
1209
- },
1210
- "DeleteStackInstancesOutput":{
1211
- "type":"structure",
1212
- "members":{
1213
- "OperationId":{"shape":"ClientRequestToken"}
1214
- }
1215
- },
1216
- "DeleteStackSetInput":{
1217
- "type":"structure",
1218
- "required":["StackSetName"],
1219
- "members":{
1220
- "StackSetName":{"shape":"StackSetName"}
1221
- }
1222
- },
1223
- "DeleteStackSetOutput":{
1224
- "type":"structure",
1225
- "members":{
1226
- }
1227
- },
1228
- "DeletionTime":{"type":"timestamp"},
1229
- "DeploymentTargets":{
1230
- "type":"structure",
1231
- "members":{
1232
- "Accounts":{"shape":"AccountList"},
1233
- "OrganizationalUnitIds":{"shape":"OrganizationalUnitIdList"}
1234
- }
1235
- },
1236
- "DeprecatedStatus":{
1237
- "type":"string",
1238
- "enum":[
1239
- "LIVE",
1240
- "DEPRECATED"
1241
- ]
1242
- },
1243
- "DeregisterTypeInput":{
1244
- "type":"structure",
1245
- "members":{
1246
- "Arn":{"shape":"PrivateTypeArn"},
1247
- "Type":{"shape":"RegistryType"},
1248
- "TypeName":{"shape":"TypeName"},
1249
- "VersionId":{"shape":"TypeVersionId"}
1250
- }
1251
- },
1252
- "DeregisterTypeOutput":{
1253
- "type":"structure",
1254
- "members":{
1255
- }
1256
- },
1257
- "DescribeAccountLimitsInput":{
1258
- "type":"structure",
1259
- "members":{
1260
- "NextToken":{"shape":"NextToken"}
1261
- }
1262
- },
1263
- "DescribeAccountLimitsOutput":{
1264
- "type":"structure",
1265
- "members":{
1266
- "AccountLimits":{"shape":"AccountLimitList"},
1267
- "NextToken":{"shape":"NextToken"}
1268
- }
1269
- },
1270
- "DescribeChangeSetInput":{
1271
- "type":"structure",
1272
- "required":["ChangeSetName"],
1273
- "members":{
1274
- "ChangeSetName":{"shape":"ChangeSetNameOrId"},
1275
- "StackName":{"shape":"StackNameOrId"},
1276
- "NextToken":{"shape":"NextToken"}
1277
- }
1278
- },
1279
- "DescribeChangeSetOutput":{
1280
- "type":"structure",
1281
- "members":{
1282
- "ChangeSetName":{"shape":"ChangeSetName"},
1283
- "ChangeSetId":{"shape":"ChangeSetId"},
1284
- "StackId":{"shape":"StackId"},
1285
- "StackName":{"shape":"StackName"},
1286
- "Description":{"shape":"Description"},
1287
- "Parameters":{"shape":"Parameters"},
1288
- "CreationTime":{"shape":"CreationTime"},
1289
- "ExecutionStatus":{"shape":"ExecutionStatus"},
1290
- "Status":{"shape":"ChangeSetStatus"},
1291
- "StatusReason":{"shape":"ChangeSetStatusReason"},
1292
- "NotificationARNs":{"shape":"NotificationARNs"},
1293
- "RollbackConfiguration":{"shape":"RollbackConfiguration"},
1294
- "Capabilities":{"shape":"Capabilities"},
1295
- "Tags":{"shape":"Tags"},
1296
- "Changes":{"shape":"Changes"},
1297
- "NextToken":{"shape":"NextToken"}
1298
- }
1299
- },
1300
- "DescribeStackDriftDetectionStatusInput":{
1301
- "type":"structure",
1302
- "required":["StackDriftDetectionId"],
1303
- "members":{
1304
- "StackDriftDetectionId":{"shape":"StackDriftDetectionId"}
1305
- }
1306
- },
1307
- "DescribeStackDriftDetectionStatusOutput":{
1308
- "type":"structure",
1309
- "required":[
1310
- "StackId",
1311
- "StackDriftDetectionId",
1312
- "DetectionStatus",
1313
- "Timestamp"
1314
- ],
1315
- "members":{
1316
- "StackId":{"shape":"StackId"},
1317
- "StackDriftDetectionId":{"shape":"StackDriftDetectionId"},
1318
- "StackDriftStatus":{"shape":"StackDriftStatus"},
1319
- "DetectionStatus":{"shape":"StackDriftDetectionStatus"},
1320
- "DetectionStatusReason":{"shape":"StackDriftDetectionStatusReason"},
1321
- "DriftedStackResourceCount":{"shape":"BoxedInteger"},
1322
- "Timestamp":{"shape":"Timestamp"}
1323
- }
1324
- },
1325
- "DescribeStackEventsInput":{
1326
- "type":"structure",
1327
- "members":{
1328
- "StackName":{"shape":"StackName"},
1329
- "NextToken":{"shape":"NextToken"}
1330
- }
1331
- },
1332
- "DescribeStackEventsOutput":{
1333
- "type":"structure",
1334
- "members":{
1335
- "StackEvents":{"shape":"StackEvents"},
1336
- "NextToken":{"shape":"NextToken"}
1337
- }
1338
- },
1339
- "DescribeStackInstanceInput":{
1340
- "type":"structure",
1341
- "required":[
1342
- "StackSetName",
1343
- "StackInstanceAccount",
1344
- "StackInstanceRegion"
1345
- ],
1346
- "members":{
1347
- "StackSetName":{"shape":"StackSetName"},
1348
- "StackInstanceAccount":{"shape":"Account"},
1349
- "StackInstanceRegion":{"shape":"Region"}
1350
- }
1351
- },
1352
- "DescribeStackInstanceOutput":{
1353
- "type":"structure",
1354
- "members":{
1355
- "StackInstance":{"shape":"StackInstance"}
1356
- }
1357
- },
1358
- "DescribeStackResourceDriftsInput":{
1359
- "type":"structure",
1360
- "required":["StackName"],
1361
- "members":{
1362
- "StackName":{"shape":"StackNameOrId"},
1363
- "StackResourceDriftStatusFilters":{"shape":"StackResourceDriftStatusFilters"},
1364
- "NextToken":{"shape":"NextToken"},
1365
- "MaxResults":{"shape":"BoxedMaxResults"}
1366
- }
1367
- },
1368
- "DescribeStackResourceDriftsOutput":{
1369
- "type":"structure",
1370
- "required":["StackResourceDrifts"],
1371
- "members":{
1372
- "StackResourceDrifts":{"shape":"StackResourceDrifts"},
1373
- "NextToken":{"shape":"NextToken"}
1374
- }
1375
- },
1376
- "DescribeStackResourceInput":{
1377
- "type":"structure",
1378
- "required":[
1379
- "StackName",
1380
- "LogicalResourceId"
1381
- ],
1382
- "members":{
1383
- "StackName":{"shape":"StackName"},
1384
- "LogicalResourceId":{"shape":"LogicalResourceId"}
1385
- }
1386
- },
1387
- "DescribeStackResourceOutput":{
1388
- "type":"structure",
1389
- "members":{
1390
- "StackResourceDetail":{"shape":"StackResourceDetail"}
1391
- }
1392
- },
1393
- "DescribeStackResourcesInput":{
1394
- "type":"structure",
1395
- "members":{
1396
- "StackName":{"shape":"StackName"},
1397
- "LogicalResourceId":{"shape":"LogicalResourceId"},
1398
- "PhysicalResourceId":{"shape":"PhysicalResourceId"}
1399
- }
1400
- },
1401
- "DescribeStackResourcesOutput":{
1402
- "type":"structure",
1403
- "members":{
1404
- "StackResources":{"shape":"StackResources"}
1405
- }
1406
- },
1407
- "DescribeStackSetInput":{
1408
- "type":"structure",
1409
- "required":["StackSetName"],
1410
- "members":{
1411
- "StackSetName":{"shape":"StackSetName"}
1412
- }
1413
- },
1414
- "DescribeStackSetOperationInput":{
1415
- "type":"structure",
1416
- "required":[
1417
- "StackSetName",
1418
- "OperationId"
1419
- ],
1420
- "members":{
1421
- "StackSetName":{"shape":"StackSetName"},
1422
- "OperationId":{"shape":"ClientRequestToken"}
1423
- }
1424
- },
1425
- "DescribeStackSetOperationOutput":{
1426
- "type":"structure",
1427
- "members":{
1428
- "StackSetOperation":{"shape":"StackSetOperation"}
1429
- }
1430
- },
1431
- "DescribeStackSetOutput":{
1432
- "type":"structure",
1433
- "members":{
1434
- "StackSet":{"shape":"StackSet"}
1435
- }
1436
- },
1437
- "DescribeStacksInput":{
1438
- "type":"structure",
1439
- "members":{
1440
- "StackName":{"shape":"StackName"},
1441
- "NextToken":{"shape":"NextToken"}
1442
- }
1443
- },
1444
- "DescribeStacksOutput":{
1445
- "type":"structure",
1446
- "members":{
1447
- "Stacks":{"shape":"Stacks"},
1448
- "NextToken":{"shape":"NextToken"}
1449
- }
1450
- },
1451
- "DescribeTypeInput":{
1452
- "type":"structure",
1453
- "members":{
1454
- "Type":{"shape":"RegistryType"},
1455
- "TypeName":{"shape":"TypeName"},
1456
- "Arn":{"shape":"TypeArn"},
1457
- "VersionId":{"shape":"TypeVersionId"}
1458
- }
1459
- },
1460
- "DescribeTypeOutput":{
1461
- "type":"structure",
1462
- "members":{
1463
- "Arn":{"shape":"TypeArn"},
1464
- "Type":{"shape":"RegistryType"},
1465
- "TypeName":{"shape":"TypeName"},
1466
- "DefaultVersionId":{"shape":"TypeVersionId"},
1467
- "Description":{"shape":"Description"},
1468
- "Schema":{"shape":"TypeSchema"},
1469
- "ProvisioningType":{"shape":"ProvisioningType"},
1470
- "DeprecatedStatus":{"shape":"DeprecatedStatus"},
1471
- "LoggingConfig":{"shape":"LoggingConfig"},
1472
- "ExecutionRoleArn":{"shape":"RoleArn"},
1473
- "Visibility":{"shape":"Visibility"},
1474
- "SourceUrl":{"shape":"OptionalSecureUrl"},
1475
- "DocumentationUrl":{"shape":"OptionalSecureUrl"},
1476
- "LastUpdated":{"shape":"Timestamp"},
1477
- "TimeCreated":{"shape":"Timestamp"}
1478
- }
1479
- },
1480
- "DescribeTypeRegistrationInput":{
1481
- "type":"structure",
1482
- "required":["RegistrationToken"],
1483
- "members":{
1484
- "RegistrationToken":{"shape":"RegistrationToken"}
1485
- }
1486
- },
1487
- "DescribeTypeRegistrationOutput":{
1488
- "type":"structure",
1489
- "members":{
1490
- "ProgressStatus":{"shape":"RegistrationStatus"},
1491
- "Description":{"shape":"Description"},
1492
- "TypeArn":{"shape":"TypeArn"},
1493
- "TypeVersionArn":{"shape":"TypeArn"}
1494
- }
1495
- },
1496
- "Description":{
1497
- "type":"string",
1498
- "max":1024,
1499
- "min":1
1500
- },
1501
- "DetectStackDriftInput":{
1502
- "type":"structure",
1503
- "required":["StackName"],
1504
- "members":{
1505
- "StackName":{"shape":"StackNameOrId"},
1506
- "LogicalResourceIds":{"shape":"LogicalResourceIds"}
1507
- }
1508
- },
1509
- "DetectStackDriftOutput":{
1510
- "type":"structure",
1511
- "required":["StackDriftDetectionId"],
1512
- "members":{
1513
- "StackDriftDetectionId":{"shape":"StackDriftDetectionId"}
1514
- }
1515
- },
1516
- "DetectStackResourceDriftInput":{
1517
- "type":"structure",
1518
- "required":[
1519
- "StackName",
1520
- "LogicalResourceId"
1521
- ],
1522
- "members":{
1523
- "StackName":{"shape":"StackNameOrId"},
1524
- "LogicalResourceId":{"shape":"LogicalResourceId"}
1525
- }
1526
- },
1527
- "DetectStackResourceDriftOutput":{
1528
- "type":"structure",
1529
- "required":["StackResourceDrift"],
1530
- "members":{
1531
- "StackResourceDrift":{"shape":"StackResourceDrift"}
1532
- }
1533
- },
1534
- "DetectStackSetDriftInput":{
1535
- "type":"structure",
1536
- "required":["StackSetName"],
1537
- "members":{
1538
- "StackSetName":{"shape":"StackSetNameOrId"},
1539
- "OperationPreferences":{"shape":"StackSetOperationPreferences"},
1540
- "OperationId":{
1541
- "shape":"ClientRequestToken",
1542
- "idempotencyToken":true
1543
- }
1544
- }
1545
- },
1546
- "DetectStackSetDriftOutput":{
1547
- "type":"structure",
1548
- "members":{
1549
- "OperationId":{"shape":"ClientRequestToken"}
1550
- }
1551
- },
1552
- "DifferenceType":{
1553
- "type":"string",
1554
- "enum":[
1555
- "ADD",
1556
- "REMOVE",
1557
- "NOT_EQUAL"
1558
- ]
1559
- },
1560
- "DisableRollback":{"type":"boolean"},
1561
- "DriftedStackInstancesCount":{
1562
- "type":"integer",
1563
- "min":0
1564
- },
1565
- "EnableTerminationProtection":{"type":"boolean"},
1566
- "ErrorMessage":{
1567
- "type":"string",
1568
- "max":255,
1569
- "min":1
1570
- },
1571
- "EstimateTemplateCostInput":{
1572
- "type":"structure",
1573
- "members":{
1574
- "TemplateBody":{"shape":"TemplateBody"},
1575
- "TemplateURL":{"shape":"TemplateURL"},
1576
- "Parameters":{"shape":"Parameters"}
1577
- }
1578
- },
1579
- "EstimateTemplateCostOutput":{
1580
- "type":"structure",
1581
- "members":{
1582
- "Url":{"shape":"Url"}
1583
- }
1584
- },
1585
- "EvaluationType":{
1586
- "type":"string",
1587
- "enum":[
1588
- "Static",
1589
- "Dynamic"
1590
- ]
1591
- },
1592
- "EventId":{"type":"string"},
1593
- "ExecuteChangeSetInput":{
1594
- "type":"structure",
1595
- "required":["ChangeSetName"],
1596
- "members":{
1597
- "ChangeSetName":{"shape":"ChangeSetNameOrId"},
1598
- "StackName":{"shape":"StackNameOrId"},
1599
- "ClientRequestToken":{"shape":"ClientRequestToken"}
1600
- }
1601
- },
1602
- "ExecuteChangeSetOutput":{
1603
- "type":"structure",
1604
- "members":{
1605
- }
1606
- },
1607
- "ExecutionRoleName":{
1608
- "type":"string",
1609
- "max":64,
1610
- "min":1,
1611
- "pattern":"[a-zA-Z_0-9+=,.@-]+"
1612
- },
1613
- "ExecutionStatus":{
1614
- "type":"string",
1615
- "enum":[
1616
- "UNAVAILABLE",
1617
- "AVAILABLE",
1618
- "EXECUTE_IN_PROGRESS",
1619
- "EXECUTE_COMPLETE",
1620
- "EXECUTE_FAILED",
1621
- "OBSOLETE"
1622
- ]
1623
- },
1624
- "Export":{
1625
- "type":"structure",
1626
- "members":{
1627
- "ExportingStackId":{"shape":"StackId"},
1628
- "Name":{"shape":"ExportName"},
1629
- "Value":{"shape":"ExportValue"}
1630
- }
1631
- },
1632
- "ExportName":{"type":"string"},
1633
- "ExportValue":{"type":"string"},
1634
- "Exports":{
1635
- "type":"list",
1636
- "member":{"shape":"Export"}
1637
- },
1638
- "FailedStackInstancesCount":{
1639
- "type":"integer",
1640
- "min":0
1641
- },
1642
- "FailureToleranceCount":{
1643
- "type":"integer",
1644
- "min":0
1645
- },
1646
- "FailureTolerancePercentage":{
1647
- "type":"integer",
1648
- "max":100,
1649
- "min":0
1650
- },
1651
- "GetStackPolicyInput":{
1652
- "type":"structure",
1653
- "required":["StackName"],
1654
- "members":{
1655
- "StackName":{"shape":"StackName"}
1656
- }
1657
- },
1658
- "GetStackPolicyOutput":{
1659
- "type":"structure",
1660
- "members":{
1661
- "StackPolicyBody":{"shape":"StackPolicyBody"}
1662
- }
1663
- },
1664
- "GetTemplateInput":{
1665
- "type":"structure",
1666
- "members":{
1667
- "StackName":{"shape":"StackName"},
1668
- "ChangeSetName":{"shape":"ChangeSetNameOrId"},
1669
- "TemplateStage":{"shape":"TemplateStage"}
1670
- }
1671
- },
1672
- "GetTemplateOutput":{
1673
- "type":"structure",
1674
- "members":{
1675
- "TemplateBody":{"shape":"TemplateBody"},
1676
- "StagesAvailable":{"shape":"StageList"}
1677
- }
1678
- },
1679
- "GetTemplateSummaryInput":{
1680
- "type":"structure",
1681
- "members":{
1682
- "TemplateBody":{"shape":"TemplateBody"},
1683
- "TemplateURL":{"shape":"TemplateURL"},
1684
- "StackName":{"shape":"StackNameOrId"},
1685
- "StackSetName":{"shape":"StackSetNameOrId"}
1686
- }
1687
- },
1688
- "GetTemplateSummaryOutput":{
1689
- "type":"structure",
1690
- "members":{
1691
- "Parameters":{"shape":"ParameterDeclarations"},
1692
- "Description":{"shape":"Description"},
1693
- "Capabilities":{"shape":"Capabilities"},
1694
- "CapabilitiesReason":{"shape":"CapabilitiesReason"},
1695
- "ResourceTypes":{"shape":"ResourceTypes"},
1696
- "Version":{"shape":"Version"},
1697
- "Metadata":{"shape":"Metadata"},
1698
- "DeclaredTransforms":{"shape":"TransformsList"},
1699
- "ResourceIdentifierSummaries":{"shape":"ResourceIdentifierSummaries"}
1700
- }
1701
- },
1702
- "HandlerErrorCode":{
1703
- "type":"string",
1704
- "enum":[
1705
- "NotUpdatable",
1706
- "InvalidRequest",
1707
- "AccessDenied",
1708
- "InvalidCredentials",
1709
- "AlreadyExists",
1710
- "NotFound",
1711
- "ResourceConflict",
1712
- "Throttling",
1713
- "ServiceLimitExceeded",
1714
- "NotStabilized",
1715
- "GeneralServiceException",
1716
- "ServiceInternalError",
1717
- "NetworkFailure",
1718
- "InternalFailure"
1719
- ]
1720
- },
1721
- "Imports":{
1722
- "type":"list",
1723
- "member":{"shape":"StackName"}
1724
- },
1725
- "InProgressStackInstancesCount":{
1726
- "type":"integer",
1727
- "min":0
1728
- },
1729
- "InSyncStackInstancesCount":{
1730
- "type":"integer",
1731
- "min":0
1732
- },
1733
- "InsufficientCapabilitiesException":{
1734
- "type":"structure",
1735
- "members":{
1736
- },
1737
- "error":{
1738
- "code":"InsufficientCapabilitiesException",
1739
- "httpStatusCode":400,
1740
- "senderFault":true
1741
- },
1742
- "exception":true
1743
- },
1744
- "InvalidChangeSetStatusException":{
1745
- "type":"structure",
1746
- "members":{
1747
- },
1748
- "error":{
1749
- "code":"InvalidChangeSetStatus",
1750
- "httpStatusCode":400,
1751
- "senderFault":true
1752
- },
1753
- "exception":true
1754
- },
1755
- "InvalidOperationException":{
1756
- "type":"structure",
1757
- "members":{
1758
- },
1759
- "error":{
1760
- "code":"InvalidOperationException",
1761
- "httpStatusCode":400,
1762
- "senderFault":true
1763
- },
1764
- "exception":true
1765
- },
1766
- "InvalidStateTransitionException":{
1767
- "type":"structure",
1768
- "members":{
1769
- },
1770
- "error":{
1771
- "code":"InvalidStateTransition",
1772
- "httpStatusCode":400,
1773
- "senderFault":true
1774
- },
1775
- "exception":true
1776
- },
1777
- "Key":{"type":"string"},
1778
- "LastUpdatedTime":{"type":"timestamp"},
1779
- "LimitExceededException":{
1780
- "type":"structure",
1781
- "members":{
1782
- },
1783
- "error":{
1784
- "code":"LimitExceededException",
1785
- "httpStatusCode":400,
1786
- "senderFault":true
1787
- },
1788
- "exception":true
1789
- },
1790
- "LimitName":{"type":"string"},
1791
- "LimitValue":{"type":"integer"},
1792
- "ListChangeSetsInput":{
1793
- "type":"structure",
1794
- "required":["StackName"],
1795
- "members":{
1796
- "StackName":{"shape":"StackNameOrId"},
1797
- "NextToken":{"shape":"NextToken"}
1798
- }
1799
- },
1800
- "ListChangeSetsOutput":{
1801
- "type":"structure",
1802
- "members":{
1803
- "Summaries":{"shape":"ChangeSetSummaries"},
1804
- "NextToken":{"shape":"NextToken"}
1805
- }
1806
- },
1807
- "ListExportsInput":{
1808
- "type":"structure",
1809
- "members":{
1810
- "NextToken":{"shape":"NextToken"}
1811
- }
1812
- },
1813
- "ListExportsOutput":{
1814
- "type":"structure",
1815
- "members":{
1816
- "Exports":{"shape":"Exports"},
1817
- "NextToken":{"shape":"NextToken"}
1818
- }
1819
- },
1820
- "ListImportsInput":{
1821
- "type":"structure",
1822
- "required":["ExportName"],
1823
- "members":{
1824
- "ExportName":{"shape":"ExportName"},
1825
- "NextToken":{"shape":"NextToken"}
1826
- }
1827
- },
1828
- "ListImportsOutput":{
1829
- "type":"structure",
1830
- "members":{
1831
- "Imports":{"shape":"Imports"},
1832
- "NextToken":{"shape":"NextToken"}
1833
- }
1834
- },
1835
- "ListStackInstancesInput":{
1836
- "type":"structure",
1837
- "required":["StackSetName"],
1838
- "members":{
1839
- "StackSetName":{"shape":"StackSetName"},
1840
- "NextToken":{"shape":"NextToken"},
1841
- "MaxResults":{"shape":"MaxResults"},
1842
- "StackInstanceAccount":{"shape":"Account"},
1843
- "StackInstanceRegion":{"shape":"Region"}
1844
- }
1845
- },
1846
- "ListStackInstancesOutput":{
1847
- "type":"structure",
1848
- "members":{
1849
- "Summaries":{"shape":"StackInstanceSummaries"},
1850
- "NextToken":{"shape":"NextToken"}
1851
- }
1852
- },
1853
- "ListStackResourcesInput":{
1854
- "type":"structure",
1855
- "required":["StackName"],
1856
- "members":{
1857
- "StackName":{"shape":"StackName"},
1858
- "NextToken":{"shape":"NextToken"}
1859
- }
1860
- },
1861
- "ListStackResourcesOutput":{
1862
- "type":"structure",
1863
- "members":{
1864
- "StackResourceSummaries":{"shape":"StackResourceSummaries"},
1865
- "NextToken":{"shape":"NextToken"}
1866
- }
1867
- },
1868
- "ListStackSetOperationResultsInput":{
1869
- "type":"structure",
1870
- "required":[
1871
- "StackSetName",
1872
- "OperationId"
1873
- ],
1874
- "members":{
1875
- "StackSetName":{"shape":"StackSetName"},
1876
- "OperationId":{"shape":"ClientRequestToken"},
1877
- "NextToken":{"shape":"NextToken"},
1878
- "MaxResults":{"shape":"MaxResults"}
1879
- }
1880
- },
1881
- "ListStackSetOperationResultsOutput":{
1882
- "type":"structure",
1883
- "members":{
1884
- "Summaries":{"shape":"StackSetOperationResultSummaries"},
1885
- "NextToken":{"shape":"NextToken"}
1886
- }
1887
- },
1888
- "ListStackSetOperationsInput":{
1889
- "type":"structure",
1890
- "required":["StackSetName"],
1891
- "members":{
1892
- "StackSetName":{"shape":"StackSetName"},
1893
- "NextToken":{"shape":"NextToken"},
1894
- "MaxResults":{"shape":"MaxResults"}
1895
- }
1896
- },
1897
- "ListStackSetOperationsOutput":{
1898
- "type":"structure",
1899
- "members":{
1900
- "Summaries":{"shape":"StackSetOperationSummaries"},
1901
- "NextToken":{"shape":"NextToken"}
1902
- }
1903
- },
1904
- "ListStackSetsInput":{
1905
- "type":"structure",
1906
- "members":{
1907
- "NextToken":{"shape":"NextToken"},
1908
- "MaxResults":{"shape":"MaxResults"},
1909
- "Status":{"shape":"StackSetStatus"}
1910
- }
1911
- },
1912
- "ListStackSetsOutput":{
1913
- "type":"structure",
1914
- "members":{
1915
- "Summaries":{"shape":"StackSetSummaries"},
1916
- "NextToken":{"shape":"NextToken"}
1917
- }
1918
- },
1919
- "ListStacksInput":{
1920
- "type":"structure",
1921
- "members":{
1922
- "NextToken":{"shape":"NextToken"},
1923
- "StackStatusFilter":{"shape":"StackStatusFilter"}
1924
- }
1925
- },
1926
- "ListStacksOutput":{
1927
- "type":"structure",
1928
- "members":{
1929
- "StackSummaries":{"shape":"StackSummaries"},
1930
- "NextToken":{"shape":"NextToken"}
1931
- }
1932
- },
1933
- "ListTypeRegistrationsInput":{
1934
- "type":"structure",
1935
- "members":{
1936
- "Type":{"shape":"RegistryType"},
1937
- "TypeName":{"shape":"TypeName"},
1938
- "TypeArn":{"shape":"TypeArn"},
1939
- "RegistrationStatusFilter":{"shape":"RegistrationStatus"},
1940
- "MaxResults":{"shape":"MaxResults"},
1941
- "NextToken":{"shape":"NextToken"}
1942
- }
1943
- },
1944
- "ListTypeRegistrationsOutput":{
1945
- "type":"structure",
1946
- "members":{
1947
- "RegistrationTokenList":{"shape":"RegistrationTokenList"},
1948
- "NextToken":{"shape":"NextToken"}
1949
- }
1950
- },
1951
- "ListTypeVersionsInput":{
1952
- "type":"structure",
1953
- "members":{
1954
- "Type":{"shape":"RegistryType"},
1955
- "TypeName":{"shape":"TypeName"},
1956
- "Arn":{"shape":"PrivateTypeArn"},
1957
- "MaxResults":{"shape":"MaxResults"},
1958
- "NextToken":{"shape":"NextToken"},
1959
- "DeprecatedStatus":{"shape":"DeprecatedStatus"}
1960
- }
1961
- },
1962
- "ListTypeVersionsOutput":{
1963
- "type":"structure",
1964
- "members":{
1965
- "TypeVersionSummaries":{"shape":"TypeVersionSummaries"},
1966
- "NextToken":{"shape":"NextToken"}
1967
- }
1968
- },
1969
- "ListTypesInput":{
1970
- "type":"structure",
1971
- "members":{
1972
- "Visibility":{"shape":"Visibility"},
1973
- "ProvisioningType":{"shape":"ProvisioningType"},
1974
- "DeprecatedStatus":{"shape":"DeprecatedStatus"},
1975
- "MaxResults":{"shape":"MaxResults"},
1976
- "NextToken":{"shape":"NextToken"}
1977
- }
1978
- },
1979
- "ListTypesOutput":{
1980
- "type":"structure",
1981
- "members":{
1982
- "TypeSummaries":{"shape":"TypeSummaries"},
1983
- "NextToken":{"shape":"NextToken"}
1984
- }
1985
- },
1986
- "LogGroupName":{
1987
- "type":"string",
1988
- "max":512,
1989
- "min":1,
1990
- "pattern":"[\\.\\-_/#A-Za-z0-9]+"
1991
- },
1992
- "LoggingConfig":{
1993
- "type":"structure",
1994
- "required":[
1995
- "LogRoleArn",
1996
- "LogGroupName"
1997
- ],
1998
- "members":{
1999
- "LogRoleArn":{"shape":"RoleArn"},
2000
- "LogGroupName":{"shape":"LogGroupName"}
2001
- }
2002
- },
2003
- "LogicalResourceId":{"type":"string"},
2004
- "LogicalResourceIds":{
2005
- "type":"list",
2006
- "member":{"shape":"LogicalResourceId"},
2007
- "max":200,
2008
- "min":1
2009
- },
2010
- "MaxConcurrentCount":{
2011
- "type":"integer",
2012
- "min":1
2013
- },
2014
- "MaxConcurrentPercentage":{
2015
- "type":"integer",
2016
- "max":100,
2017
- "min":1
2018
- },
2019
- "MaxResults":{
2020
- "type":"integer",
2021
- "max":100,
2022
- "min":1
2023
- },
2024
- "Metadata":{"type":"string"},
2025
- "MonitoringTimeInMinutes":{
2026
- "type":"integer",
2027
- "max":180,
2028
- "min":0
2029
- },
2030
- "NameAlreadyExistsException":{
2031
- "type":"structure",
2032
- "members":{
2033
- },
2034
- "error":{
2035
- "code":"NameAlreadyExistsException",
2036
- "httpStatusCode":409,
2037
- "senderFault":true
2038
- },
2039
- "exception":true
2040
- },
2041
- "NextToken":{
2042
- "type":"string",
2043
- "max":1024,
2044
- "min":1
2045
- },
2046
- "NoEcho":{"type":"boolean"},
2047
- "NotificationARN":{"type":"string"},
2048
- "NotificationARNs":{
2049
- "type":"list",
2050
- "member":{"shape":"NotificationARN"},
2051
- "max":5
2052
- },
2053
- "OnFailure":{
2054
- "type":"string",
2055
- "enum":[
2056
- "DO_NOTHING",
2057
- "ROLLBACK",
2058
- "DELETE"
2059
- ]
2060
- },
2061
- "OperationIdAlreadyExistsException":{
2062
- "type":"structure",
2063
- "members":{
2064
- },
2065
- "error":{
2066
- "code":"OperationIdAlreadyExistsException",
2067
- "httpStatusCode":409,
2068
- "senderFault":true
2069
- },
2070
- "exception":true
2071
- },
2072
- "OperationInProgressException":{
2073
- "type":"structure",
2074
- "members":{
2075
- },
2076
- "error":{
2077
- "code":"OperationInProgressException",
2078
- "httpStatusCode":409,
2079
- "senderFault":true
2080
- },
2081
- "exception":true
2082
- },
2083
- "OperationNotFoundException":{
2084
- "type":"structure",
2085
- "members":{
2086
- },
2087
- "error":{
2088
- "code":"OperationNotFoundException",
2089
- "httpStatusCode":404,
2090
- "senderFault":true
2091
- },
2092
- "exception":true
2093
- },
2094
- "OperationStatus":{
2095
- "type":"string",
2096
- "enum":[
2097
- "PENDING",
2098
- "IN_PROGRESS",
2099
- "SUCCESS",
2100
- "FAILED"
2101
- ]
2102
- },
2103
- "OperationStatusCheckFailedException":{
2104
- "type":"structure",
2105
- "members":{
2106
- },
2107
- "error":{
2108
- "code":"ConditionalCheckFailed",
2109
- "httpStatusCode":400,
2110
- "senderFault":true
2111
- },
2112
- "exception":true
2113
- },
2114
- "OptionalSecureUrl":{
2115
- "type":"string",
2116
- "max":4096
2117
- },
2118
- "OrganizationalUnitId":{
2119
- "type":"string",
2120
- "pattern":"^(ou-[a-z0-9]{4,32}-[a-z0-9]{8,32}|r-[a-z0-9]{4,32})$"
2121
- },
2122
- "OrganizationalUnitIdList":{
2123
- "type":"list",
2124
- "member":{"shape":"OrganizationalUnitId"}
2125
- },
2126
- "Output":{
2127
- "type":"structure",
2128
- "members":{
2129
- "OutputKey":{"shape":"OutputKey"},
2130
- "OutputValue":{"shape":"OutputValue"},
2131
- "Description":{"shape":"Description"},
2132
- "ExportName":{"shape":"ExportName"}
2133
- }
2134
- },
2135
- "OutputKey":{"type":"string"},
2136
- "OutputValue":{"type":"string"},
2137
- "Outputs":{
2138
- "type":"list",
2139
- "member":{"shape":"Output"}
2140
- },
2141
- "Parameter":{
2142
- "type":"structure",
2143
- "members":{
2144
- "ParameterKey":{"shape":"ParameterKey"},
2145
- "ParameterValue":{"shape":"ParameterValue"},
2146
- "UsePreviousValue":{"shape":"UsePreviousValue"},
2147
- "ResolvedValue":{"shape":"ParameterValue"}
2148
- }
2149
- },
2150
- "ParameterConstraints":{
2151
- "type":"structure",
2152
- "members":{
2153
- "AllowedValues":{"shape":"AllowedValues"}
2154
- }
2155
- },
2156
- "ParameterDeclaration":{
2157
- "type":"structure",
2158
- "members":{
2159
- "ParameterKey":{"shape":"ParameterKey"},
2160
- "DefaultValue":{"shape":"ParameterValue"},
2161
- "ParameterType":{"shape":"ParameterType"},
2162
- "NoEcho":{"shape":"NoEcho"},
2163
- "Description":{"shape":"Description"},
2164
- "ParameterConstraints":{"shape":"ParameterConstraints"}
2165
- }
2166
- },
2167
- "ParameterDeclarations":{
2168
- "type":"list",
2169
- "member":{"shape":"ParameterDeclaration"}
2170
- },
2171
- "ParameterKey":{"type":"string"},
2172
- "ParameterType":{"type":"string"},
2173
- "ParameterValue":{"type":"string"},
2174
- "Parameters":{
2175
- "type":"list",
2176
- "member":{"shape":"Parameter"}
2177
- },
2178
- "PermissionModels":{
2179
- "type":"string",
2180
- "enum":[
2181
- "SERVICE_MANAGED",
2182
- "SELF_MANAGED"
2183
- ]
2184
- },
2185
- "PhysicalResourceId":{"type":"string"},
2186
- "PhysicalResourceIdContext":{
2187
- "type":"list",
2188
- "member":{"shape":"PhysicalResourceIdContextKeyValuePair"},
2189
- "max":5
2190
- },
2191
- "PhysicalResourceIdContextKeyValuePair":{
2192
- "type":"structure",
2193
- "required":[
2194
- "Key",
2195
- "Value"
2196
- ],
2197
- "members":{
2198
- "Key":{"shape":"Key"},
2199
- "Value":{"shape":"Value"}
2200
- }
2201
- },
2202
- "PrivateTypeArn":{
2203
- "type":"string",
2204
- "max":1024,
2205
- "pattern":"arn:aws[A-Za-z0-9-]{0,64}:cloudformation:[A-Za-z0-9-]{1,64}:[0-9]{12}:type/.+"
2206
- },
2207
- "Properties":{"type":"string"},
2208
- "PropertyDifference":{
2209
- "type":"structure",
2210
- "required":[
2211
- "PropertyPath",
2212
- "ExpectedValue",
2213
- "ActualValue",
2214
- "DifferenceType"
2215
- ],
2216
- "members":{
2217
- "PropertyPath":{"shape":"PropertyPath"},
2218
- "ExpectedValue":{"shape":"PropertyValue"},
2219
- "ActualValue":{"shape":"PropertyValue"},
2220
- "DifferenceType":{"shape":"DifferenceType"}
2221
- }
2222
- },
2223
- "PropertyDifferences":{
2224
- "type":"list",
2225
- "member":{"shape":"PropertyDifference"}
2226
- },
2227
- "PropertyName":{"type":"string"},
2228
- "PropertyPath":{"type":"string"},
2229
- "PropertyValue":{"type":"string"},
2230
- "ProvisioningType":{
2231
- "type":"string",
2232
- "enum":[
2233
- "NON_PROVISIONABLE",
2234
- "IMMUTABLE",
2235
- "FULLY_MUTABLE"
2236
- ]
2237
- },
2238
- "Reason":{"type":"string"},
2239
- "RecordHandlerProgressInput":{
2240
- "type":"structure",
2241
- "required":[
2242
- "BearerToken",
2243
- "OperationStatus"
2244
- ],
2245
- "members":{
2246
- "BearerToken":{"shape":"ClientToken"},
2247
- "OperationStatus":{"shape":"OperationStatus"},
2248
- "CurrentOperationStatus":{"shape":"OperationStatus"},
2249
- "StatusMessage":{"shape":"StatusMessage"},
2250
- "ErrorCode":{"shape":"HandlerErrorCode"},
2251
- "ResourceModel":{"shape":"ResourceModel"},
2252
- "ClientRequestToken":{"shape":"ClientRequestToken"}
2253
- }
2254
- },
2255
- "RecordHandlerProgressOutput":{
2256
- "type":"structure",
2257
- "members":{
2258
- }
2259
- },
2260
- "Region":{
2261
- "type":"string",
2262
- "pattern":"^[a-zA-Z0-9-]{1,128}$"
2263
- },
2264
- "RegionList":{
2265
- "type":"list",
2266
- "member":{"shape":"Region"}
2267
- },
2268
- "RegisterTypeInput":{
2269
- "type":"structure",
2270
- "required":[
2271
- "TypeName",
2272
- "SchemaHandlerPackage"
2273
- ],
2274
- "members":{
2275
- "Type":{"shape":"RegistryType"},
2276
- "TypeName":{"shape":"TypeName"},
2277
- "SchemaHandlerPackage":{"shape":"S3Url"},
2278
- "LoggingConfig":{"shape":"LoggingConfig"},
2279
- "ExecutionRoleArn":{"shape":"RoleArn"},
2280
- "ClientRequestToken":{"shape":"RequestToken"}
2281
- }
2282
- },
2283
- "RegisterTypeOutput":{
2284
- "type":"structure",
2285
- "members":{
2286
- "RegistrationToken":{"shape":"RegistrationToken"}
2287
- }
2288
- },
2289
- "RegistrationStatus":{
2290
- "type":"string",
2291
- "enum":[
2292
- "COMPLETE",
2293
- "IN_PROGRESS",
2294
- "FAILED"
2295
- ]
2296
- },
2297
- "RegistrationToken":{
2298
- "type":"string",
2299
- "max":128,
2300
- "min":1,
2301
- "pattern":"[a-zA-Z0-9][-a-zA-Z0-9]*"
2302
- },
2303
- "RegistrationTokenList":{
2304
- "type":"list",
2305
- "member":{"shape":"RegistrationToken"}
2306
- },
2307
- "RegistryType":{
2308
- "type":"string",
2309
- "enum":["RESOURCE"]
2310
- },
2311
- "Replacement":{
2312
- "type":"string",
2313
- "enum":[
2314
- "True",
2315
- "False",
2316
- "Conditional"
2317
- ]
2318
- },
2319
- "RequestToken":{
2320
- "type":"string",
2321
- "max":128,
2322
- "min":1,
2323
- "pattern":"[a-zA-Z0-9][-a-zA-Z0-9]*"
2324
- },
2325
- "RequiresRecreation":{
2326
- "type":"string",
2327
- "enum":[
2328
- "Never",
2329
- "Conditionally",
2330
- "Always"
2331
- ]
2332
- },
2333
- "ResourceAttribute":{
2334
- "type":"string",
2335
- "enum":[
2336
- "Properties",
2337
- "Metadata",
2338
- "CreationPolicy",
2339
- "UpdatePolicy",
2340
- "DeletionPolicy",
2341
- "Tags"
2342
- ]
2343
- },
2344
- "ResourceChange":{
2345
- "type":"structure",
2346
- "members":{
2347
- "Action":{"shape":"ChangeAction"},
2348
- "LogicalResourceId":{"shape":"LogicalResourceId"},
2349
- "PhysicalResourceId":{"shape":"PhysicalResourceId"},
2350
- "ResourceType":{"shape":"ResourceType"},
2351
- "Replacement":{"shape":"Replacement"},
2352
- "Scope":{"shape":"Scope"},
2353
- "Details":{"shape":"ResourceChangeDetails"}
2354
- }
2355
- },
2356
- "ResourceChangeDetail":{
2357
- "type":"structure",
2358
- "members":{
2359
- "Target":{"shape":"ResourceTargetDefinition"},
2360
- "Evaluation":{"shape":"EvaluationType"},
2361
- "ChangeSource":{"shape":"ChangeSource"},
2362
- "CausingEntity":{"shape":"CausingEntity"}
2363
- }
2364
- },
2365
- "ResourceChangeDetails":{
2366
- "type":"list",
2367
- "member":{"shape":"ResourceChangeDetail"}
2368
- },
2369
- "ResourceIdentifierProperties":{
2370
- "type":"map",
2371
- "key":{"shape":"ResourceIdentifierPropertyKey"},
2372
- "value":{"shape":"ResourceIdentifierPropertyValue"},
2373
- "max":256,
2374
- "min":1
2375
- },
2376
- "ResourceIdentifierPropertyKey":{
2377
- "type":"string",
2378
- "max":2048,
2379
- "min":1
2380
- },
2381
- "ResourceIdentifierPropertyValue":{
2382
- "type":"string",
2383
- "max":2048,
2384
- "min":1
2385
- },
2386
- "ResourceIdentifierSummaries":{
2387
- "type":"list",
2388
- "member":{"shape":"ResourceIdentifierSummary"}
2389
- },
2390
- "ResourceIdentifierSummary":{
2391
- "type":"structure",
2392
- "members":{
2393
- "ResourceType":{"shape":"ResourceType"},
2394
- "LogicalResourceIds":{"shape":"LogicalResourceIds"},
2395
- "ResourceIdentifiers":{"shape":"ResourceIdentifiers"}
2396
- }
2397
- },
2398
- "ResourceIdentifiers":{
2399
- "type":"list",
2400
- "member":{"shape":"ResourceIdentifierPropertyKey"}
2401
- },
2402
- "ResourceModel":{
2403
- "type":"string",
2404
- "max":16384,
2405
- "min":1
2406
- },
2407
- "ResourceProperties":{"type":"string"},
2408
- "ResourceSignalStatus":{
2409
- "type":"string",
2410
- "enum":[
2411
- "SUCCESS",
2412
- "FAILURE"
2413
- ]
2414
- },
2415
- "ResourceSignalUniqueId":{
2416
- "type":"string",
2417
- "max":64,
2418
- "min":1
2419
- },
2420
- "ResourceStatus":{
2421
- "type":"string",
2422
- "enum":[
2423
- "CREATE_IN_PROGRESS",
2424
- "CREATE_FAILED",
2425
- "CREATE_COMPLETE",
2426
- "DELETE_IN_PROGRESS",
2427
- "DELETE_FAILED",
2428
- "DELETE_COMPLETE",
2429
- "DELETE_SKIPPED",
2430
- "UPDATE_IN_PROGRESS",
2431
- "UPDATE_FAILED",
2432
- "UPDATE_COMPLETE",
2433
- "IMPORT_FAILED",
2434
- "IMPORT_COMPLETE",
2435
- "IMPORT_IN_PROGRESS",
2436
- "IMPORT_ROLLBACK_IN_PROGRESS",
2437
- "IMPORT_ROLLBACK_FAILED",
2438
- "IMPORT_ROLLBACK_COMPLETE"
2439
- ]
2440
- },
2441
- "ResourceStatusReason":{"type":"string"},
2442
- "ResourceTargetDefinition":{
2443
- "type":"structure",
2444
- "members":{
2445
- "Attribute":{"shape":"ResourceAttribute"},
2446
- "Name":{"shape":"PropertyName"},
2447
- "RequiresRecreation":{"shape":"RequiresRecreation"}
2448
- }
2449
- },
2450
- "ResourceToImport":{
2451
- "type":"structure",
2452
- "required":[
2453
- "ResourceType",
2454
- "LogicalResourceId",
2455
- "ResourceIdentifier"
2456
- ],
2457
- "members":{
2458
- "ResourceType":{"shape":"ResourceType"},
2459
- "LogicalResourceId":{"shape":"LogicalResourceId"},
2460
- "ResourceIdentifier":{"shape":"ResourceIdentifierProperties"}
2461
- }
2462
- },
2463
- "ResourceToSkip":{
2464
- "type":"string",
2465
- "pattern":"[a-zA-Z0-9]+|[a-zA-Z][-a-zA-Z0-9]*\\.[a-zA-Z0-9]+"
2466
- },
2467
- "ResourceType":{
2468
- "type":"string",
2469
- "max":256,
2470
- "min":1
2471
- },
2472
- "ResourceTypes":{
2473
- "type":"list",
2474
- "member":{"shape":"ResourceType"}
2475
- },
2476
- "ResourcesToImport":{
2477
- "type":"list",
2478
- "member":{"shape":"ResourceToImport"},
2479
- "max":200
2480
- },
2481
- "ResourcesToSkip":{
2482
- "type":"list",
2483
- "member":{"shape":"ResourceToSkip"}
2484
- },
2485
- "RetainResources":{
2486
- "type":"list",
2487
- "member":{"shape":"LogicalResourceId"}
2488
- },
2489
- "RetainStacks":{"type":"boolean"},
2490
- "RetainStacksNullable":{"type":"boolean"},
2491
- "RetainStacksOnAccountRemovalNullable":{"type":"boolean"},
2492
- "RoleARN":{
2493
- "type":"string",
2494
- "max":2048,
2495
- "min":20
2496
- },
2497
- "RoleArn":{
2498
- "type":"string",
2499
- "max":256,
2500
- "min":1,
2501
- "pattern":"arn:.+:iam::[0-9]{12}:role/.+"
2502
- },
2503
- "RollbackConfiguration":{
2504
- "type":"structure",
2505
- "members":{
2506
- "RollbackTriggers":{"shape":"RollbackTriggers"},
2507
- "MonitoringTimeInMinutes":{"shape":"MonitoringTimeInMinutes"}
2508
- }
2509
- },
2510
- "RollbackTrigger":{
2511
- "type":"structure",
2512
- "required":[
2513
- "Arn",
2514
- "Type"
2515
- ],
2516
- "members":{
2517
- "Arn":{"shape":"Arn"},
2518
- "Type":{"shape":"Type"}
2519
- }
2520
- },
2521
- "RollbackTriggers":{
2522
- "type":"list",
2523
- "member":{"shape":"RollbackTrigger"},
2524
- "max":5
2525
- },
2526
- "S3Url":{
2527
- "type":"string",
2528
- "max":4096,
2529
- "min":1
2530
- },
2531
- "Scope":{
2532
- "type":"list",
2533
- "member":{"shape":"ResourceAttribute"}
2534
- },
2535
- "SetStackPolicyInput":{
2536
- "type":"structure",
2537
- "required":["StackName"],
2538
- "members":{
2539
- "StackName":{"shape":"StackName"},
2540
- "StackPolicyBody":{"shape":"StackPolicyBody"},
2541
- "StackPolicyURL":{"shape":"StackPolicyURL"}
2542
- }
2543
- },
2544
- "SetTypeDefaultVersionInput":{
2545
- "type":"structure",
2546
- "members":{
2547
- "Arn":{"shape":"PrivateTypeArn"},
2548
- "Type":{"shape":"RegistryType"},
2549
- "TypeName":{"shape":"TypeName"},
2550
- "VersionId":{"shape":"TypeVersionId"}
2551
- }
2552
- },
2553
- "SetTypeDefaultVersionOutput":{
2554
- "type":"structure",
2555
- "members":{
2556
- }
2557
- },
2558
- "SignalResourceInput":{
2559
- "type":"structure",
2560
- "required":[
2561
- "StackName",
2562
- "LogicalResourceId",
2563
- "UniqueId",
2564
- "Status"
2565
- ],
2566
- "members":{
2567
- "StackName":{"shape":"StackNameOrId"},
2568
- "LogicalResourceId":{"shape":"LogicalResourceId"},
2569
- "UniqueId":{"shape":"ResourceSignalUniqueId"},
2570
- "Status":{"shape":"ResourceSignalStatus"}
2571
- }
2572
- },
2573
- "Stack":{
2574
- "type":"structure",
2575
- "required":[
2576
- "StackName",
2577
- "CreationTime",
2578
- "StackStatus"
2579
- ],
2580
- "members":{
2581
- "StackId":{"shape":"StackId"},
2582
- "StackName":{"shape":"StackName"},
2583
- "ChangeSetId":{"shape":"ChangeSetId"},
2584
- "Description":{"shape":"Description"},
2585
- "Parameters":{"shape":"Parameters"},
2586
- "CreationTime":{"shape":"CreationTime"},
2587
- "DeletionTime":{"shape":"DeletionTime"},
2588
- "LastUpdatedTime":{"shape":"LastUpdatedTime"},
2589
- "RollbackConfiguration":{"shape":"RollbackConfiguration"},
2590
- "StackStatus":{"shape":"StackStatus"},
2591
- "StackStatusReason":{"shape":"StackStatusReason"},
2592
- "DisableRollback":{"shape":"DisableRollback"},
2593
- "NotificationARNs":{"shape":"NotificationARNs"},
2594
- "TimeoutInMinutes":{"shape":"TimeoutMinutes"},
2595
- "Capabilities":{"shape":"Capabilities"},
2596
- "Outputs":{"shape":"Outputs"},
2597
- "RoleARN":{"shape":"RoleARN"},
2598
- "Tags":{"shape":"Tags"},
2599
- "EnableTerminationProtection":{"shape":"EnableTerminationProtection"},
2600
- "ParentId":{"shape":"StackId"},
2601
- "RootId":{"shape":"StackId"},
2602
- "DriftInformation":{"shape":"StackDriftInformation"}
2603
- }
2604
- },
2605
- "StackDriftDetectionId":{
2606
- "type":"string",
2607
- "max":36,
2608
- "min":1
2609
- },
2610
- "StackDriftDetectionStatus":{
2611
- "type":"string",
2612
- "enum":[
2613
- "DETECTION_IN_PROGRESS",
2614
- "DETECTION_FAILED",
2615
- "DETECTION_COMPLETE"
2616
- ]
2617
- },
2618
- "StackDriftDetectionStatusReason":{"type":"string"},
2619
- "StackDriftInformation":{
2620
- "type":"structure",
2621
- "required":["StackDriftStatus"],
2622
- "members":{
2623
- "StackDriftStatus":{"shape":"StackDriftStatus"},
2624
- "LastCheckTimestamp":{"shape":"Timestamp"}
2625
- }
2626
- },
2627
- "StackDriftInformationSummary":{
2628
- "type":"structure",
2629
- "required":["StackDriftStatus"],
2630
- "members":{
2631
- "StackDriftStatus":{"shape":"StackDriftStatus"},
2632
- "LastCheckTimestamp":{"shape":"Timestamp"}
2633
- }
2634
- },
2635
- "StackDriftStatus":{
2636
- "type":"string",
2637
- "enum":[
2638
- "DRIFTED",
2639
- "IN_SYNC",
2640
- "UNKNOWN",
2641
- "NOT_CHECKED"
2642
- ]
2643
- },
2644
- "StackEvent":{
2645
- "type":"structure",
2646
- "required":[
2647
- "StackId",
2648
- "EventId",
2649
- "StackName",
2650
- "Timestamp"
2651
- ],
2652
- "members":{
2653
- "StackId":{"shape":"StackId"},
2654
- "EventId":{"shape":"EventId"},
2655
- "StackName":{"shape":"StackName"},
2656
- "LogicalResourceId":{"shape":"LogicalResourceId"},
2657
- "PhysicalResourceId":{"shape":"PhysicalResourceId"},
2658
- "ResourceType":{"shape":"ResourceType"},
2659
- "Timestamp":{"shape":"Timestamp"},
2660
- "ResourceStatus":{"shape":"ResourceStatus"},
2661
- "ResourceStatusReason":{"shape":"ResourceStatusReason"},
2662
- "ResourceProperties":{"shape":"ResourceProperties"},
2663
- "ClientRequestToken":{"shape":"ClientRequestToken"}
2664
- }
2665
- },
2666
- "StackEvents":{
2667
- "type":"list",
2668
- "member":{"shape":"StackEvent"}
2669
- },
2670
- "StackId":{"type":"string"},
2671
- "StackInstance":{
2672
- "type":"structure",
2673
- "members":{
2674
- "StackSetId":{"shape":"StackSetId"},
2675
- "Region":{"shape":"Region"},
2676
- "Account":{"shape":"Account"},
2677
- "StackId":{"shape":"StackId"},
2678
- "ParameterOverrides":{"shape":"Parameters"},
2679
- "Status":{"shape":"StackInstanceStatus"},
2680
- "StatusReason":{"shape":"Reason"},
2681
- "OrganizationalUnitId":{"shape":"OrganizationalUnitId"},
2682
- "DriftStatus":{"shape":"StackDriftStatus"},
2683
- "LastDriftCheckTimestamp":{"shape":"Timestamp"}
2684
- }
2685
- },
2686
- "StackInstanceNotFoundException":{
2687
- "type":"structure",
2688
- "members":{
2689
- },
2690
- "error":{
2691
- "code":"StackInstanceNotFoundException",
2692
- "httpStatusCode":404,
2693
- "senderFault":true
2694
- },
2695
- "exception":true
2696
- },
2697
- "StackInstanceStatus":{
2698
- "type":"string",
2699
- "enum":[
2700
- "CURRENT",
2701
- "OUTDATED",
2702
- "INOPERABLE"
2703
- ]
2704
- },
2705
- "StackInstanceSummaries":{
2706
- "type":"list",
2707
- "member":{"shape":"StackInstanceSummary"}
2708
- },
2709
- "StackInstanceSummary":{
2710
- "type":"structure",
2711
- "members":{
2712
- "StackSetId":{"shape":"StackSetId"},
2713
- "Region":{"shape":"Region"},
2714
- "Account":{"shape":"Account"},
2715
- "StackId":{"shape":"StackId"},
2716
- "Status":{"shape":"StackInstanceStatus"},
2717
- "StatusReason":{"shape":"Reason"},
2718
- "OrganizationalUnitId":{"shape":"OrganizationalUnitId"},
2719
- "DriftStatus":{"shape":"StackDriftStatus"},
2720
- "LastDriftCheckTimestamp":{"shape":"Timestamp"}
2721
- }
2722
- },
2723
- "StackName":{"type":"string"},
2724
- "StackNameOrId":{
2725
- "type":"string",
2726
- "min":1,
2727
- "pattern":"([a-zA-Z][-a-zA-Z0-9]*)|(arn:\\b(aws|aws-us-gov|aws-cn)\\b:[-a-zA-Z0-9:/._+]*)"
2728
- },
2729
- "StackPolicyBody":{
2730
- "type":"string",
2731
- "max":16384,
2732
- "min":1
2733
- },
2734
- "StackPolicyDuringUpdateBody":{
2735
- "type":"string",
2736
- "max":16384,
2737
- "min":1
2738
- },
2739
- "StackPolicyDuringUpdateURL":{
2740
- "type":"string",
2741
- "max":1350,
2742
- "min":1
2743
- },
2744
- "StackPolicyURL":{
2745
- "type":"string",
2746
- "max":1350,
2747
- "min":1
2748
- },
2749
- "StackResource":{
2750
- "type":"structure",
2751
- "required":[
2752
- "LogicalResourceId",
2753
- "ResourceType",
2754
- "Timestamp",
2755
- "ResourceStatus"
2756
- ],
2757
- "members":{
2758
- "StackName":{"shape":"StackName"},
2759
- "StackId":{"shape":"StackId"},
2760
- "LogicalResourceId":{"shape":"LogicalResourceId"},
2761
- "PhysicalResourceId":{"shape":"PhysicalResourceId"},
2762
- "ResourceType":{"shape":"ResourceType"},
2763
- "Timestamp":{"shape":"Timestamp"},
2764
- "ResourceStatus":{"shape":"ResourceStatus"},
2765
- "ResourceStatusReason":{"shape":"ResourceStatusReason"},
2766
- "Description":{"shape":"Description"},
2767
- "DriftInformation":{"shape":"StackResourceDriftInformation"}
2768
- }
2769
- },
2770
- "StackResourceDetail":{
2771
- "type":"structure",
2772
- "required":[
2773
- "LogicalResourceId",
2774
- "ResourceType",
2775
- "LastUpdatedTimestamp",
2776
- "ResourceStatus"
2777
- ],
2778
- "members":{
2779
- "StackName":{"shape":"StackName"},
2780
- "StackId":{"shape":"StackId"},
2781
- "LogicalResourceId":{"shape":"LogicalResourceId"},
2782
- "PhysicalResourceId":{"shape":"PhysicalResourceId"},
2783
- "ResourceType":{"shape":"ResourceType"},
2784
- "LastUpdatedTimestamp":{"shape":"Timestamp"},
2785
- "ResourceStatus":{"shape":"ResourceStatus"},
2786
- "ResourceStatusReason":{"shape":"ResourceStatusReason"},
2787
- "Description":{"shape":"Description"},
2788
- "Metadata":{"shape":"Metadata"},
2789
- "DriftInformation":{"shape":"StackResourceDriftInformation"}
2790
- }
2791
- },
2792
- "StackResourceDrift":{
2793
- "type":"structure",
2794
- "required":[
2795
- "StackId",
2796
- "LogicalResourceId",
2797
- "ResourceType",
2798
- "StackResourceDriftStatus",
2799
- "Timestamp"
2800
- ],
2801
- "members":{
2802
- "StackId":{"shape":"StackId"},
2803
- "LogicalResourceId":{"shape":"LogicalResourceId"},
2804
- "PhysicalResourceId":{"shape":"PhysicalResourceId"},
2805
- "PhysicalResourceIdContext":{"shape":"PhysicalResourceIdContext"},
2806
- "ResourceType":{"shape":"ResourceType"},
2807
- "ExpectedProperties":{"shape":"Properties"},
2808
- "ActualProperties":{"shape":"Properties"},
2809
- "PropertyDifferences":{"shape":"PropertyDifferences"},
2810
- "StackResourceDriftStatus":{"shape":"StackResourceDriftStatus"},
2811
- "Timestamp":{"shape":"Timestamp"}
2812
- }
2813
- },
2814
- "StackResourceDriftInformation":{
2815
- "type":"structure",
2816
- "required":["StackResourceDriftStatus"],
2817
- "members":{
2818
- "StackResourceDriftStatus":{"shape":"StackResourceDriftStatus"},
2819
- "LastCheckTimestamp":{"shape":"Timestamp"}
2820
- }
2821
- },
2822
- "StackResourceDriftInformationSummary":{
2823
- "type":"structure",
2824
- "required":["StackResourceDriftStatus"],
2825
- "members":{
2826
- "StackResourceDriftStatus":{"shape":"StackResourceDriftStatus"},
2827
- "LastCheckTimestamp":{"shape":"Timestamp"}
2828
- }
2829
- },
2830
- "StackResourceDriftStatus":{
2831
- "type":"string",
2832
- "enum":[
2833
- "IN_SYNC",
2834
- "MODIFIED",
2835
- "DELETED",
2836
- "NOT_CHECKED"
2837
- ]
2838
- },
2839
- "StackResourceDriftStatusFilters":{
2840
- "type":"list",
2841
- "member":{"shape":"StackResourceDriftStatus"},
2842
- "max":4,
2843
- "min":1
2844
- },
2845
- "StackResourceDrifts":{
2846
- "type":"list",
2847
- "member":{"shape":"StackResourceDrift"}
2848
- },
2849
- "StackResourceSummaries":{
2850
- "type":"list",
2851
- "member":{"shape":"StackResourceSummary"}
2852
- },
2853
- "StackResourceSummary":{
2854
- "type":"structure",
2855
- "required":[
2856
- "LogicalResourceId",
2857
- "ResourceType",
2858
- "LastUpdatedTimestamp",
2859
- "ResourceStatus"
2860
- ],
2861
- "members":{
2862
- "LogicalResourceId":{"shape":"LogicalResourceId"},
2863
- "PhysicalResourceId":{"shape":"PhysicalResourceId"},
2864
- "ResourceType":{"shape":"ResourceType"},
2865
- "LastUpdatedTimestamp":{"shape":"Timestamp"},
2866
- "ResourceStatus":{"shape":"ResourceStatus"},
2867
- "ResourceStatusReason":{"shape":"ResourceStatusReason"},
2868
- "DriftInformation":{"shape":"StackResourceDriftInformationSummary"}
2869
- }
2870
- },
2871
- "StackResources":{
2872
- "type":"list",
2873
- "member":{"shape":"StackResource"}
2874
- },
2875
- "StackSet":{
2876
- "type":"structure",
2877
- "members":{
2878
- "StackSetName":{"shape":"StackSetName"},
2879
- "StackSetId":{"shape":"StackSetId"},
2880
- "Description":{"shape":"Description"},
2881
- "Status":{"shape":"StackSetStatus"},
2882
- "TemplateBody":{"shape":"TemplateBody"},
2883
- "Parameters":{"shape":"Parameters"},
2884
- "Capabilities":{"shape":"Capabilities"},
2885
- "Tags":{"shape":"Tags"},
2886
- "StackSetARN":{"shape":"StackSetARN"},
2887
- "AdministrationRoleARN":{"shape":"RoleARN"},
2888
- "ExecutionRoleName":{"shape":"ExecutionRoleName"},
2889
- "StackSetDriftDetectionDetails":{"shape":"StackSetDriftDetectionDetails"},
2890
- "AutoDeployment":{"shape":"AutoDeployment"},
2891
- "PermissionModel":{"shape":"PermissionModels"},
2892
- "OrganizationalUnitIds":{"shape":"OrganizationalUnitIdList"}
2893
- }
2894
- },
2895
- "StackSetARN":{"type":"string"},
2896
- "StackSetDriftDetectionDetails":{
2897
- "type":"structure",
2898
- "members":{
2899
- "DriftStatus":{"shape":"StackSetDriftStatus"},
2900
- "DriftDetectionStatus":{"shape":"StackSetDriftDetectionStatus"},
2901
- "LastDriftCheckTimestamp":{"shape":"Timestamp"},
2902
- "TotalStackInstancesCount":{"shape":"TotalStackInstancesCount"},
2903
- "DriftedStackInstancesCount":{"shape":"DriftedStackInstancesCount"},
2904
- "InSyncStackInstancesCount":{"shape":"InSyncStackInstancesCount"},
2905
- "InProgressStackInstancesCount":{"shape":"InProgressStackInstancesCount"},
2906
- "FailedStackInstancesCount":{"shape":"FailedStackInstancesCount"}
2907
- }
2908
- },
2909
- "StackSetDriftDetectionStatus":{
2910
- "type":"string",
2911
- "enum":[
2912
- "COMPLETED",
2913
- "FAILED",
2914
- "PARTIAL_SUCCESS",
2915
- "IN_PROGRESS",
2916
- "STOPPED"
2917
- ]
2918
- },
2919
- "StackSetDriftStatus":{
2920
- "type":"string",
2921
- "enum":[
2922
- "DRIFTED",
2923
- "IN_SYNC",
2924
- "NOT_CHECKED"
2925
- ]
2926
- },
2927
- "StackSetId":{"type":"string"},
2928
- "StackSetName":{"type":"string"},
2929
- "StackSetNameOrId":{
2930
- "type":"string",
2931
- "pattern":"[a-zA-Z][-a-zA-Z0-9]*(?::[a-zA-Z0-9]{8}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{4}-[a-zA-Z0-9]{12})?"
2932
- },
2933
- "StackSetNotEmptyException":{
2934
- "type":"structure",
2935
- "members":{
2936
- },
2937
- "error":{
2938
- "code":"StackSetNotEmptyException",
2939
- "httpStatusCode":409,
2940
- "senderFault":true
2941
- },
2942
- "exception":true
2943
- },
2944
- "StackSetNotFoundException":{
2945
- "type":"structure",
2946
- "members":{
2947
- },
2948
- "error":{
2949
- "code":"StackSetNotFoundException",
2950
- "httpStatusCode":404,
2951
- "senderFault":true
2952
- },
2953
- "exception":true
2954
- },
2955
- "StackSetOperation":{
2956
- "type":"structure",
2957
- "members":{
2958
- "OperationId":{"shape":"ClientRequestToken"},
2959
- "StackSetId":{"shape":"StackSetId"},
2960
- "Action":{"shape":"StackSetOperationAction"},
2961
- "Status":{"shape":"StackSetOperationStatus"},
2962
- "OperationPreferences":{"shape":"StackSetOperationPreferences"},
2963
- "RetainStacks":{"shape":"RetainStacksNullable"},
2964
- "AdministrationRoleARN":{"shape":"RoleARN"},
2965
- "ExecutionRoleName":{"shape":"ExecutionRoleName"},
2966
- "CreationTimestamp":{"shape":"Timestamp"},
2967
- "EndTimestamp":{"shape":"Timestamp"},
2968
- "DeploymentTargets":{"shape":"DeploymentTargets"},
2969
- "StackSetDriftDetectionDetails":{"shape":"StackSetDriftDetectionDetails"}
2970
- }
2971
- },
2972
- "StackSetOperationAction":{
2973
- "type":"string",
2974
- "enum":[
2975
- "CREATE",
2976
- "UPDATE",
2977
- "DELETE",
2978
- "DETECT_DRIFT"
2979
- ]
2980
- },
2981
- "StackSetOperationPreferences":{
2982
- "type":"structure",
2983
- "members":{
2984
- "RegionOrder":{"shape":"RegionList"},
2985
- "FailureToleranceCount":{"shape":"FailureToleranceCount"},
2986
- "FailureTolerancePercentage":{"shape":"FailureTolerancePercentage"},
2987
- "MaxConcurrentCount":{"shape":"MaxConcurrentCount"},
2988
- "MaxConcurrentPercentage":{"shape":"MaxConcurrentPercentage"}
2989
- }
2990
- },
2991
- "StackSetOperationResultStatus":{
2992
- "type":"string",
2993
- "enum":[
2994
- "PENDING",
2995
- "RUNNING",
2996
- "SUCCEEDED",
2997
- "FAILED",
2998
- "CANCELLED"
2999
- ]
3000
- },
3001
- "StackSetOperationResultSummaries":{
3002
- "type":"list",
3003
- "member":{"shape":"StackSetOperationResultSummary"}
3004
- },
3005
- "StackSetOperationResultSummary":{
3006
- "type":"structure",
3007
- "members":{
3008
- "Account":{"shape":"Account"},
3009
- "Region":{"shape":"Region"},
3010
- "Status":{"shape":"StackSetOperationResultStatus"},
3011
- "StatusReason":{"shape":"Reason"},
3012
- "AccountGateResult":{"shape":"AccountGateResult"},
3013
- "OrganizationalUnitId":{"shape":"OrganizationalUnitId"}
3014
- }
3015
- },
3016
- "StackSetOperationStatus":{
3017
- "type":"string",
3018
- "enum":[
3019
- "RUNNING",
3020
- "SUCCEEDED",
3021
- "FAILED",
3022
- "STOPPING",
3023
- "STOPPED",
3024
- "QUEUED"
3025
- ]
3026
- },
3027
- "StackSetOperationSummaries":{
3028
- "type":"list",
3029
- "member":{"shape":"StackSetOperationSummary"}
3030
- },
3031
- "StackSetOperationSummary":{
3032
- "type":"structure",
3033
- "members":{
3034
- "OperationId":{"shape":"ClientRequestToken"},
3035
- "Action":{"shape":"StackSetOperationAction"},
3036
- "Status":{"shape":"StackSetOperationStatus"},
3037
- "CreationTimestamp":{"shape":"Timestamp"},
3038
- "EndTimestamp":{"shape":"Timestamp"}
3039
- }
3040
- },
3041
- "StackSetStatus":{
3042
- "type":"string",
3043
- "enum":[
3044
- "ACTIVE",
3045
- "DELETED"
3046
- ]
3047
- },
3048
- "StackSetSummaries":{
3049
- "type":"list",
3050
- "member":{"shape":"StackSetSummary"}
3051
- },
3052
- "StackSetSummary":{
3053
- "type":"structure",
3054
- "members":{
3055
- "StackSetName":{"shape":"StackSetName"},
3056
- "StackSetId":{"shape":"StackSetId"},
3057
- "Description":{"shape":"Description"},
3058
- "Status":{"shape":"StackSetStatus"},
3059
- "AutoDeployment":{"shape":"AutoDeployment"},
3060
- "PermissionModel":{"shape":"PermissionModels"},
3061
- "DriftStatus":{"shape":"StackDriftStatus"},
3062
- "LastDriftCheckTimestamp":{"shape":"Timestamp"}
3063
- }
3064
- },
3065
- "StackStatus":{
3066
- "type":"string",
3067
- "enum":[
3068
- "CREATE_IN_PROGRESS",
3069
- "CREATE_FAILED",
3070
- "CREATE_COMPLETE",
3071
- "ROLLBACK_IN_PROGRESS",
3072
- "ROLLBACK_FAILED",
3073
- "ROLLBACK_COMPLETE",
3074
- "DELETE_IN_PROGRESS",
3075
- "DELETE_FAILED",
3076
- "DELETE_COMPLETE",
3077
- "UPDATE_IN_PROGRESS",
3078
- "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS",
3079
- "UPDATE_COMPLETE",
3080
- "UPDATE_ROLLBACK_IN_PROGRESS",
3081
- "UPDATE_ROLLBACK_FAILED",
3082
- "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS",
3083
- "UPDATE_ROLLBACK_COMPLETE",
3084
- "REVIEW_IN_PROGRESS",
3085
- "IMPORT_IN_PROGRESS",
3086
- "IMPORT_COMPLETE",
3087
- "IMPORT_ROLLBACK_IN_PROGRESS",
3088
- "IMPORT_ROLLBACK_FAILED",
3089
- "IMPORT_ROLLBACK_COMPLETE"
3090
- ]
3091
- },
3092
- "StackStatusFilter":{
3093
- "type":"list",
3094
- "member":{"shape":"StackStatus"}
3095
- },
3096
- "StackStatusReason":{"type":"string"},
3097
- "StackSummaries":{
3098
- "type":"list",
3099
- "member":{"shape":"StackSummary"}
3100
- },
3101
- "StackSummary":{
3102
- "type":"structure",
3103
- "required":[
3104
- "StackName",
3105
- "CreationTime",
3106
- "StackStatus"
3107
- ],
3108
- "members":{
3109
- "StackId":{"shape":"StackId"},
3110
- "StackName":{"shape":"StackName"},
3111
- "TemplateDescription":{"shape":"TemplateDescription"},
3112
- "CreationTime":{"shape":"CreationTime"},
3113
- "LastUpdatedTime":{"shape":"LastUpdatedTime"},
3114
- "DeletionTime":{"shape":"DeletionTime"},
3115
- "StackStatus":{"shape":"StackStatus"},
3116
- "StackStatusReason":{"shape":"StackStatusReason"},
3117
- "ParentId":{"shape":"StackId"},
3118
- "RootId":{"shape":"StackId"},
3119
- "DriftInformation":{"shape":"StackDriftInformationSummary"}
3120
- }
3121
- },
3122
- "Stacks":{
3123
- "type":"list",
3124
- "member":{"shape":"Stack"}
3125
- },
3126
- "StageList":{
3127
- "type":"list",
3128
- "member":{"shape":"TemplateStage"}
3129
- },
3130
- "StaleRequestException":{
3131
- "type":"structure",
3132
- "members":{
3133
- },
3134
- "error":{
3135
- "code":"StaleRequestException",
3136
- "httpStatusCode":409,
3137
- "senderFault":true
3138
- },
3139
- "exception":true
3140
- },
3141
- "StatusMessage":{
3142
- "type":"string",
3143
- "max":1024
3144
- },
3145
- "StopStackSetOperationInput":{
3146
- "type":"structure",
3147
- "required":[
3148
- "StackSetName",
3149
- "OperationId"
3150
- ],
3151
- "members":{
3152
- "StackSetName":{"shape":"StackSetName"},
3153
- "OperationId":{"shape":"ClientRequestToken"}
3154
- }
3155
- },
3156
- "StopStackSetOperationOutput":{
3157
- "type":"structure",
3158
- "members":{
3159
- }
3160
- },
3161
- "Tag":{
3162
- "type":"structure",
3163
- "required":[
3164
- "Key",
3165
- "Value"
3166
- ],
3167
- "members":{
3168
- "Key":{"shape":"TagKey"},
3169
- "Value":{"shape":"TagValue"}
3170
- }
3171
- },
3172
- "TagKey":{
3173
- "type":"string",
3174
- "max":128,
3175
- "min":1
3176
- },
3177
- "TagValue":{
3178
- "type":"string",
3179
- "max":256,
3180
- "min":1
3181
- },
3182
- "Tags":{
3183
- "type":"list",
3184
- "member":{"shape":"Tag"},
3185
- "max":50
3186
- },
3187
- "TemplateBody":{
3188
- "type":"string",
3189
- "min":1
3190
- },
3191
- "TemplateDescription":{"type":"string"},
3192
- "TemplateParameter":{
3193
- "type":"structure",
3194
- "members":{
3195
- "ParameterKey":{"shape":"ParameterKey"},
3196
- "DefaultValue":{"shape":"ParameterValue"},
3197
- "NoEcho":{"shape":"NoEcho"},
3198
- "Description":{"shape":"Description"}
3199
- }
3200
- },
3201
- "TemplateParameters":{
3202
- "type":"list",
3203
- "member":{"shape":"TemplateParameter"}
3204
- },
3205
- "TemplateStage":{
3206
- "type":"string",
3207
- "enum":[
3208
- "Original",
3209
- "Processed"
3210
- ]
3211
- },
3212
- "TemplateURL":{
3213
- "type":"string",
3214
- "max":1024,
3215
- "min":1
3216
- },
3217
- "TimeoutMinutes":{
3218
- "type":"integer",
3219
- "min":1
3220
- },
3221
- "Timestamp":{"type":"timestamp"},
3222
- "TokenAlreadyExistsException":{
3223
- "type":"structure",
3224
- "members":{
3225
- },
3226
- "error":{
3227
- "code":"TokenAlreadyExistsException",
3228
- "httpStatusCode":400,
3229
- "senderFault":true
3230
- },
3231
- "exception":true
3232
- },
3233
- "TotalStackInstancesCount":{
3234
- "type":"integer",
3235
- "min":0
3236
- },
3237
- "TransformName":{"type":"string"},
3238
- "TransformsList":{
3239
- "type":"list",
3240
- "member":{"shape":"TransformName"}
3241
- },
3242
- "Type":{"type":"string"},
3243
- "TypeArn":{
3244
- "type":"string",
3245
- "max":1024,
3246
- "pattern":"arn:aws[A-Za-z0-9-]{0,64}:cloudformation:[A-Za-z0-9-]{1,64}:([0-9]{12})?:type/.+"
3247
- },
3248
- "TypeName":{
3249
- "type":"string",
3250
- "max":196,
3251
- "min":10,
3252
- "pattern":"[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}"
3253
- },
3254
- "TypeNotFoundException":{
3255
- "type":"structure",
3256
- "members":{
3257
- },
3258
- "error":{
3259
- "code":"TypeNotFoundException",
3260
- "httpStatusCode":404,
3261
- "senderFault":true
3262
- },
3263
- "exception":true
3264
- },
3265
- "TypeSchema":{
3266
- "type":"string",
3267
- "max":16777216,
3268
- "min":1
3269
- },
3270
- "TypeSummaries":{
3271
- "type":"list",
3272
- "member":{"shape":"TypeSummary"}
3273
- },
3274
- "TypeSummary":{
3275
- "type":"structure",
3276
- "members":{
3277
- "Type":{"shape":"RegistryType"},
3278
- "TypeName":{"shape":"TypeName"},
3279
- "DefaultVersionId":{"shape":"TypeVersionId"},
3280
- "TypeArn":{"shape":"TypeArn"},
3281
- "LastUpdated":{"shape":"Timestamp"},
3282
- "Description":{"shape":"Description"}
3283
- }
3284
- },
3285
- "TypeVersionId":{
3286
- "type":"string",
3287
- "max":128,
3288
- "min":1,
3289
- "pattern":"[A-Za-z0-9-]+"
3290
- },
3291
- "TypeVersionSummaries":{
3292
- "type":"list",
3293
- "member":{"shape":"TypeVersionSummary"}
3294
- },
3295
- "TypeVersionSummary":{
3296
- "type":"structure",
3297
- "members":{
3298
- "Type":{"shape":"RegistryType"},
3299
- "TypeName":{"shape":"TypeName"},
3300
- "VersionId":{"shape":"TypeVersionId"},
3301
- "Arn":{"shape":"TypeArn"},
3302
- "TimeCreated":{"shape":"Timestamp"},
3303
- "Description":{"shape":"Description"}
3304
- }
3305
- },
3306
- "UpdateStackInput":{
3307
- "type":"structure",
3308
- "required":["StackName"],
3309
- "members":{
3310
- "StackName":{"shape":"StackName"},
3311
- "TemplateBody":{"shape":"TemplateBody"},
3312
- "TemplateURL":{"shape":"TemplateURL"},
3313
- "UsePreviousTemplate":{"shape":"UsePreviousTemplate"},
3314
- "StackPolicyDuringUpdateBody":{"shape":"StackPolicyDuringUpdateBody"},
3315
- "StackPolicyDuringUpdateURL":{"shape":"StackPolicyDuringUpdateURL"},
3316
- "Parameters":{"shape":"Parameters"},
3317
- "Capabilities":{"shape":"Capabilities"},
3318
- "ResourceTypes":{"shape":"ResourceTypes"},
3319
- "RoleARN":{"shape":"RoleARN"},
3320
- "RollbackConfiguration":{"shape":"RollbackConfiguration"},
3321
- "StackPolicyBody":{"shape":"StackPolicyBody"},
3322
- "StackPolicyURL":{"shape":"StackPolicyURL"},
3323
- "NotificationARNs":{"shape":"NotificationARNs"},
3324
- "Tags":{"shape":"Tags"},
3325
- "ClientRequestToken":{"shape":"ClientRequestToken"}
3326
- }
3327
- },
3328
- "UpdateStackInstancesInput":{
3329
- "type":"structure",
3330
- "required":[
3331
- "StackSetName",
3332
- "Regions"
3333
- ],
3334
- "members":{
3335
- "StackSetName":{"shape":"StackSetNameOrId"},
3336
- "Accounts":{"shape":"AccountList"},
3337
- "DeploymentTargets":{"shape":"DeploymentTargets"},
3338
- "Regions":{"shape":"RegionList"},
3339
- "ParameterOverrides":{"shape":"Parameters"},
3340
- "OperationPreferences":{"shape":"StackSetOperationPreferences"},
3341
- "OperationId":{
3342
- "shape":"ClientRequestToken",
3343
- "idempotencyToken":true
3344
- }
3345
- }
3346
- },
3347
- "UpdateStackInstancesOutput":{
3348
- "type":"structure",
3349
- "members":{
3350
- "OperationId":{"shape":"ClientRequestToken"}
3351
- }
3352
- },
3353
- "UpdateStackOutput":{
3354
- "type":"structure",
3355
- "members":{
3356
- "StackId":{"shape":"StackId"}
3357
- }
3358
- },
3359
- "UpdateStackSetInput":{
3360
- "type":"structure",
3361
- "required":["StackSetName"],
3362
- "members":{
3363
- "StackSetName":{"shape":"StackSetName"},
3364
- "Description":{"shape":"Description"},
3365
- "TemplateBody":{"shape":"TemplateBody"},
3366
- "TemplateURL":{"shape":"TemplateURL"},
3367
- "UsePreviousTemplate":{"shape":"UsePreviousTemplate"},
3368
- "Parameters":{"shape":"Parameters"},
3369
- "Capabilities":{"shape":"Capabilities"},
3370
- "Tags":{"shape":"Tags"},
3371
- "OperationPreferences":{"shape":"StackSetOperationPreferences"},
3372
- "AdministrationRoleARN":{"shape":"RoleARN"},
3373
- "ExecutionRoleName":{"shape":"ExecutionRoleName"},
3374
- "DeploymentTargets":{"shape":"DeploymentTargets"},
3375
- "PermissionModel":{"shape":"PermissionModels"},
3376
- "AutoDeployment":{"shape":"AutoDeployment"},
3377
- "OperationId":{
3378
- "shape":"ClientRequestToken",
3379
- "idempotencyToken":true
3380
- },
3381
- "Accounts":{"shape":"AccountList"},
3382
- "Regions":{"shape":"RegionList"}
3383
- }
3384
- },
3385
- "UpdateStackSetOutput":{
3386
- "type":"structure",
3387
- "members":{
3388
- "OperationId":{"shape":"ClientRequestToken"}
3389
- }
3390
- },
3391
- "UpdateTerminationProtectionInput":{
3392
- "type":"structure",
3393
- "required":[
3394
- "EnableTerminationProtection",
3395
- "StackName"
3396
- ],
3397
- "members":{
3398
- "EnableTerminationProtection":{"shape":"EnableTerminationProtection"},
3399
- "StackName":{"shape":"StackNameOrId"}
3400
- }
3401
- },
3402
- "UpdateTerminationProtectionOutput":{
3403
- "type":"structure",
3404
- "members":{
3405
- "StackId":{"shape":"StackId"}
3406
- }
3407
- },
3408
- "Url":{"type":"string"},
3409
- "UsePreviousTemplate":{"type":"boolean"},
3410
- "UsePreviousValue":{"type":"boolean"},
3411
- "ValidateTemplateInput":{
3412
- "type":"structure",
3413
- "members":{
3414
- "TemplateBody":{"shape":"TemplateBody"},
3415
- "TemplateURL":{"shape":"TemplateURL"}
3416
- }
3417
- },
3418
- "ValidateTemplateOutput":{
3419
- "type":"structure",
3420
- "members":{
3421
- "Parameters":{"shape":"TemplateParameters"},
3422
- "Description":{"shape":"Description"},
3423
- "Capabilities":{"shape":"Capabilities"},
3424
- "CapabilitiesReason":{"shape":"CapabilitiesReason"},
3425
- "DeclaredTransforms":{"shape":"TransformsList"}
3426
- }
3427
- },
3428
- "Value":{"type":"string"},
3429
- "Version":{"type":"string"},
3430
- "Visibility":{
3431
- "type":"string",
3432
- "enum":[
3433
- "PUBLIC",
3434
- "PRIVATE"
3435
- ]
3436
- }
3437
- }
3438
- }