aws-sdk-core 2.11.400 → 3.77.0

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