aws-sdk-core 2.11.405 → 3.76.0

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