aws-sdk-core 2.11.632 → 3.0.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1328) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3541 -3615
  4. data/lib/aws-sdk-core.rb +64 -615
  5. data/lib/aws-sdk-core/client_stubs.rb +3 -64
  6. data/lib/aws-sdk-core/credential_provider.rb +2 -0
  7. data/lib/aws-sdk-core/credential_provider_chain.rb +1 -2
  8. data/lib/aws-sdk-core/eager_loader.rb +0 -1
  9. data/lib/aws-sdk-core/ecs_credentials.rb +10 -14
  10. data/lib/aws-sdk-core/errors.rb +12 -34
  11. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  12. data/lib/aws-sdk-core/instance_profile_credentials.rb +19 -126
  13. data/lib/aws-sdk-core/json.rb +4 -5
  14. data/lib/aws-sdk-core/json/handler.rb +3 -2
  15. data/lib/aws-sdk-core/json/parser.rb +1 -1
  16. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  17. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  18. data/lib/aws-sdk-core/pager.rb +30 -25
  19. data/lib/aws-sdk-core/param_converter.rb +3 -3
  20. data/lib/aws-sdk-core/param_validator.rb +10 -4
  21. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  22. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  23. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  24. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  25. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  26. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  27. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  28. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  29. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  30. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +23 -20
  31. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  32. data/lib/aws-sdk-core/plugins/retry_errors.rb +12 -31
  33. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  34. data/lib/aws-sdk-core/plugins/signature_v4.rb +131 -0
  35. data/lib/aws-sdk-core/plugins/stub_responses.rb +13 -11
  36. data/lib/aws-sdk-core/plugins/user_agent.rb +16 -6
  37. data/lib/aws-sdk-core/query.rb +5 -0
  38. data/lib/aws-sdk-core/query/handler.rb +15 -16
  39. data/lib/aws-sdk-core/query/param_builder.rb +1 -1
  40. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  41. data/lib/aws-sdk-core/rest.rb +10 -0
  42. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  43. data/lib/aws-sdk-core/rest/request/endpoint.rb +1 -1
  44. data/lib/aws-sdk-core/rest/request/headers.rb +0 -9
  45. data/lib/aws-sdk-core/rest/response/headers.rb +0 -7
  46. data/lib/aws-sdk-core/rest/response/parser.rb +14 -14
  47. data/lib/aws-sdk-core/shared_config.rb +1 -38
  48. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  49. data/lib/aws-sdk-core/structure.rb +17 -12
  50. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  51. data/lib/aws-sdk-core/stubbing/empty_stub.rb +6 -2
  52. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  53. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +1 -7
  54. data/lib/aws-sdk-core/stubbing/stub_data.rb +4 -0
  55. data/lib/aws-sdk-core/util.rb +39 -0
  56. data/lib/aws-sdk-core/version.rb +1 -1
  57. data/lib/aws-sdk-core/waiters.rb +3 -0
  58. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  59. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  60. data/lib/aws-sdk-core/xml.rb +9 -0
  61. data/lib/aws-sdk-core/xml/builder.rb +2 -2
  62. data/lib/aws-sdk-core/xml/error_handler.rb +1 -2
  63. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  64. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +1 -5
  65. data/lib/aws-sdk-core/xml/parser/frame.rb +4 -4
  66. data/lib/aws-sdk-sts.rb +45 -0
  67. data/lib/aws-sdk-sts/client.rb +1198 -0
  68. data/lib/aws-sdk-sts/client_api.rb +266 -0
  69. data/lib/aws-sdk-sts/customizations.rb +0 -0
  70. data/lib/aws-sdk-sts/errors.rb +23 -0
  71. data/lib/aws-sdk-sts/resource.rb +25 -0
  72. data/lib/aws-sdk-sts/types.rb +854 -0
  73. data/lib/seahorse.rb +50 -60
  74. data/lib/seahorse/client/base.rb +1 -7
  75. data/lib/seahorse/client/configuration.rb +2 -8
  76. data/lib/seahorse/client/events.rb +1 -1
  77. data/lib/seahorse/client/http/response.rb +3 -3
  78. data/lib/seahorse/client/logging/formatter.rb +3 -3
  79. data/lib/seahorse/client/logging/handler.rb +2 -0
  80. data/lib/seahorse/client/net_http/connection_pool.rb +3 -0
  81. data/lib/seahorse/client/net_http/handler.rb +4 -5
  82. data/lib/seahorse/client/net_http/patches.rb +1 -0
  83. data/lib/seahorse/client/plugin.rb +66 -6
  84. data/lib/seahorse/client/plugin_list.rb +1 -3
  85. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  86. data/lib/seahorse/client/plugins/logging.rb +17 -19
  87. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  88. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  89. data/lib/seahorse/client/plugins/response_target.rb +2 -0
  90. data/lib/seahorse/model/api.rb +4 -4
  91. data/lib/seahorse/model/operation.rb +0 -9
  92. data/lib/seahorse/model/shapes.rb +18 -2
  93. data/lib/seahorse/util.rb +0 -21
  94. metadata +42 -1249
  95. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -954
  96. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  97. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -34
  98. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1229
  99. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  100. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -28
  101. data/apis/acm-pca/2017-08-22/api-2.json +0 -1203
  102. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  103. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  104. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  105. data/apis/acm/2015-12-08/api-2.json +0 -873
  106. data/apis/acm/2015-12-08/examples-1.json +0 -5
  107. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  108. data/apis/acm/2015-12-08/smoke.json +0 -18
  109. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  110. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4146
  111. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  112. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  113. data/apis/amplify/2017-07-25/api-2.json +0 -2419
  114. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  115. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  116. data/apis/apigateway/2015-07-09/api-2.json +0 -5412
  117. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  118. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  119. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  120. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  121. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  122. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -7236
  123. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  124. data/apis/appconfig/2019-10-09/api-2.json +0 -1699
  125. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  126. data/apis/appconfig/2019-10-09/paginators-1.json +0 -34
  127. data/apis/appflow/2020-08-23/api-2.json +0 -2422
  128. data/apis/appflow/2020-08-23/examples-1.json +0 -5
  129. data/apis/appflow/2020-08-23/paginators-1.json +0 -23
  130. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -795
  131. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -221
  132. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  133. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  134. data/apis/application-insights/2018-11-25/api-2.json +0 -1261
  135. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  136. data/apis/application-insights/2018-11-25/paginators-1.json +0 -34
  137. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  138. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  139. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  140. data/apis/appmesh/2019-01-25/api-2.json +0 -3764
  141. data/apis/appmesh/2019-01-25/examples-1.json +0 -5
  142. data/apis/appmesh/2019-01-25/paginators-1.json +0 -52
  143. data/apis/appstream/2016-12-01/api-2.json +0 -2390
  144. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  145. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  146. data/apis/appstream/2016-12-01/smoke.json +0 -11
  147. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  148. data/apis/appsync/2017-07-25/api-2.json +0 -2294
  149. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  150. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  151. data/apis/athena/2017-05-18/api-2.json +0 -1403
  152. data/apis/athena/2017-05-18/examples-1.json +0 -5
  153. data/apis/athena/2017-05-18/paginators-1.json +0 -48
  154. data/apis/athena/2017-05-18/smoke.json +0 -11
  155. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  156. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  157. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2676
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1496
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  162. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  163. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  164. data/apis/backup/2018-11-15/api-2.json +0 -2522
  165. data/apis/backup/2018-11-15/examples-1.json +0 -5
  166. data/apis/backup/2018-11-15/paginators-1.json +0 -64
  167. data/apis/batch/2016-08-10/api-2.json +0 -1360
  168. data/apis/batch/2016-08-10/examples-1.json +0 -687
  169. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  170. data/apis/batch/2016-08-10/smoke.json +0 -11
  171. data/apis/braket/2019-09-01/api-2.json +0 -703
  172. data/apis/braket/2019-09-01/examples-1.json +0 -5
  173. data/apis/braket/2019-09-01/paginators-1.json +0 -16
  174. data/apis/budgets/2016-10-20/api-2.json +0 -1444
  175. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  176. data/apis/budgets/2016-10-20/paginators-1.json +0 -46
  177. data/apis/ce/2017-10-25/api-2.json +0 -2268
  178. data/apis/ce/2017-10-25/examples-1.json +0 -5
  179. data/apis/ce/2017-10-25/paginators-1.json +0 -19
  180. data/apis/chime/2018-05-01/api-2.json +0 -8964
  181. data/apis/chime/2018-05-01/examples-1.json +0 -5
  182. data/apis/chime/2018-05-01/paginators-1.json +0 -124
  183. data/apis/cloud9/2017-09-23/api-2.json +0 -691
  184. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  185. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  186. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  187. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  188. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  189. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  190. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  191. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  192. data/apis/cloudformation/2010-05-15/api-2.json +0 -3495
  193. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  194. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -91
  195. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  196. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  197. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -294
  198. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  199. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  200. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  201. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  202. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  203. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  204. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  205. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  206. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  207. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  208. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  209. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  210. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  211. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  212. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  213. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  214. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  215. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  216. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  217. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  218. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  219. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  220. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  221. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  222. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  223. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  224. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  225. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  226. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  227. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  228. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  229. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  230. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  231. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  232. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  233. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  234. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  235. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  236. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  237. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  238. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  239. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  240. data/apis/cloudfront/2019-03-26/api-2.json +0 -4035
  241. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  242. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  243. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  244. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  245. data/apis/cloudfront/2020-05-31/api-2.json +0 -5976
  246. data/apis/cloudfront/2020-05-31/examples-1.json +0 -5
  247. data/apis/cloudfront/2020-05-31/paginators-1.json +0 -32
  248. data/apis/cloudfront/2020-05-31/smoke.json +0 -20
  249. data/apis/cloudfront/2020-05-31/waiters-2.json +0 -47
  250. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  251. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  252. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  253. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -837
  254. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  255. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  256. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  257. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  258. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  259. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  260. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  261. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  262. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  263. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  264. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  265. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  266. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  267. data/apis/codeartifact/2018-09-22/api-2.json +0 -2420
  268. data/apis/codeartifact/2018-09-22/examples-1.json +0 -5
  269. data/apis/codeartifact/2018-09-22/paginators-1.json +0 -40
  270. data/apis/codebuild/2016-10-06/api-2.json +0 -2438
  271. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  272. data/apis/codebuild/2016-10-06/paginators-1.json +0 -73
  273. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  274. data/apis/codecommit/2015-04-13/api-2.json +0 -5517
  275. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  276. data/apis/codecommit/2015-04-13/paginators-1.json +0 -69
  277. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  278. data/apis/codedeploy/2014-10-06/api-2.json +0 -3281
  279. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  280. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  281. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  282. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  283. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -1058
  284. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  285. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -25
  286. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -1609
  287. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  288. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -25
  289. data/apis/codepipeline/2015-07-09/api-2.json +0 -2517
  290. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  291. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  292. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  293. data/apis/codestar-connections/2019-12-01/api-2.json +0 -515
  294. data/apis/codestar-connections/2019-12-01/examples-1.json +0 -5
  295. data/apis/codestar-connections/2019-12-01/paginators-1.json +0 -14
  296. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  297. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  298. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  299. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  300. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  301. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  302. data/apis/codestar/2017-04-19/smoke.json +0 -11
  303. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1069
  304. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  305. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -10
  306. data/apis/cognito-identity/2014-06-30/smoke.json +0 -20
  307. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5483
  308. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  309. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  310. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  311. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  312. data/apis/comprehend/2017-11-27/api-2.json +0 -3004
  313. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  314. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  315. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -1210
  316. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  317. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  318. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -869
  319. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  320. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  321. data/apis/config/2014-11-12/api-2.json +0 -4378
  322. data/apis/config/2014-11-12/examples-1.json +0 -5
  323. data/apis/config/2014-11-12/paginators-1.json +0 -26
  324. data/apis/config/2014-11-12/smoke.json +0 -19
  325. data/apis/connect/2017-08-08/api-2.json +0 -4452
  326. data/apis/connect/2017-08-08/examples-1.json +0 -5
  327. data/apis/connect/2017-08-08/paginators-1.json +0 -116
  328. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  329. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  330. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  331. data/apis/cur/2017-01-06/api-2.json +0 -295
  332. data/apis/cur/2017-01-06/examples-1.json +0 -102
  333. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  334. data/apis/cur/2017-01-06/smoke.json +0 -11
  335. data/apis/databrew/2017-07-25/api-2.json +0 -2127
  336. data/apis/databrew/2017-07-25/examples-1.json +0 -5
  337. data/apis/databrew/2017-07-25/paginators-1.json +0 -46
  338. data/apis/dataexchange/2017-07-25/api-2.json +0 -2272
  339. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  340. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  341. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  342. data/apis/datasync/2018-11-09/api-2.json +0 -1675
  343. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  344. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  345. data/apis/dax/2017-04-19/api-2.json +0 -1140
  346. data/apis/dax/2017-04-19/examples-1.json +0 -5
  347. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  348. data/apis/detective/2018-10-26/api-2.json +0 -486
  349. data/apis/detective/2018-10-26/examples-1.json +0 -5
  350. data/apis/detective/2018-10-26/paginators-1.json +0 -19
  351. data/apis/devicefarm/2015-06-23/api-2.json +0 -3619
  352. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  353. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -97
  354. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  355. data/apis/directconnect/2012-10-25/api-2.json +0 -2188
  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 -1369
  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 -696
  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 -2844
  367. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  368. data/apis/dms/2016-01-01/paginators-1.json +0 -94
  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 -2535
  372. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  373. data/apis/docdb/2014-10-31/paginators-1.json +0 -73
  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 -3179
  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 -3392
  386. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  387. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -36
  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/ebs/2019-11-02/api-2.json +0 -645
  392. data/apis/ebs/2019-11-02/examples-1.json +0 -5
  393. data/apis/ebs/2019-11-02/paginators-1.json +0 -14
  394. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  395. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  396. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  397. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  398. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  399. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  400. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  401. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  402. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  403. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  404. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  405. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  406. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  407. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  408. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  409. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  410. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  411. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  412. data/apis/ec2/2016-11-15/api-2.json +0 -31412
  413. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  414. data/apis/ec2/2016-11-15/paginators-1.json +0 -594
  415. data/apis/ec2/2016-11-15/resources-1.json +0 -2907
  416. data/apis/ec2/2016-11-15/smoke.json +0 -20
  417. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  418. data/apis/ecr/2015-09-21/api-2.json +0 -1684
  419. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  420. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  421. data/apis/ecr/2015-09-21/smoke.json +0 -18
  422. data/apis/ecr/2015-09-21/waiters-2.json +0 -45
  423. data/apis/ecs/2014-11-13/api-2.json +0 -3263
  424. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  425. data/apis/ecs/2014-11-13/paginators-1.json +0 -52
  426. data/apis/ecs/2014-11-13/smoke.json +0 -18
  427. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  428. data/apis/eks/2017-11-01/api-2.json +0 -1485
  429. data/apis/eks/2017-11-01/examples-1.json +0 -135
  430. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  431. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  432. data/apis/elastic-inference/2017-07-25/api-2.json +0 -426
  433. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  434. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -10
  435. data/apis/elasticache/2015-02-02/api-2.json +0 -4349
  436. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  437. data/apis/elasticache/2015-02-02/paginators-1.json +0 -106
  438. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  439. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  440. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2617
  441. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  442. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -42
  443. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  444. data/apis/elasticbeanstalk/2010-12-01/waiters-2.json +0 -63
  445. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -1510
  446. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  447. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -24
  448. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  449. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  450. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  451. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  452. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  453. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  454. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2391
  455. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  456. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  457. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  458. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  459. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2555
  460. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  461. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -47
  462. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  463. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  464. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  465. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  466. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  467. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  468. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  469. data/apis/email/2010-12-01/api-2.json +0 -3182
  470. data/apis/email/2010-12-01/examples-1.json +0 -1021
  471. data/apis/email/2010-12-01/paginators-1.json +0 -18
  472. data/apis/email/2010-12-01/smoke.json +0 -18
  473. data/apis/email/2010-12-01/waiters-2.json +0 -18
  474. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  475. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  476. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  477. data/apis/es/2015-01-01/api-2.json +0 -2533
  478. data/apis/es/2015-01-01/examples-1.json +0 -5
  479. data/apis/es/2015-01-01/paginators-1.json +0 -59
  480. data/apis/es/2015-01-01/smoke.json +0 -18
  481. data/apis/eventbridge/2015-10-07/api-2.json +0 -2052
  482. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  483. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  484. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  485. data/apis/events/2015-10-07/api-2.json +0 -2052
  486. data/apis/events/2015-10-07/examples-1.json +0 -5
  487. data/apis/events/2015-10-07/paginators-1.json +0 -4
  488. data/apis/events/2015-10-07/smoke.json +0 -18
  489. data/apis/firehose/2015-08-04/api-2.json +0 -1717
  490. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  491. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  492. data/apis/firehose/2015-08-04/smoke.json +0 -18
  493. data/apis/fms/2018-01-01/api-2.json +0 -1449
  494. data/apis/fms/2018-01-01/examples-1.json +0 -5
  495. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  496. data/apis/forecast/2018-06-26/api-2.json +0 -1565
  497. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  498. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  499. data/apis/forecastquery/2018-06-26/api-2.json +0 -146
  500. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  501. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  502. data/apis/frauddetector/2019-11-15/api-2.json +0 -2510
  503. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  504. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -59
  505. data/apis/fsx/2018-03-01/api-2.json +0 -1642
  506. data/apis/fsx/2018-03-01/examples-1.json +0 -395
  507. data/apis/fsx/2018-03-01/paginators-1.json +0 -24
  508. data/apis/gamelift/2015-10-01/api-2.json +0 -4505
  509. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  510. data/apis/gamelift/2015-10-01/paginators-1.json +0 -124
  511. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  512. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  513. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  514. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  515. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  516. data/apis/glacier/2012-06-01/smoke.json +0 -18
  517. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  518. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -1181
  519. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  520. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  521. data/apis/glue/2017-03-31/api-2.json +0 -8102
  522. data/apis/glue/2017-03-31/examples-1.json +0 -5
  523. data/apis/glue/2017-03-31/paginators-1.json +0 -154
  524. data/apis/glue/2017-03-31/smoke.json +0 -11
  525. data/apis/greengrass/2017-06-07/api-2.json +0 -5244
  526. data/apis/groundstation/2019-05-23/api-2.json +0 -1463
  527. data/apis/groundstation/2019-05-23/examples-1.json +0 -5
  528. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  529. data/apis/guardduty/2017-11-28/api-2.json +0 -4370
  530. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  531. data/apis/guardduty/2017-11-28/paginators-1.json +0 -62
  532. data/apis/health/2016-08-04/api-2.json +0 -847
  533. data/apis/health/2016-08-04/examples-1.json +0 -5
  534. data/apis/health/2016-08-04/paginators-1.json +0 -55
  535. data/apis/health/2016-08-04/smoke.json +0 -11
  536. data/apis/honeycode/2020-03-01/api-2.json +0 -321
  537. data/apis/honeycode/2020-03-01/examples-1.json +0 -5
  538. data/apis/honeycode/2020-03-01/paginators-1.json +0 -4
  539. data/apis/iam/2010-05-08/api-2.json +0 -5821
  540. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  541. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  542. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  543. data/apis/iam/2010-05-08/smoke.json +0 -18
  544. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  545. data/apis/identitystore/2020-06-15/api-2.json +0 -318
  546. data/apis/identitystore/2020-06-15/examples-1.json +0 -5
  547. data/apis/identitystore/2020-06-15/paginators-1.json +0 -14
  548. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2493
  549. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  550. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  551. data/apis/importexport/2010-06-01/api-2.json +0 -667
  552. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  553. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  554. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  555. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  556. data/apis/inspector/2016-02-16/smoke.json +0 -18
  557. data/apis/iot-data/2015-05-28/api-2.json +0 -343
  558. data/apis/iot-data/2015-05-28/examples-1.json +0 -5
  559. data/apis/iot-data/2015-05-28/paginators-1.json +0 -4
  560. data/apis/iot-data/2015-05-28/smoke.json +0 -13
  561. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  562. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  563. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  564. data/apis/iot/2015-05-28/api-2.json +0 -11835
  565. data/apis/iot/2015-05-28/examples-1.json +0 -5
  566. data/apis/iot/2015-05-28/paginators-1.json +0 -294
  567. data/apis/iot/2015-05-28/smoke.json +0 -18
  568. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  569. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  570. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  571. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  572. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2269
  573. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  574. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  575. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  576. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  577. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  578. data/apis/iotevents/2018-07-27/api-2.json +0 -1262
  579. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  580. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  581. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -384
  582. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  583. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  584. data/apis/iotsitewise/2019-12-02/api-2.json +0 -3673
  585. data/apis/iotsitewise/2019-12-02/examples-1.json +0 -5
  586. data/apis/iotsitewise/2019-12-02/paginators-1.json +0 -70
  587. data/apis/iotsitewise/2019-12-02/waiters-2.json +0 -92
  588. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  589. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  590. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  591. data/apis/ivs/2020-07-14/api-2.json +0 -981
  592. data/apis/ivs/2020-07-14/examples-1.json +0 -5
  593. data/apis/ivs/2020-07-14/paginators-1.json +0 -33
  594. data/apis/kafka/2018-11-14/api-2.json +0 -2917
  595. data/apis/kafka/2018-11-14/paginators-1.json +0 -46
  596. data/apis/kendra/2019-02-03/api-2.json +0 -2561
  597. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  598. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  599. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -498
  600. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  601. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  602. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  603. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  604. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  605. data/apis/kinesis-video-signaling/2019-12-04/api-2.json +0 -200
  606. data/apis/kinesis-video-signaling/2019-12-04/examples-1.json +0 -5
  607. data/apis/kinesis-video-signaling/2019-12-04/paginators-1.json +0 -4
  608. data/apis/kinesis/2013-12-02/api-2.json +0 -1449
  609. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  610. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  611. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  612. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  613. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  614. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  615. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  616. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2342
  617. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  618. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  619. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -958
  620. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  621. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -16
  622. data/apis/kms/2014-11-01/api-2.json +0 -2158
  623. data/apis/kms/2014-11-01/examples-1.json +0 -906
  624. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  625. data/apis/kms/2014-11-01/smoke.json +0 -19
  626. data/apis/lakeformation/2017-03-31/api-2.json +0 -737
  627. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  628. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  629. data/apis/lambda/2014-11-11/api-2.json +0 -668
  630. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  631. data/apis/lambda/2015-03-31/api-2.json +0 -3067
  632. data/apis/lambda/2015-03-31/examples-1.json +0 -1513
  633. data/apis/lambda/2015-03-31/paginators-1.json +0 -52
  634. data/apis/lambda/2015-03-31/smoke.json +0 -18
  635. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  636. data/apis/lex-models/2017-04-19/api-2.json +0 -2688
  637. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  638. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  639. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  640. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  641. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  642. data/apis/lightsail/2016-11-28/api-2.json +0 -6873
  643. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  644. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  645. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  646. data/apis/logs/2014-03-28/api-2.json +0 -1819
  647. data/apis/logs/2014-03-28/examples-1.json +0 -5
  648. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  649. data/apis/logs/2014-03-28/smoke.json +0 -19
  650. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  651. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  652. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  653. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  654. data/apis/macie/2017-12-19/api-2.json +0 -365
  655. data/apis/macie/2017-12-19/examples-1.json +0 -5
  656. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  657. data/apis/macie2/2020-01-01/api-2.json +0 -5775
  658. data/apis/macie2/2020-01-01/paginators-1.json +0 -58
  659. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1507
  660. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  661. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  662. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -560
  663. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  664. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  665. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  666. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  667. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  668. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  669. data/apis/mediaconnect/2018-11-14/api-2.json +0 -2882
  670. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -28
  671. data/apis/mediaconvert/2017-08-29/api-2.json +0 -9636
  672. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  673. data/apis/medialive/2017-10-14/api-2.json +0 -12784
  674. data/apis/medialive/2017-10-14/paginators-1.json +0 -64
  675. data/apis/medialive/2017-10-14/waiters-2.json +0 -298
  676. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1879
  677. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  678. data/apis/mediapackage/2017-10-12/api-2.json +0 -2700
  679. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  680. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  681. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  682. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  683. data/apis/mediastore/2017-09-01/api-2.json +0 -871
  684. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  685. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  686. data/apis/mediatailor/2018-04-23/api-2.json +0 -629
  687. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  688. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -417
  689. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  690. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  691. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -220
  692. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  693. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  694. data/apis/mobile/2017-07-01/api-2.json +0 -551
  695. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  696. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  697. data/apis/monitoring/2010-08-01/api-2.json +0 -1978
  698. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  699. data/apis/monitoring/2010-08-01/paginators-1.json +0 -46
  700. data/apis/monitoring/2010-08-01/resources-1.json +0 -505
  701. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  702. data/apis/monitoring/2010-08-01/waiters-2.json +0 -31
  703. data/apis/mq/2017-11-27/api-2.json +0 -2783
  704. data/apis/mq/2017-11-27/paginators-1.json +0 -10
  705. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  706. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  707. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  708. data/apis/neptune/2014-10-31/api-2.json +0 -3822
  709. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  710. data/apis/neptune/2014-10-31/paginators-1.json +0 -67
  711. data/apis/neptune/2014-10-31/smoke.json +0 -18
  712. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  713. data/apis/network-firewall/2020-11-12/api-2.json +0 -1884
  714. data/apis/network-firewall/2020-11-12/examples-1.json +0 -5
  715. data/apis/network-firewall/2020-11-12/paginators-1.json +0 -28
  716. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  717. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  718. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  719. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  720. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  721. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  722. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  723. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  724. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  725. data/apis/opsworkscm/2016-11-01/api-2.json +0 -948
  726. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  727. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -28
  728. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  729. data/apis/organizations/2016-11-28/api-2.json +0 -2618
  730. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  731. data/apis/organizations/2016-11-28/paginators-1.json +0 -86
  732. data/apis/outposts/2019-12-03/api-2.json +0 -432
  733. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  734. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  735. data/apis/personalize-events/2018-03-22/api-2.json +0 -214
  736. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  737. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  738. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -172
  739. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  740. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  741. data/apis/personalize/2018-05-22/api-2.json +0 -2038
  742. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  743. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  744. data/apis/pi/2018-02-27/api-2.json +0 -253
  745. data/apis/pi/2018-02-27/examples-1.json +0 -5
  746. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  747. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  748. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  749. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  750. data/apis/pinpoint/2016-12-01/api-2.json +0 -12480
  751. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  752. data/apis/polly/2016-06-10/api-2.json +0 -836
  753. data/apis/polly/2016-06-10/examples-1.json +0 -171
  754. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  755. data/apis/polly/2016-06-10/smoke.json +0 -11
  756. data/apis/pricing/2017-10-15/api-2.json +0 -227
  757. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  758. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  759. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  760. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  761. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  762. data/apis/qldb/2019-01-02/api-2.json +0 -999
  763. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  764. data/apis/qldb/2019-01-02/paginators-1.json +0 -24
  765. data/apis/quicksight/2018-04-01/api-2.json +0 -7780
  766. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  767. data/apis/quicksight/2018-04-01/paginators-1.json +0 -64
  768. data/apis/ram/2018-01-04/api-2.json +0 -1315
  769. data/apis/ram/2018-01-04/examples-1.json +0 -5
  770. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  771. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  772. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  773. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  774. data/apis/rds/2013-01-10/api-2.json +0 -2903
  775. data/apis/rds/2013-01-10/examples-1.json +0 -5
  776. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  777. data/apis/rds/2013-01-10/smoke.json +0 -18
  778. data/apis/rds/2013-02-12/api-2.json +0 -3059
  779. data/apis/rds/2013-02-12/examples-1.json +0 -5
  780. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  781. data/apis/rds/2013-02-12/smoke.json +0 -18
  782. data/apis/rds/2013-09-09/api-2.json +0 -3160
  783. data/apis/rds/2013-09-09/examples-1.json +0 -5
  784. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  785. data/apis/rds/2013-09-09/smoke.json +0 -18
  786. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  787. data/apis/rds/2014-09-01/api-2.json +0 -3273
  788. data/apis/rds/2014-09-01/examples-1.json +0 -5
  789. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  790. data/apis/rds/2014-09-01/smoke.json +0 -18
  791. data/apis/rds/2014-10-31/api-2.json +0 -7765
  792. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  793. data/apis/rds/2014-10-31/paginators-1.json +0 -212
  794. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  795. data/apis/rds/2014-10-31/smoke.json +0 -18
  796. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  797. data/apis/redshift-data/2019-12-20/api-2.json +0 -501
  798. data/apis/redshift-data/2019-12-20/examples-1.json +0 -5
  799. data/apis/redshift-data/2019-12-20/paginators-1.json +0 -39
  800. data/apis/redshift/2012-12-01/api-2.json +0 -5527
  801. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  802. data/apis/redshift/2012-12-01/paginators-1.json +0 -154
  803. data/apis/redshift/2012-12-01/smoke.json +0 -18
  804. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  805. data/apis/rekognition/2016-06-27/api-2.json +0 -3180
  806. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  807. data/apis/rekognition/2016-06-27/paginators-1.json +0 -73
  808. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  809. data/apis/rekognition/2016-06-27/waiters-2.json +0 -45
  810. data/apis/resource-groups/2017-11-27/api-2.json +0 -927
  811. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  812. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -22
  813. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  814. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  815. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  816. data/apis/robomaker/2018-06-29/api-2.json +0 -3160
  817. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  818. data/apis/robomaker/2018-06-29/paginators-1.json +0 -70
  819. data/apis/route53/2013-04-01/api-2.json +0 -3881
  820. data/apis/route53/2013-04-01/examples-1.json +0 -762
  821. data/apis/route53/2013-04-01/paginators-1.json +0 -39
  822. data/apis/route53/2013-04-01/smoke.json +0 -18
  823. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  824. data/apis/route53domains/2014-05-15/api-2.json +0 -1507
  825. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  826. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  827. data/apis/route53domains/2014-05-15/smoke.json +0 -18
  828. data/apis/route53resolver/2018-04-01/api-2.json +0 -1666
  829. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  830. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -46
  831. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  832. data/apis/runtime.lex/2016-11-28/api-2.json +0 -841
  833. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  834. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  835. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -175
  836. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  837. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  838. data/apis/s3/2006-03-01/api-2.json +0 -7474
  839. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  840. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  841. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  842. data/apis/s3/2006-03-01/smoke.json +0 -11
  843. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  844. data/apis/s3control/2018-08-20/api-2.json +0 -2903
  845. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  846. data/apis/s3control/2018-08-20/paginators-1.json +0 -19
  847. data/apis/s3outposts/2017-07-25/api-2.json +0 -250
  848. data/apis/s3outposts/2017-07-25/examples-1.json +0 -5
  849. data/apis/s3outposts/2017-07-25/paginators-1.json +0 -10
  850. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -366
  851. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  852. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  853. data/apis/sagemaker/2017-07-24/api-2.json +0 -10329
  854. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  855. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -214
  856. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -193
  857. data/apis/savingsplans/2019-06-28/api-2.json +0 -786
  858. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  859. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  860. data/apis/schemas/2019-12-02/api-2.json +0 -2980
  861. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  862. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  863. data/apis/sdb/2009-04-15/api-2.json +0 -955
  864. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  865. data/apis/secretsmanager/2017-10-17/api-2.json +0 -1088
  866. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -594
  867. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  868. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  869. data/apis/securityhub/2018-10-26/api-2.json +0 -4515
  870. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  871. data/apis/securityhub/2018-10-26/paginators-1.json +0 -54
  872. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1857
  873. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  874. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  875. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  876. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  877. data/apis/servicecatalog-appregistry/2020-06-24/api-2.json +0 -857
  878. data/apis/servicecatalog-appregistry/2020-06-24/examples-1.json +0 -5
  879. data/apis/servicecatalog-appregistry/2020-06-24/paginators-1.json +0 -28
  880. data/apis/servicecatalog/2015-12-10/api-2.json +0 -4130
  881. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  882. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -94
  883. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  884. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1317
  885. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -672
  886. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  887. data/apis/sesv2/2019-09-27/api-2.json +0 -3966
  888. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  889. data/apis/sesv2/2019-09-27/paginators-1.json +0 -64
  890. data/apis/shield/2016-06-02/api-2.json +0 -1445
  891. data/apis/shield/2016-06-02/examples-1.json +0 -5
  892. data/apis/shield/2016-06-02/paginators-1.json +0 -26
  893. data/apis/shield/2016-06-02/smoke.json +0 -11
  894. data/apis/signer/2017-08-25/api-2.json +0 -822
  895. data/apis/signer/2017-08-25/examples-1.json +0 -5
  896. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  897. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  898. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  899. data/apis/sms/2016-10-24/api-2.json +0 -1775
  900. data/apis/sms/2016-10-24/examples-1.json +0 -5
  901. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  902. data/apis/sms/2016-10-24/smoke.json +0 -18
  903. data/apis/snowball/2016-06-30/api-2.json +0 -1116
  904. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  905. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  906. data/apis/snowball/2016-06-30/smoke.json +0 -11
  907. data/apis/sns/2010-03-31/api-2.json +0 -1471
  908. data/apis/sns/2010-03-31/examples-1.json +0 -5
  909. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  910. data/apis/sns/2010-03-31/resources-1.json +0 -327
  911. data/apis/sns/2010-03-31/smoke.json +0 -19
  912. data/apis/sqs/2012-11-05/api-2.json +0 -1139
  913. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  914. data/apis/sqs/2012-11-05/paginators-1.json +0 -16
  915. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  916. data/apis/sqs/2012-11-05/smoke.json +0 -18
  917. data/apis/ssm/2014-11-06/api-2.json +0 -9349
  918. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  919. data/apis/ssm/2014-11-06/paginators-1.json +0 -259
  920. data/apis/ssm/2014-11-06/smoke.json +0 -18
  921. data/apis/ssm/2014-11-06/waiters-2.json +0 -60
  922. data/apis/sso-admin/2020-07-20/api-2.json +0 -1296
  923. data/apis/sso-admin/2020-07-20/examples-1.json +0 -5
  924. data/apis/sso-admin/2020-07-20/paginators-1.json +0 -63
  925. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  926. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  927. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  928. data/apis/sso/2019-06-10/api-2.json +0 -281
  929. data/apis/sso/2019-06-10/examples-1.json +0 -5
  930. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  931. data/apis/states/2016-11-23/api-2.json +0 -1539
  932. data/apis/states/2016-11-23/examples-1.json +0 -5
  933. data/apis/states/2016-11-23/paginators-1.json +0 -28
  934. data/apis/states/2016-11-23/smoke.json +0 -11
  935. data/apis/storagegateway/2013-06-30/api-2.json +0 -3733
  936. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  937. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -82
  938. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -407
  939. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  940. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  941. data/apis/sts/2011-06-15/api-2.json +0 -599
  942. data/apis/sts/2011-06-15/examples-1.json +0 -271
  943. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  944. data/apis/sts/2011-06-15/smoke.json +0 -19
  945. data/apis/support/2013-04-15/api-2.json +0 -773
  946. data/apis/support/2013-04-15/examples-1.json +0 -5
  947. data/apis/support/2013-04-15/paginators-1.json +0 -25
  948. data/apis/support/2013-04-15/smoke.json +0 -22
  949. data/apis/swf/2012-01-25/api-2.json +0 -2792
  950. data/apis/swf/2012-01-25/examples-1.json +0 -5
  951. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  952. data/apis/synthetics/2017-10-11/api-2.json +0 -790
  953. data/apis/synthetics/2017-10-11/examples-1.json +0 -5
  954. data/apis/synthetics/2017-10-11/paginators-1.json +0 -24
  955. data/apis/textract/2018-06-27/api-2.json +0 -690
  956. data/apis/textract/2018-06-27/examples-1.json +0 -5
  957. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  958. data/apis/timestream-query/2018-11-01/api-2.json +0 -299
  959. data/apis/timestream-query/2018-11-01/examples-1.json +0 -5
  960. data/apis/timestream-query/2018-11-01/paginators-1.json +0 -14
  961. data/apis/timestream-write/2018-11-01/api-2.json +0 -775
  962. data/apis/timestream-write/2018-11-01/examples-1.json +0 -5
  963. data/apis/timestream-write/2018-11-01/paginators-1.json +0 -14
  964. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -347
  965. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  966. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  967. data/apis/transcribe/2017-10-26/api-2.json +0 -1327
  968. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  969. data/apis/transcribe/2017-10-26/paginators-1.json +0 -34
  970. data/apis/transfer/2018-11-05/api-2.json +0 -1110
  971. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  972. data/apis/transfer/2018-11-05/paginators-1.json +0 -24
  973. data/apis/translate/2017-07-01/api-2.json +0 -660
  974. data/apis/translate/2017-07-01/examples-1.json +0 -5
  975. data/apis/translate/2017-07-01/paginators-1.json +0 -14
  976. data/apis/waf-regional/2016-11-28/api-2.json +0 -4093
  977. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  978. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  979. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  980. data/apis/waf/2015-08-24/api-2.json +0 -3958
  981. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  982. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  983. data/apis/waf/2015-08-24/smoke.json +0 -21
  984. data/apis/wafv2/2019-07-29/api-2.json +0 -2698
  985. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  986. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  987. data/apis/wafv2/2019-07-29/smoke.json +0 -22
  988. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  989. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  990. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  991. data/apis/worklink/2018-09-25/api-2.json +0 -1393
  992. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  993. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  994. data/apis/workmail/2017-10-01/api-2.json +0 -2430
  995. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  996. data/apis/workmail/2017-10-01/paginators-1.json +0 -49
  997. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  998. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  999. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  1000. data/apis/workspaces/2015-04-08/api-2.json +0 -2442
  1001. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  1002. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  1003. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  1004. data/apis/xray/2016-04-12/api-2.json +0 -1792
  1005. data/apis/xray/2016-04-12/examples-1.json +0 -5
  1006. data/apis/xray/2016-04-12/paginators-1.json +0 -54
  1007. data/bin/aws.rb +0 -180
  1008. data/endpoints.json +0 -9478
  1009. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  1010. data/lib/aws-sdk-core/acm.rb +0 -7
  1011. data/lib/aws-sdk-core/acmpca.rb +0 -7
  1012. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  1013. data/lib/aws-sdk-core/amplify.rb +0 -6
  1014. data/lib/aws-sdk-core/api/builder.rb +0 -129
  1015. data/lib/aws-sdk-core/api/customizations.rb +0 -304
  1016. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  1017. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  1018. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  1019. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  1020. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  1021. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  1022. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  1023. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  1024. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  1025. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  1026. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  1027. data/lib/aws-sdk-core/apigateway.rb +0 -6
  1028. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  1029. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1030. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1031. data/lib/aws-sdk-core/appflow.rb +0 -6
  1032. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1033. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1034. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1035. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1036. data/lib/aws-sdk-core/appregistry.rb +0 -6
  1037. data/lib/aws-sdk-core/appstream.rb +0 -7
  1038. data/lib/aws-sdk-core/appsync.rb +0 -6
  1039. data/lib/aws-sdk-core/athena.rb +0 -6
  1040. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1041. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1042. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1043. data/lib/aws-sdk-core/backup.rb +0 -6
  1044. data/lib/aws-sdk-core/batch.rb +0 -6
  1045. data/lib/aws-sdk-core/braket.rb +0 -6
  1046. data/lib/aws-sdk-core/budgets.rb +0 -6
  1047. data/lib/aws-sdk-core/checksums.rb +0 -51
  1048. data/lib/aws-sdk-core/chime.rb +0 -6
  1049. data/lib/aws-sdk-core/client.rb +0 -78
  1050. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1051. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1052. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1053. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1054. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1055. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1056. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1057. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1058. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1059. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1060. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1061. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1062. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1063. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1064. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1065. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1066. data/lib/aws-sdk-core/codeartifact.rb +0 -6
  1067. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1068. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1069. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1070. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1071. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1072. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1073. data/lib/aws-sdk-core/codestar.rb +0 -6
  1074. data/lib/aws-sdk-core/codestarconnections.rb +0 -6
  1075. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1076. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1077. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1078. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1079. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1080. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1081. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1082. data/lib/aws-sdk-core/configservice.rb +0 -6
  1083. data/lib/aws-sdk-core/connect.rb +0 -6
  1084. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1085. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1086. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1087. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1088. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1089. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1090. data/lib/aws-sdk-core/datasync.rb +0 -6
  1091. data/lib/aws-sdk-core/dax.rb +0 -6
  1092. data/lib/aws-sdk-core/detective.rb +0 -6
  1093. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1094. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1095. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1096. data/lib/aws-sdk-core/dlm.rb +0 -6
  1097. data/lib/aws-sdk-core/docdb.rb +0 -7
  1098. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1099. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1100. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1101. data/lib/aws-sdk-core/ebs.rb +0 -6
  1102. data/lib/aws-sdk-core/ec2.rb +0 -8
  1103. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1104. data/lib/aws-sdk-core/ecr.rb +0 -7
  1105. data/lib/aws-sdk-core/ecs.rb +0 -7
  1106. data/lib/aws-sdk-core/efs.rb +0 -6
  1107. data/lib/aws-sdk-core/eks.rb +0 -7
  1108. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1109. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -7
  1110. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1111. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1112. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1113. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1114. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1115. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1116. data/lib/aws-sdk-core/emr.rb +0 -7
  1117. data/lib/aws-sdk-core/endpoint_cache.rb +0 -188
  1118. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1119. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1120. data/lib/aws-sdk-core/firehose.rb +0 -6
  1121. data/lib/aws-sdk-core/fms.rb +0 -6
  1122. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1123. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1124. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1125. data/lib/aws-sdk-core/fsx.rb +0 -6
  1126. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1127. data/lib/aws-sdk-core/glacier.rb +0 -8
  1128. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1129. data/lib/aws-sdk-core/glue.rb +0 -6
  1130. data/lib/aws-sdk-core/gluedatabrew.rb +0 -6
  1131. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1132. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1133. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1134. data/lib/aws-sdk-core/health.rb +0 -6
  1135. data/lib/aws-sdk-core/honeycode.rb +0 -6
  1136. data/lib/aws-sdk-core/iam.rb +0 -8
  1137. data/lib/aws-sdk-core/identitystore.rb +0 -6
  1138. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1139. data/lib/aws-sdk-core/importexport.rb +0 -5
  1140. data/lib/aws-sdk-core/inspector.rb +0 -6
  1141. data/lib/aws-sdk-core/iot.rb +0 -6
  1142. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1143. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1144. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1145. data/lib/aws-sdk-core/iotdataplane.rb +0 -6
  1146. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1147. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1148. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1149. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1150. data/lib/aws-sdk-core/iotsitewise.rb +0 -7
  1151. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1152. data/lib/aws-sdk-core/ivs.rb +0 -6
  1153. data/lib/aws-sdk-core/kafka.rb +0 -5
  1154. data/lib/aws-sdk-core/kendra.rb +0 -6
  1155. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1156. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1157. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1158. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1159. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1160. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1161. data/lib/aws-sdk-core/kinesisvideosignalingchannels.rb +0 -6
  1162. data/lib/aws-sdk-core/kms.rb +0 -6
  1163. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1164. data/lib/aws-sdk-core/lambda.rb +0 -7
  1165. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1166. data/lib/aws-sdk-core/lex.rb +0 -6
  1167. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1168. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1169. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1170. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1171. data/lib/aws-sdk-core/macie.rb +0 -6
  1172. data/lib/aws-sdk-core/macie2.rb +0 -5
  1173. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1174. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1175. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1176. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1177. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1178. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1179. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1180. data/lib/aws-sdk-core/medialive.rb +0 -6
  1181. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1182. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1183. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1184. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1185. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1186. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1187. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1188. data/lib/aws-sdk-core/mobile.rb +0 -6
  1189. data/lib/aws-sdk-core/mq.rb +0 -5
  1190. data/lib/aws-sdk-core/mturk.rb +0 -6
  1191. data/lib/aws-sdk-core/neptune.rb +0 -7
  1192. data/lib/aws-sdk-core/networkfirewall.rb +0 -6
  1193. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1194. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1195. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1196. data/lib/aws-sdk-core/organizations.rb +0 -6
  1197. data/lib/aws-sdk-core/outposts.rb +0 -6
  1198. data/lib/aws-sdk-core/partitions.rb +0 -174
  1199. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1200. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1201. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1202. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1203. data/lib/aws-sdk-core/personalize.rb +0 -6
  1204. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1205. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1206. data/lib/aws-sdk-core/pi.rb +0 -6
  1207. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1208. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1209. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1210. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1211. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1212. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1213. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1214. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1215. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1216. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1217. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1218. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +0 -167
  1219. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +0 -62
  1220. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1221. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1222. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1223. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +0 -29
  1224. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1225. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1226. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1227. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1228. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1229. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1230. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1231. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1232. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1233. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1234. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1235. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1236. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1237. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1238. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1239. data/lib/aws-sdk-core/plugins/s3_iad_regional_endpoint.rb +0 -58
  1240. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1241. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1242. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1243. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1244. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1245. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1246. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1247. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1248. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1249. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1250. data/lib/aws-sdk-core/polly.rb +0 -14
  1251. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1252. data/lib/aws-sdk-core/pricing.rb +0 -6
  1253. data/lib/aws-sdk-core/qldb.rb +0 -6
  1254. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1255. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1256. data/lib/aws-sdk-core/ram.rb +0 -6
  1257. data/lib/aws-sdk-core/rds.rb +0 -16
  1258. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1259. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1260. data/lib/aws-sdk-core/redshift.rb +0 -7
  1261. data/lib/aws-sdk-core/redshiftdataapiservice.rb +0 -6
  1262. data/lib/aws-sdk-core/rekognition.rb +0 -7
  1263. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1264. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1265. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1266. data/lib/aws-sdk-core/route53.rb +0 -7
  1267. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1268. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1269. data/lib/aws-sdk-core/s3.rb +0 -26
  1270. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1271. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1272. data/lib/aws-sdk-core/s3control.rb +0 -6
  1273. data/lib/aws-sdk-core/s3outposts.rb +0 -6
  1274. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1275. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1276. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1277. data/lib/aws-sdk-core/schemas.rb +0 -6
  1278. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1279. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1280. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1281. data/lib/aws-sdk-core/service.rb +0 -4
  1282. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1283. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1284. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1285. data/lib/aws-sdk-core/ses.rb +0 -7
  1286. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1287. data/lib/aws-sdk-core/shield.rb +0 -6
  1288. data/lib/aws-sdk-core/signer.rb +0 -7
  1289. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1290. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1291. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1292. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1293. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1294. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1295. data/lib/aws-sdk-core/sms.rb +0 -6
  1296. data/lib/aws-sdk-core/snowball.rb +0 -6
  1297. data/lib/aws-sdk-core/sns.rb +0 -7
  1298. data/lib/aws-sdk-core/sqs.rb +0 -7
  1299. data/lib/aws-sdk-core/ssm.rb +0 -7
  1300. data/lib/aws-sdk-core/sso.rb +0 -6
  1301. data/lib/aws-sdk-core/ssoadmin.rb +0 -6
  1302. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1303. data/lib/aws-sdk-core/states.rb +0 -6
  1304. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1305. data/lib/aws-sdk-core/sts.rb +0 -6
  1306. data/lib/aws-sdk-core/support.rb +0 -6
  1307. data/lib/aws-sdk-core/swf.rb +0 -6
  1308. data/lib/aws-sdk-core/synthetics.rb +0 -6
  1309. data/lib/aws-sdk-core/textract.rb +0 -6
  1310. data/lib/aws-sdk-core/timestreamquery.rb +0 -6
  1311. data/lib/aws-sdk-core/timestreamwrite.rb +0 -6
  1312. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1313. data/lib/aws-sdk-core/transfer.rb +0 -6
  1314. data/lib/aws-sdk-core/translate.rb +0 -6
  1315. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1316. data/lib/aws-sdk-core/waf.rb +0 -6
  1317. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1318. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1319. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1320. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1321. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1322. data/lib/aws-sdk-core/worklink.rb +0 -6
  1323. data/lib/aws-sdk-core/workmail.rb +0 -6
  1324. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1325. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1326. data/lib/aws-sdk-core/xray.rb +0 -6
  1327. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1328. data/service-models.json +0 -949
@@ -1,5 +0,0 @@
1
- {
2
- "version": "1.0",
3
- "examples": {
4
- }
5
- }
@@ -1,4 +0,0 @@
1
- {
2
- "pagination": {
3
- }
4
- }
@@ -1,4378 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2014-11-12",
5
- "endpointPrefix":"config",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceAbbreviation":"Config Service",
9
- "serviceFullName":"AWS Config",
10
- "serviceId":"Config Service",
11
- "signatureVersion":"v4",
12
- "targetPrefix":"StarlingDoveService",
13
- "uid":"config-2014-11-12"
14
- },
15
- "operations":{
16
- "BatchGetAggregateResourceConfig":{
17
- "name":"BatchGetAggregateResourceConfig",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"BatchGetAggregateResourceConfigRequest"},
23
- "output":{"shape":"BatchGetAggregateResourceConfigResponse"},
24
- "errors":[
25
- {"shape":"ValidationException"},
26
- {"shape":"NoSuchConfigurationAggregatorException"}
27
- ]
28
- },
29
- "BatchGetResourceConfig":{
30
- "name":"BatchGetResourceConfig",
31
- "http":{
32
- "method":"POST",
33
- "requestUri":"/"
34
- },
35
- "input":{"shape":"BatchGetResourceConfigRequest"},
36
- "output":{"shape":"BatchGetResourceConfigResponse"},
37
- "errors":[
38
- {"shape":"ValidationException"},
39
- {"shape":"NoAvailableConfigurationRecorderException"}
40
- ]
41
- },
42
- "DeleteAggregationAuthorization":{
43
- "name":"DeleteAggregationAuthorization",
44
- "http":{
45
- "method":"POST",
46
- "requestUri":"/"
47
- },
48
- "input":{"shape":"DeleteAggregationAuthorizationRequest"},
49
- "errors":[
50
- {"shape":"InvalidParameterValueException"}
51
- ]
52
- },
53
- "DeleteConfigRule":{
54
- "name":"DeleteConfigRule",
55
- "http":{
56
- "method":"POST",
57
- "requestUri":"/"
58
- },
59
- "input":{"shape":"DeleteConfigRuleRequest"},
60
- "errors":[
61
- {"shape":"NoSuchConfigRuleException"},
62
- {"shape":"ResourceInUseException"}
63
- ]
64
- },
65
- "DeleteConfigurationAggregator":{
66
- "name":"DeleteConfigurationAggregator",
67
- "http":{
68
- "method":"POST",
69
- "requestUri":"/"
70
- },
71
- "input":{"shape":"DeleteConfigurationAggregatorRequest"},
72
- "errors":[
73
- {"shape":"NoSuchConfigurationAggregatorException"}
74
- ]
75
- },
76
- "DeleteConfigurationRecorder":{
77
- "name":"DeleteConfigurationRecorder",
78
- "http":{
79
- "method":"POST",
80
- "requestUri":"/"
81
- },
82
- "input":{"shape":"DeleteConfigurationRecorderRequest"},
83
- "errors":[
84
- {"shape":"NoSuchConfigurationRecorderException"}
85
- ]
86
- },
87
- "DeleteConformancePack":{
88
- "name":"DeleteConformancePack",
89
- "http":{
90
- "method":"POST",
91
- "requestUri":"/"
92
- },
93
- "input":{"shape":"DeleteConformancePackRequest"},
94
- "errors":[
95
- {"shape":"NoSuchConformancePackException"},
96
- {"shape":"ResourceInUseException"}
97
- ]
98
- },
99
- "DeleteDeliveryChannel":{
100
- "name":"DeleteDeliveryChannel",
101
- "http":{
102
- "method":"POST",
103
- "requestUri":"/"
104
- },
105
- "input":{"shape":"DeleteDeliveryChannelRequest"},
106
- "errors":[
107
- {"shape":"NoSuchDeliveryChannelException"},
108
- {"shape":"LastDeliveryChannelDeleteFailedException"}
109
- ]
110
- },
111
- "DeleteEvaluationResults":{
112
- "name":"DeleteEvaluationResults",
113
- "http":{
114
- "method":"POST",
115
- "requestUri":"/"
116
- },
117
- "input":{"shape":"DeleteEvaluationResultsRequest"},
118
- "output":{"shape":"DeleteEvaluationResultsResponse"},
119
- "errors":[
120
- {"shape":"NoSuchConfigRuleException"},
121
- {"shape":"ResourceInUseException"}
122
- ]
123
- },
124
- "DeleteOrganizationConfigRule":{
125
- "name":"DeleteOrganizationConfigRule",
126
- "http":{
127
- "method":"POST",
128
- "requestUri":"/"
129
- },
130
- "input":{"shape":"DeleteOrganizationConfigRuleRequest"},
131
- "errors":[
132
- {"shape":"NoSuchOrganizationConfigRuleException"},
133
- {"shape":"ResourceInUseException"},
134
- {"shape":"OrganizationAccessDeniedException"}
135
- ]
136
- },
137
- "DeleteOrganizationConformancePack":{
138
- "name":"DeleteOrganizationConformancePack",
139
- "http":{
140
- "method":"POST",
141
- "requestUri":"/"
142
- },
143
- "input":{"shape":"DeleteOrganizationConformancePackRequest"},
144
- "errors":[
145
- {"shape":"NoSuchOrganizationConformancePackException"},
146
- {"shape":"ResourceInUseException"},
147
- {"shape":"OrganizationAccessDeniedException"}
148
- ]
149
- },
150
- "DeletePendingAggregationRequest":{
151
- "name":"DeletePendingAggregationRequest",
152
- "http":{
153
- "method":"POST",
154
- "requestUri":"/"
155
- },
156
- "input":{"shape":"DeletePendingAggregationRequestRequest"},
157
- "errors":[
158
- {"shape":"InvalidParameterValueException"}
159
- ]
160
- },
161
- "DeleteRemediationConfiguration":{
162
- "name":"DeleteRemediationConfiguration",
163
- "http":{
164
- "method":"POST",
165
- "requestUri":"/"
166
- },
167
- "input":{"shape":"DeleteRemediationConfigurationRequest"},
168
- "output":{"shape":"DeleteRemediationConfigurationResponse"},
169
- "errors":[
170
- {"shape":"NoSuchRemediationConfigurationException"},
171
- {"shape":"RemediationInProgressException"},
172
- {"shape":"InsufficientPermissionsException"}
173
- ]
174
- },
175
- "DeleteRemediationExceptions":{
176
- "name":"DeleteRemediationExceptions",
177
- "http":{
178
- "method":"POST",
179
- "requestUri":"/"
180
- },
181
- "input":{"shape":"DeleteRemediationExceptionsRequest"},
182
- "output":{"shape":"DeleteRemediationExceptionsResponse"},
183
- "errors":[
184
- {"shape":"NoSuchRemediationExceptionException"}
185
- ]
186
- },
187
- "DeleteResourceConfig":{
188
- "name":"DeleteResourceConfig",
189
- "http":{
190
- "method":"POST",
191
- "requestUri":"/"
192
- },
193
- "input":{"shape":"DeleteResourceConfigRequest"},
194
- "errors":[
195
- {"shape":"ValidationException"},
196
- {"shape":"NoRunningConfigurationRecorderException"}
197
- ]
198
- },
199
- "DeleteRetentionConfiguration":{
200
- "name":"DeleteRetentionConfiguration",
201
- "http":{
202
- "method":"POST",
203
- "requestUri":"/"
204
- },
205
- "input":{"shape":"DeleteRetentionConfigurationRequest"},
206
- "errors":[
207
- {"shape":"InvalidParameterValueException"},
208
- {"shape":"NoSuchRetentionConfigurationException"}
209
- ]
210
- },
211
- "DeliverConfigSnapshot":{
212
- "name":"DeliverConfigSnapshot",
213
- "http":{
214
- "method":"POST",
215
- "requestUri":"/"
216
- },
217
- "input":{"shape":"DeliverConfigSnapshotRequest"},
218
- "output":{"shape":"DeliverConfigSnapshotResponse"},
219
- "errors":[
220
- {"shape":"NoSuchDeliveryChannelException"},
221
- {"shape":"NoAvailableConfigurationRecorderException"},
222
- {"shape":"NoRunningConfigurationRecorderException"}
223
- ]
224
- },
225
- "DescribeAggregateComplianceByConfigRules":{
226
- "name":"DescribeAggregateComplianceByConfigRules",
227
- "http":{
228
- "method":"POST",
229
- "requestUri":"/"
230
- },
231
- "input":{"shape":"DescribeAggregateComplianceByConfigRulesRequest"},
232
- "output":{"shape":"DescribeAggregateComplianceByConfigRulesResponse"},
233
- "errors":[
234
- {"shape":"ValidationException"},
235
- {"shape":"InvalidLimitException"},
236
- {"shape":"InvalidNextTokenException"},
237
- {"shape":"NoSuchConfigurationAggregatorException"}
238
- ]
239
- },
240
- "DescribeAggregationAuthorizations":{
241
- "name":"DescribeAggregationAuthorizations",
242
- "http":{
243
- "method":"POST",
244
- "requestUri":"/"
245
- },
246
- "input":{"shape":"DescribeAggregationAuthorizationsRequest"},
247
- "output":{"shape":"DescribeAggregationAuthorizationsResponse"},
248
- "errors":[
249
- {"shape":"InvalidParameterValueException"},
250
- {"shape":"InvalidNextTokenException"},
251
- {"shape":"InvalidLimitException"}
252
- ]
253
- },
254
- "DescribeComplianceByConfigRule":{
255
- "name":"DescribeComplianceByConfigRule",
256
- "http":{
257
- "method":"POST",
258
- "requestUri":"/"
259
- },
260
- "input":{"shape":"DescribeComplianceByConfigRuleRequest"},
261
- "output":{"shape":"DescribeComplianceByConfigRuleResponse"},
262
- "errors":[
263
- {"shape":"InvalidParameterValueException"},
264
- {"shape":"NoSuchConfigRuleException"},
265
- {"shape":"InvalidNextTokenException"}
266
- ]
267
- },
268
- "DescribeComplianceByResource":{
269
- "name":"DescribeComplianceByResource",
270
- "http":{
271
- "method":"POST",
272
- "requestUri":"/"
273
- },
274
- "input":{"shape":"DescribeComplianceByResourceRequest"},
275
- "output":{"shape":"DescribeComplianceByResourceResponse"},
276
- "errors":[
277
- {"shape":"InvalidParameterValueException"},
278
- {"shape":"InvalidNextTokenException"}
279
- ]
280
- },
281
- "DescribeConfigRuleEvaluationStatus":{
282
- "name":"DescribeConfigRuleEvaluationStatus",
283
- "http":{
284
- "method":"POST",
285
- "requestUri":"/"
286
- },
287
- "input":{"shape":"DescribeConfigRuleEvaluationStatusRequest"},
288
- "output":{"shape":"DescribeConfigRuleEvaluationStatusResponse"},
289
- "errors":[
290
- {"shape":"NoSuchConfigRuleException"},
291
- {"shape":"InvalidParameterValueException"},
292
- {"shape":"InvalidNextTokenException"}
293
- ]
294
- },
295
- "DescribeConfigRules":{
296
- "name":"DescribeConfigRules",
297
- "http":{
298
- "method":"POST",
299
- "requestUri":"/"
300
- },
301
- "input":{"shape":"DescribeConfigRulesRequest"},
302
- "output":{"shape":"DescribeConfigRulesResponse"},
303
- "errors":[
304
- {"shape":"NoSuchConfigRuleException"},
305
- {"shape":"InvalidNextTokenException"}
306
- ]
307
- },
308
- "DescribeConfigurationAggregatorSourcesStatus":{
309
- "name":"DescribeConfigurationAggregatorSourcesStatus",
310
- "http":{
311
- "method":"POST",
312
- "requestUri":"/"
313
- },
314
- "input":{"shape":"DescribeConfigurationAggregatorSourcesStatusRequest"},
315
- "output":{"shape":"DescribeConfigurationAggregatorSourcesStatusResponse"},
316
- "errors":[
317
- {"shape":"InvalidParameterValueException"},
318
- {"shape":"NoSuchConfigurationAggregatorException"},
319
- {"shape":"InvalidNextTokenException"},
320
- {"shape":"InvalidLimitException"}
321
- ]
322
- },
323
- "DescribeConfigurationAggregators":{
324
- "name":"DescribeConfigurationAggregators",
325
- "http":{
326
- "method":"POST",
327
- "requestUri":"/"
328
- },
329
- "input":{"shape":"DescribeConfigurationAggregatorsRequest"},
330
- "output":{"shape":"DescribeConfigurationAggregatorsResponse"},
331
- "errors":[
332
- {"shape":"InvalidParameterValueException"},
333
- {"shape":"NoSuchConfigurationAggregatorException"},
334
- {"shape":"InvalidNextTokenException"},
335
- {"shape":"InvalidLimitException"}
336
- ]
337
- },
338
- "DescribeConfigurationRecorderStatus":{
339
- "name":"DescribeConfigurationRecorderStatus",
340
- "http":{
341
- "method":"POST",
342
- "requestUri":"/"
343
- },
344
- "input":{"shape":"DescribeConfigurationRecorderStatusRequest"},
345
- "output":{"shape":"DescribeConfigurationRecorderStatusResponse"},
346
- "errors":[
347
- {"shape":"NoSuchConfigurationRecorderException"}
348
- ]
349
- },
350
- "DescribeConfigurationRecorders":{
351
- "name":"DescribeConfigurationRecorders",
352
- "http":{
353
- "method":"POST",
354
- "requestUri":"/"
355
- },
356
- "input":{"shape":"DescribeConfigurationRecordersRequest"},
357
- "output":{"shape":"DescribeConfigurationRecordersResponse"},
358
- "errors":[
359
- {"shape":"NoSuchConfigurationRecorderException"}
360
- ]
361
- },
362
- "DescribeConformancePackCompliance":{
363
- "name":"DescribeConformancePackCompliance",
364
- "http":{
365
- "method":"POST",
366
- "requestUri":"/"
367
- },
368
- "input":{"shape":"DescribeConformancePackComplianceRequest"},
369
- "output":{"shape":"DescribeConformancePackComplianceResponse"},
370
- "errors":[
371
- {"shape":"InvalidLimitException"},
372
- {"shape":"InvalidNextTokenException"},
373
- {"shape":"InvalidParameterValueException"},
374
- {"shape":"NoSuchConfigRuleInConformancePackException"},
375
- {"shape":"NoSuchConformancePackException"}
376
- ]
377
- },
378
- "DescribeConformancePackStatus":{
379
- "name":"DescribeConformancePackStatus",
380
- "http":{
381
- "method":"POST",
382
- "requestUri":"/"
383
- },
384
- "input":{"shape":"DescribeConformancePackStatusRequest"},
385
- "output":{"shape":"DescribeConformancePackStatusResponse"},
386
- "errors":[
387
- {"shape":"InvalidLimitException"},
388
- {"shape":"InvalidNextTokenException"},
389
- {"shape":"InvalidParameterValueException"}
390
- ]
391
- },
392
- "DescribeConformancePacks":{
393
- "name":"DescribeConformancePacks",
394
- "http":{
395
- "method":"POST",
396
- "requestUri":"/"
397
- },
398
- "input":{"shape":"DescribeConformancePacksRequest"},
399
- "output":{"shape":"DescribeConformancePacksResponse"},
400
- "errors":[
401
- {"shape":"NoSuchConformancePackException"},
402
- {"shape":"InvalidLimitException"},
403
- {"shape":"InvalidNextTokenException"},
404
- {"shape":"InvalidParameterValueException"}
405
- ]
406
- },
407
- "DescribeDeliveryChannelStatus":{
408
- "name":"DescribeDeliveryChannelStatus",
409
- "http":{
410
- "method":"POST",
411
- "requestUri":"/"
412
- },
413
- "input":{"shape":"DescribeDeliveryChannelStatusRequest"},
414
- "output":{"shape":"DescribeDeliveryChannelStatusResponse"},
415
- "errors":[
416
- {"shape":"NoSuchDeliveryChannelException"}
417
- ]
418
- },
419
- "DescribeDeliveryChannels":{
420
- "name":"DescribeDeliveryChannels",
421
- "http":{
422
- "method":"POST",
423
- "requestUri":"/"
424
- },
425
- "input":{"shape":"DescribeDeliveryChannelsRequest"},
426
- "output":{"shape":"DescribeDeliveryChannelsResponse"},
427
- "errors":[
428
- {"shape":"NoSuchDeliveryChannelException"}
429
- ]
430
- },
431
- "DescribeOrganizationConfigRuleStatuses":{
432
- "name":"DescribeOrganizationConfigRuleStatuses",
433
- "http":{
434
- "method":"POST",
435
- "requestUri":"/"
436
- },
437
- "input":{"shape":"DescribeOrganizationConfigRuleStatusesRequest"},
438
- "output":{"shape":"DescribeOrganizationConfigRuleStatusesResponse"},
439
- "errors":[
440
- {"shape":"NoSuchOrganizationConfigRuleException"},
441
- {"shape":"InvalidLimitException"},
442
- {"shape":"InvalidNextTokenException"},
443
- {"shape":"OrganizationAccessDeniedException"}
444
- ]
445
- },
446
- "DescribeOrganizationConfigRules":{
447
- "name":"DescribeOrganizationConfigRules",
448
- "http":{
449
- "method":"POST",
450
- "requestUri":"/"
451
- },
452
- "input":{"shape":"DescribeOrganizationConfigRulesRequest"},
453
- "output":{"shape":"DescribeOrganizationConfigRulesResponse"},
454
- "errors":[
455
- {"shape":"NoSuchOrganizationConfigRuleException"},
456
- {"shape":"InvalidNextTokenException"},
457
- {"shape":"InvalidLimitException"},
458
- {"shape":"OrganizationAccessDeniedException"}
459
- ]
460
- },
461
- "DescribeOrganizationConformancePackStatuses":{
462
- "name":"DescribeOrganizationConformancePackStatuses",
463
- "http":{
464
- "method":"POST",
465
- "requestUri":"/"
466
- },
467
- "input":{"shape":"DescribeOrganizationConformancePackStatusesRequest"},
468
- "output":{"shape":"DescribeOrganizationConformancePackStatusesResponse"},
469
- "errors":[
470
- {"shape":"NoSuchOrganizationConformancePackException"},
471
- {"shape":"InvalidLimitException"},
472
- {"shape":"InvalidNextTokenException"},
473
- {"shape":"OrganizationAccessDeniedException"}
474
- ]
475
- },
476
- "DescribeOrganizationConformancePacks":{
477
- "name":"DescribeOrganizationConformancePacks",
478
- "http":{
479
- "method":"POST",
480
- "requestUri":"/"
481
- },
482
- "input":{"shape":"DescribeOrganizationConformancePacksRequest"},
483
- "output":{"shape":"DescribeOrganizationConformancePacksResponse"},
484
- "errors":[
485
- {"shape":"NoSuchOrganizationConformancePackException"},
486
- {"shape":"InvalidNextTokenException"},
487
- {"shape":"InvalidLimitException"},
488
- {"shape":"OrganizationAccessDeniedException"}
489
- ]
490
- },
491
- "DescribePendingAggregationRequests":{
492
- "name":"DescribePendingAggregationRequests",
493
- "http":{
494
- "method":"POST",
495
- "requestUri":"/"
496
- },
497
- "input":{"shape":"DescribePendingAggregationRequestsRequest"},
498
- "output":{"shape":"DescribePendingAggregationRequestsResponse"},
499
- "errors":[
500
- {"shape":"InvalidParameterValueException"},
501
- {"shape":"InvalidNextTokenException"},
502
- {"shape":"InvalidLimitException"}
503
- ]
504
- },
505
- "DescribeRemediationConfigurations":{
506
- "name":"DescribeRemediationConfigurations",
507
- "http":{
508
- "method":"POST",
509
- "requestUri":"/"
510
- },
511
- "input":{"shape":"DescribeRemediationConfigurationsRequest"},
512
- "output":{"shape":"DescribeRemediationConfigurationsResponse"}
513
- },
514
- "DescribeRemediationExceptions":{
515
- "name":"DescribeRemediationExceptions",
516
- "http":{
517
- "method":"POST",
518
- "requestUri":"/"
519
- },
520
- "input":{"shape":"DescribeRemediationExceptionsRequest"},
521
- "output":{"shape":"DescribeRemediationExceptionsResponse"},
522
- "errors":[
523
- {"shape":"InvalidNextTokenException"},
524
- {"shape":"InvalidParameterValueException"}
525
- ]
526
- },
527
- "DescribeRemediationExecutionStatus":{
528
- "name":"DescribeRemediationExecutionStatus",
529
- "http":{
530
- "method":"POST",
531
- "requestUri":"/"
532
- },
533
- "input":{"shape":"DescribeRemediationExecutionStatusRequest"},
534
- "output":{"shape":"DescribeRemediationExecutionStatusResponse"},
535
- "errors":[
536
- {"shape":"NoSuchRemediationConfigurationException"},
537
- {"shape":"InvalidNextTokenException"}
538
- ]
539
- },
540
- "DescribeRetentionConfigurations":{
541
- "name":"DescribeRetentionConfigurations",
542
- "http":{
543
- "method":"POST",
544
- "requestUri":"/"
545
- },
546
- "input":{"shape":"DescribeRetentionConfigurationsRequest"},
547
- "output":{"shape":"DescribeRetentionConfigurationsResponse"},
548
- "errors":[
549
- {"shape":"InvalidParameterValueException"},
550
- {"shape":"NoSuchRetentionConfigurationException"},
551
- {"shape":"InvalidNextTokenException"}
552
- ]
553
- },
554
- "GetAggregateComplianceDetailsByConfigRule":{
555
- "name":"GetAggregateComplianceDetailsByConfigRule",
556
- "http":{
557
- "method":"POST",
558
- "requestUri":"/"
559
- },
560
- "input":{"shape":"GetAggregateComplianceDetailsByConfigRuleRequest"},
561
- "output":{"shape":"GetAggregateComplianceDetailsByConfigRuleResponse"},
562
- "errors":[
563
- {"shape":"ValidationException"},
564
- {"shape":"InvalidLimitException"},
565
- {"shape":"InvalidNextTokenException"},
566
- {"shape":"NoSuchConfigurationAggregatorException"}
567
- ]
568
- },
569
- "GetAggregateConfigRuleComplianceSummary":{
570
- "name":"GetAggregateConfigRuleComplianceSummary",
571
- "http":{
572
- "method":"POST",
573
- "requestUri":"/"
574
- },
575
- "input":{"shape":"GetAggregateConfigRuleComplianceSummaryRequest"},
576
- "output":{"shape":"GetAggregateConfigRuleComplianceSummaryResponse"},
577
- "errors":[
578
- {"shape":"ValidationException"},
579
- {"shape":"InvalidLimitException"},
580
- {"shape":"InvalidNextTokenException"},
581
- {"shape":"NoSuchConfigurationAggregatorException"}
582
- ]
583
- },
584
- "GetAggregateDiscoveredResourceCounts":{
585
- "name":"GetAggregateDiscoveredResourceCounts",
586
- "http":{
587
- "method":"POST",
588
- "requestUri":"/"
589
- },
590
- "input":{"shape":"GetAggregateDiscoveredResourceCountsRequest"},
591
- "output":{"shape":"GetAggregateDiscoveredResourceCountsResponse"},
592
- "errors":[
593
- {"shape":"ValidationException"},
594
- {"shape":"InvalidLimitException"},
595
- {"shape":"InvalidNextTokenException"},
596
- {"shape":"NoSuchConfigurationAggregatorException"}
597
- ]
598
- },
599
- "GetAggregateResourceConfig":{
600
- "name":"GetAggregateResourceConfig",
601
- "http":{
602
- "method":"POST",
603
- "requestUri":"/"
604
- },
605
- "input":{"shape":"GetAggregateResourceConfigRequest"},
606
- "output":{"shape":"GetAggregateResourceConfigResponse"},
607
- "errors":[
608
- {"shape":"ValidationException"},
609
- {"shape":"NoSuchConfigurationAggregatorException"},
610
- {"shape":"OversizedConfigurationItemException"},
611
- {"shape":"ResourceNotDiscoveredException"}
612
- ]
613
- },
614
- "GetComplianceDetailsByConfigRule":{
615
- "name":"GetComplianceDetailsByConfigRule",
616
- "http":{
617
- "method":"POST",
618
- "requestUri":"/"
619
- },
620
- "input":{"shape":"GetComplianceDetailsByConfigRuleRequest"},
621
- "output":{"shape":"GetComplianceDetailsByConfigRuleResponse"},
622
- "errors":[
623
- {"shape":"InvalidParameterValueException"},
624
- {"shape":"InvalidNextTokenException"},
625
- {"shape":"NoSuchConfigRuleException"}
626
- ]
627
- },
628
- "GetComplianceDetailsByResource":{
629
- "name":"GetComplianceDetailsByResource",
630
- "http":{
631
- "method":"POST",
632
- "requestUri":"/"
633
- },
634
- "input":{"shape":"GetComplianceDetailsByResourceRequest"},
635
- "output":{"shape":"GetComplianceDetailsByResourceResponse"},
636
- "errors":[
637
- {"shape":"InvalidParameterValueException"}
638
- ]
639
- },
640
- "GetComplianceSummaryByConfigRule":{
641
- "name":"GetComplianceSummaryByConfigRule",
642
- "http":{
643
- "method":"POST",
644
- "requestUri":"/"
645
- },
646
- "output":{"shape":"GetComplianceSummaryByConfigRuleResponse"}
647
- },
648
- "GetComplianceSummaryByResourceType":{
649
- "name":"GetComplianceSummaryByResourceType",
650
- "http":{
651
- "method":"POST",
652
- "requestUri":"/"
653
- },
654
- "input":{"shape":"GetComplianceSummaryByResourceTypeRequest"},
655
- "output":{"shape":"GetComplianceSummaryByResourceTypeResponse"},
656
- "errors":[
657
- {"shape":"InvalidParameterValueException"}
658
- ]
659
- },
660
- "GetConformancePackComplianceDetails":{
661
- "name":"GetConformancePackComplianceDetails",
662
- "http":{
663
- "method":"POST",
664
- "requestUri":"/"
665
- },
666
- "input":{"shape":"GetConformancePackComplianceDetailsRequest"},
667
- "output":{"shape":"GetConformancePackComplianceDetailsResponse"},
668
- "errors":[
669
- {"shape":"InvalidLimitException"},
670
- {"shape":"InvalidNextTokenException"},
671
- {"shape":"NoSuchConformancePackException"},
672
- {"shape":"NoSuchConfigRuleInConformancePackException"},
673
- {"shape":"InvalidParameterValueException"}
674
- ]
675
- },
676
- "GetConformancePackComplianceSummary":{
677
- "name":"GetConformancePackComplianceSummary",
678
- "http":{
679
- "method":"POST",
680
- "requestUri":"/"
681
- },
682
- "input":{"shape":"GetConformancePackComplianceSummaryRequest"},
683
- "output":{"shape":"GetConformancePackComplianceSummaryResponse"},
684
- "errors":[
685
- {"shape":"NoSuchConformancePackException"},
686
- {"shape":"InvalidLimitException"},
687
- {"shape":"InvalidNextTokenException"}
688
- ]
689
- },
690
- "GetDiscoveredResourceCounts":{
691
- "name":"GetDiscoveredResourceCounts",
692
- "http":{
693
- "method":"POST",
694
- "requestUri":"/"
695
- },
696
- "input":{"shape":"GetDiscoveredResourceCountsRequest"},
697
- "output":{"shape":"GetDiscoveredResourceCountsResponse"},
698
- "errors":[
699
- {"shape":"ValidationException"},
700
- {"shape":"InvalidLimitException"},
701
- {"shape":"InvalidNextTokenException"}
702
- ]
703
- },
704
- "GetOrganizationConfigRuleDetailedStatus":{
705
- "name":"GetOrganizationConfigRuleDetailedStatus",
706
- "http":{
707
- "method":"POST",
708
- "requestUri":"/"
709
- },
710
- "input":{"shape":"GetOrganizationConfigRuleDetailedStatusRequest"},
711
- "output":{"shape":"GetOrganizationConfigRuleDetailedStatusResponse"},
712
- "errors":[
713
- {"shape":"NoSuchOrganizationConfigRuleException"},
714
- {"shape":"InvalidLimitException"},
715
- {"shape":"InvalidNextTokenException"},
716
- {"shape":"OrganizationAccessDeniedException"}
717
- ]
718
- },
719
- "GetOrganizationConformancePackDetailedStatus":{
720
- "name":"GetOrganizationConformancePackDetailedStatus",
721
- "http":{
722
- "method":"POST",
723
- "requestUri":"/"
724
- },
725
- "input":{"shape":"GetOrganizationConformancePackDetailedStatusRequest"},
726
- "output":{"shape":"GetOrganizationConformancePackDetailedStatusResponse"},
727
- "errors":[
728
- {"shape":"NoSuchOrganizationConformancePackException"},
729
- {"shape":"InvalidLimitException"},
730
- {"shape":"InvalidNextTokenException"},
731
- {"shape":"OrganizationAccessDeniedException"}
732
- ]
733
- },
734
- "GetResourceConfigHistory":{
735
- "name":"GetResourceConfigHistory",
736
- "http":{
737
- "method":"POST",
738
- "requestUri":"/"
739
- },
740
- "input":{"shape":"GetResourceConfigHistoryRequest"},
741
- "output":{"shape":"GetResourceConfigHistoryResponse"},
742
- "errors":[
743
- {"shape":"ValidationException"},
744
- {"shape":"InvalidTimeRangeException"},
745
- {"shape":"InvalidLimitException"},
746
- {"shape":"InvalidNextTokenException"},
747
- {"shape":"NoAvailableConfigurationRecorderException"},
748
- {"shape":"ResourceNotDiscoveredException"}
749
- ]
750
- },
751
- "ListAggregateDiscoveredResources":{
752
- "name":"ListAggregateDiscoveredResources",
753
- "http":{
754
- "method":"POST",
755
- "requestUri":"/"
756
- },
757
- "input":{"shape":"ListAggregateDiscoveredResourcesRequest"},
758
- "output":{"shape":"ListAggregateDiscoveredResourcesResponse"},
759
- "errors":[
760
- {"shape":"ValidationException"},
761
- {"shape":"InvalidLimitException"},
762
- {"shape":"InvalidNextTokenException"},
763
- {"shape":"NoSuchConfigurationAggregatorException"}
764
- ]
765
- },
766
- "ListDiscoveredResources":{
767
- "name":"ListDiscoveredResources",
768
- "http":{
769
- "method":"POST",
770
- "requestUri":"/"
771
- },
772
- "input":{"shape":"ListDiscoveredResourcesRequest"},
773
- "output":{"shape":"ListDiscoveredResourcesResponse"},
774
- "errors":[
775
- {"shape":"ValidationException"},
776
- {"shape":"InvalidLimitException"},
777
- {"shape":"InvalidNextTokenException"},
778
- {"shape":"NoAvailableConfigurationRecorderException"}
779
- ]
780
- },
781
- "ListTagsForResource":{
782
- "name":"ListTagsForResource",
783
- "http":{
784
- "method":"POST",
785
- "requestUri":"/"
786
- },
787
- "input":{"shape":"ListTagsForResourceRequest"},
788
- "output":{"shape":"ListTagsForResourceResponse"},
789
- "errors":[
790
- {"shape":"ResourceNotFoundException"},
791
- {"shape":"ValidationException"},
792
- {"shape":"InvalidLimitException"},
793
- {"shape":"InvalidNextTokenException"}
794
- ]
795
- },
796
- "PutAggregationAuthorization":{
797
- "name":"PutAggregationAuthorization",
798
- "http":{
799
- "method":"POST",
800
- "requestUri":"/"
801
- },
802
- "input":{"shape":"PutAggregationAuthorizationRequest"},
803
- "output":{"shape":"PutAggregationAuthorizationResponse"},
804
- "errors":[
805
- {"shape":"InvalidParameterValueException"}
806
- ]
807
- },
808
- "PutConfigRule":{
809
- "name":"PutConfigRule",
810
- "http":{
811
- "method":"POST",
812
- "requestUri":"/"
813
- },
814
- "input":{"shape":"PutConfigRuleRequest"},
815
- "errors":[
816
- {"shape":"InvalidParameterValueException"},
817
- {"shape":"MaxNumberOfConfigRulesExceededException"},
818
- {"shape":"ResourceInUseException"},
819
- {"shape":"InsufficientPermissionsException"},
820
- {"shape":"NoAvailableConfigurationRecorderException"}
821
- ]
822
- },
823
- "PutConfigurationAggregator":{
824
- "name":"PutConfigurationAggregator",
825
- "http":{
826
- "method":"POST",
827
- "requestUri":"/"
828
- },
829
- "input":{"shape":"PutConfigurationAggregatorRequest"},
830
- "output":{"shape":"PutConfigurationAggregatorResponse"},
831
- "errors":[
832
- {"shape":"InvalidParameterValueException"},
833
- {"shape":"LimitExceededException"},
834
- {"shape":"InvalidRoleException"},
835
- {"shape":"OrganizationAccessDeniedException"},
836
- {"shape":"NoAvailableOrganizationException"},
837
- {"shape":"OrganizationAllFeaturesNotEnabledException"}
838
- ]
839
- },
840
- "PutConfigurationRecorder":{
841
- "name":"PutConfigurationRecorder",
842
- "http":{
843
- "method":"POST",
844
- "requestUri":"/"
845
- },
846
- "input":{"shape":"PutConfigurationRecorderRequest"},
847
- "errors":[
848
- {"shape":"MaxNumberOfConfigurationRecordersExceededException"},
849
- {"shape":"InvalidConfigurationRecorderNameException"},
850
- {"shape":"InvalidRoleException"},
851
- {"shape":"InvalidRecordingGroupException"}
852
- ]
853
- },
854
- "PutConformancePack":{
855
- "name":"PutConformancePack",
856
- "http":{
857
- "method":"POST",
858
- "requestUri":"/"
859
- },
860
- "input":{"shape":"PutConformancePackRequest"},
861
- "output":{"shape":"PutConformancePackResponse"},
862
- "errors":[
863
- {"shape":"InsufficientPermissionsException"},
864
- {"shape":"ConformancePackTemplateValidationException"},
865
- {"shape":"ResourceInUseException"},
866
- {"shape":"InvalidParameterValueException"},
867
- {"shape":"MaxNumberOfConformancePacksExceededException"}
868
- ]
869
- },
870
- "PutDeliveryChannel":{
871
- "name":"PutDeliveryChannel",
872
- "http":{
873
- "method":"POST",
874
- "requestUri":"/"
875
- },
876
- "input":{"shape":"PutDeliveryChannelRequest"},
877
- "errors":[
878
- {"shape":"MaxNumberOfDeliveryChannelsExceededException"},
879
- {"shape":"NoAvailableConfigurationRecorderException"},
880
- {"shape":"InvalidDeliveryChannelNameException"},
881
- {"shape":"NoSuchBucketException"},
882
- {"shape":"InvalidS3KeyPrefixException"},
883
- {"shape":"InvalidSNSTopicARNException"},
884
- {"shape":"InsufficientDeliveryPolicyException"}
885
- ]
886
- },
887
- "PutEvaluations":{
888
- "name":"PutEvaluations",
889
- "http":{
890
- "method":"POST",
891
- "requestUri":"/"
892
- },
893
- "input":{"shape":"PutEvaluationsRequest"},
894
- "output":{"shape":"PutEvaluationsResponse"},
895
- "errors":[
896
- {"shape":"InvalidParameterValueException"},
897
- {"shape":"InvalidResultTokenException"},
898
- {"shape":"NoSuchConfigRuleException"}
899
- ]
900
- },
901
- "PutOrganizationConfigRule":{
902
- "name":"PutOrganizationConfigRule",
903
- "http":{
904
- "method":"POST",
905
- "requestUri":"/"
906
- },
907
- "input":{"shape":"PutOrganizationConfigRuleRequest"},
908
- "output":{"shape":"PutOrganizationConfigRuleResponse"},
909
- "errors":[
910
- {"shape":"MaxNumberOfOrganizationConfigRulesExceededException"},
911
- {"shape":"ResourceInUseException"},
912
- {"shape":"InvalidParameterValueException"},
913
- {"shape":"ValidationException"},
914
- {"shape":"OrganizationAccessDeniedException"},
915
- {"shape":"NoAvailableOrganizationException"},
916
- {"shape":"OrganizationAllFeaturesNotEnabledException"},
917
- {"shape":"InsufficientPermissionsException"}
918
- ]
919
- },
920
- "PutOrganizationConformancePack":{
921
- "name":"PutOrganizationConformancePack",
922
- "http":{
923
- "method":"POST",
924
- "requestUri":"/"
925
- },
926
- "input":{"shape":"PutOrganizationConformancePackRequest"},
927
- "output":{"shape":"PutOrganizationConformancePackResponse"},
928
- "errors":[
929
- {"shape":"MaxNumberOfOrganizationConformancePacksExceededException"},
930
- {"shape":"ResourceInUseException"},
931
- {"shape":"ValidationException"},
932
- {"shape":"OrganizationAccessDeniedException"},
933
- {"shape":"InsufficientPermissionsException"},
934
- {"shape":"OrganizationConformancePackTemplateValidationException"},
935
- {"shape":"OrganizationAllFeaturesNotEnabledException"},
936
- {"shape":"NoAvailableOrganizationException"}
937
- ]
938
- },
939
- "PutRemediationConfigurations":{
940
- "name":"PutRemediationConfigurations",
941
- "http":{
942
- "method":"POST",
943
- "requestUri":"/"
944
- },
945
- "input":{"shape":"PutRemediationConfigurationsRequest"},
946
- "output":{"shape":"PutRemediationConfigurationsResponse"},
947
- "errors":[
948
- {"shape":"InsufficientPermissionsException"},
949
- {"shape":"InvalidParameterValueException"}
950
- ]
951
- },
952
- "PutRemediationExceptions":{
953
- "name":"PutRemediationExceptions",
954
- "http":{
955
- "method":"POST",
956
- "requestUri":"/"
957
- },
958
- "input":{"shape":"PutRemediationExceptionsRequest"},
959
- "output":{"shape":"PutRemediationExceptionsResponse"},
960
- "errors":[
961
- {"shape":"InvalidParameterValueException"},
962
- {"shape":"InsufficientPermissionsException"}
963
- ]
964
- },
965
- "PutResourceConfig":{
966
- "name":"PutResourceConfig",
967
- "http":{
968
- "method":"POST",
969
- "requestUri":"/"
970
- },
971
- "input":{"shape":"PutResourceConfigRequest"},
972
- "errors":[
973
- {"shape":"ValidationException"},
974
- {"shape":"InsufficientPermissionsException"},
975
- {"shape":"NoRunningConfigurationRecorderException"},
976
- {"shape":"MaxActiveResourcesExceededException"}
977
- ]
978
- },
979
- "PutRetentionConfiguration":{
980
- "name":"PutRetentionConfiguration",
981
- "http":{
982
- "method":"POST",
983
- "requestUri":"/"
984
- },
985
- "input":{"shape":"PutRetentionConfigurationRequest"},
986
- "output":{"shape":"PutRetentionConfigurationResponse"},
987
- "errors":[
988
- {"shape":"InvalidParameterValueException"},
989
- {"shape":"MaxNumberOfRetentionConfigurationsExceededException"}
990
- ]
991
- },
992
- "SelectAggregateResourceConfig":{
993
- "name":"SelectAggregateResourceConfig",
994
- "http":{
995
- "method":"POST",
996
- "requestUri":"/"
997
- },
998
- "input":{"shape":"SelectAggregateResourceConfigRequest"},
999
- "output":{"shape":"SelectAggregateResourceConfigResponse"},
1000
- "errors":[
1001
- {"shape":"InvalidExpressionException"},
1002
- {"shape":"NoSuchConfigurationAggregatorException"},
1003
- {"shape":"InvalidLimitException"},
1004
- {"shape":"InvalidNextTokenException"}
1005
- ]
1006
- },
1007
- "SelectResourceConfig":{
1008
- "name":"SelectResourceConfig",
1009
- "http":{
1010
- "method":"POST",
1011
- "requestUri":"/"
1012
- },
1013
- "input":{"shape":"SelectResourceConfigRequest"},
1014
- "output":{"shape":"SelectResourceConfigResponse"},
1015
- "errors":[
1016
- {"shape":"InvalidExpressionException"},
1017
- {"shape":"InvalidLimitException"},
1018
- {"shape":"InvalidNextTokenException"}
1019
- ]
1020
- },
1021
- "StartConfigRulesEvaluation":{
1022
- "name":"StartConfigRulesEvaluation",
1023
- "http":{
1024
- "method":"POST",
1025
- "requestUri":"/"
1026
- },
1027
- "input":{"shape":"StartConfigRulesEvaluationRequest"},
1028
- "output":{"shape":"StartConfigRulesEvaluationResponse"},
1029
- "errors":[
1030
- {"shape":"NoSuchConfigRuleException"},
1031
- {"shape":"LimitExceededException"},
1032
- {"shape":"ResourceInUseException"},
1033
- {"shape":"InvalidParameterValueException"}
1034
- ]
1035
- },
1036
- "StartConfigurationRecorder":{
1037
- "name":"StartConfigurationRecorder",
1038
- "http":{
1039
- "method":"POST",
1040
- "requestUri":"/"
1041
- },
1042
- "input":{"shape":"StartConfigurationRecorderRequest"},
1043
- "errors":[
1044
- {"shape":"NoSuchConfigurationRecorderException"},
1045
- {"shape":"NoAvailableDeliveryChannelException"}
1046
- ]
1047
- },
1048
- "StartRemediationExecution":{
1049
- "name":"StartRemediationExecution",
1050
- "http":{
1051
- "method":"POST",
1052
- "requestUri":"/"
1053
- },
1054
- "input":{"shape":"StartRemediationExecutionRequest"},
1055
- "output":{"shape":"StartRemediationExecutionResponse"},
1056
- "errors":[
1057
- {"shape":"InvalidParameterValueException"},
1058
- {"shape":"InsufficientPermissionsException"},
1059
- {"shape":"NoSuchRemediationConfigurationException"}
1060
- ]
1061
- },
1062
- "StopConfigurationRecorder":{
1063
- "name":"StopConfigurationRecorder",
1064
- "http":{
1065
- "method":"POST",
1066
- "requestUri":"/"
1067
- },
1068
- "input":{"shape":"StopConfigurationRecorderRequest"},
1069
- "errors":[
1070
- {"shape":"NoSuchConfigurationRecorderException"}
1071
- ]
1072
- },
1073
- "TagResource":{
1074
- "name":"TagResource",
1075
- "http":{
1076
- "method":"POST",
1077
- "requestUri":"/"
1078
- },
1079
- "input":{"shape":"TagResourceRequest"},
1080
- "errors":[
1081
- {"shape":"ValidationException"},
1082
- {"shape":"ResourceNotFoundException"},
1083
- {"shape":"TooManyTagsException"}
1084
- ]
1085
- },
1086
- "UntagResource":{
1087
- "name":"UntagResource",
1088
- "http":{
1089
- "method":"POST",
1090
- "requestUri":"/"
1091
- },
1092
- "input":{"shape":"UntagResourceRequest"},
1093
- "errors":[
1094
- {"shape":"ValidationException"},
1095
- {"shape":"ResourceNotFoundException"}
1096
- ]
1097
- }
1098
- },
1099
- "shapes":{
1100
- "ARN":{"type":"string"},
1101
- "AccountAggregationSource":{
1102
- "type":"structure",
1103
- "required":["AccountIds"],
1104
- "members":{
1105
- "AccountIds":{"shape":"AccountAggregationSourceAccountList"},
1106
- "AllAwsRegions":{"shape":"Boolean"},
1107
- "AwsRegions":{"shape":"AggregatorRegionList"}
1108
- }
1109
- },
1110
- "AccountAggregationSourceAccountList":{
1111
- "type":"list",
1112
- "member":{"shape":"AccountId"},
1113
- "min":1
1114
- },
1115
- "AccountAggregationSourceList":{
1116
- "type":"list",
1117
- "member":{"shape":"AccountAggregationSource"},
1118
- "max":1,
1119
- "min":0
1120
- },
1121
- "AccountId":{
1122
- "type":"string",
1123
- "pattern":"\\d{12}"
1124
- },
1125
- "AggregateComplianceByConfigRule":{
1126
- "type":"structure",
1127
- "members":{
1128
- "ConfigRuleName":{"shape":"ConfigRuleName"},
1129
- "Compliance":{"shape":"Compliance"},
1130
- "AccountId":{"shape":"AccountId"},
1131
- "AwsRegion":{"shape":"AwsRegion"}
1132
- }
1133
- },
1134
- "AggregateComplianceByConfigRuleList":{
1135
- "type":"list",
1136
- "member":{"shape":"AggregateComplianceByConfigRule"}
1137
- },
1138
- "AggregateComplianceCount":{
1139
- "type":"structure",
1140
- "members":{
1141
- "GroupName":{"shape":"StringWithCharLimit256"},
1142
- "ComplianceSummary":{"shape":"ComplianceSummary"}
1143
- }
1144
- },
1145
- "AggregateComplianceCountList":{
1146
- "type":"list",
1147
- "member":{"shape":"AggregateComplianceCount"}
1148
- },
1149
- "AggregateEvaluationResult":{
1150
- "type":"structure",
1151
- "members":{
1152
- "EvaluationResultIdentifier":{"shape":"EvaluationResultIdentifier"},
1153
- "ComplianceType":{"shape":"ComplianceType"},
1154
- "ResultRecordedTime":{"shape":"Date"},
1155
- "ConfigRuleInvokedTime":{"shape":"Date"},
1156
- "Annotation":{"shape":"StringWithCharLimit256"},
1157
- "AccountId":{"shape":"AccountId"},
1158
- "AwsRegion":{"shape":"AwsRegion"}
1159
- }
1160
- },
1161
- "AggregateEvaluationResultList":{
1162
- "type":"list",
1163
- "member":{"shape":"AggregateEvaluationResult"}
1164
- },
1165
- "AggregateResourceIdentifier":{
1166
- "type":"structure",
1167
- "required":[
1168
- "SourceAccountId",
1169
- "SourceRegion",
1170
- "ResourceId",
1171
- "ResourceType"
1172
- ],
1173
- "members":{
1174
- "SourceAccountId":{"shape":"AccountId"},
1175
- "SourceRegion":{"shape":"AwsRegion"},
1176
- "ResourceId":{"shape":"ResourceId"},
1177
- "ResourceType":{"shape":"ResourceType"},
1178
- "ResourceName":{"shape":"ResourceName"}
1179
- }
1180
- },
1181
- "AggregatedSourceStatus":{
1182
- "type":"structure",
1183
- "members":{
1184
- "SourceId":{"shape":"String"},
1185
- "SourceType":{"shape":"AggregatedSourceType"},
1186
- "AwsRegion":{"shape":"AwsRegion"},
1187
- "LastUpdateStatus":{"shape":"AggregatedSourceStatusType"},
1188
- "LastUpdateTime":{"shape":"Date"},
1189
- "LastErrorCode":{"shape":"String"},
1190
- "LastErrorMessage":{"shape":"String"}
1191
- }
1192
- },
1193
- "AggregatedSourceStatusList":{
1194
- "type":"list",
1195
- "member":{"shape":"AggregatedSourceStatus"}
1196
- },
1197
- "AggregatedSourceStatusType":{
1198
- "type":"string",
1199
- "enum":[
1200
- "FAILED",
1201
- "SUCCEEDED",
1202
- "OUTDATED"
1203
- ]
1204
- },
1205
- "AggregatedSourceStatusTypeList":{
1206
- "type":"list",
1207
- "member":{"shape":"AggregatedSourceStatusType"},
1208
- "min":1
1209
- },
1210
- "AggregatedSourceType":{
1211
- "type":"string",
1212
- "enum":[
1213
- "ACCOUNT",
1214
- "ORGANIZATION"
1215
- ]
1216
- },
1217
- "AggregationAuthorization":{
1218
- "type":"structure",
1219
- "members":{
1220
- "AggregationAuthorizationArn":{"shape":"String"},
1221
- "AuthorizedAccountId":{"shape":"AccountId"},
1222
- "AuthorizedAwsRegion":{"shape":"AwsRegion"},
1223
- "CreationTime":{"shape":"Date"}
1224
- }
1225
- },
1226
- "AggregationAuthorizationList":{
1227
- "type":"list",
1228
- "member":{"shape":"AggregationAuthorization"}
1229
- },
1230
- "AggregatorRegionList":{
1231
- "type":"list",
1232
- "member":{"shape":"String"},
1233
- "min":1
1234
- },
1235
- "AllSupported":{"type":"boolean"},
1236
- "AmazonResourceName":{
1237
- "type":"string",
1238
- "max":1000,
1239
- "min":1
1240
- },
1241
- "Annotation":{
1242
- "type":"string",
1243
- "max":256,
1244
- "min":0
1245
- },
1246
- "AutoRemediationAttemptSeconds":{
1247
- "type":"long",
1248
- "box":true,
1249
- "max":2678000,
1250
- "min":1
1251
- },
1252
- "AutoRemediationAttempts":{
1253
- "type":"integer",
1254
- "box":true,
1255
- "max":25,
1256
- "min":1
1257
- },
1258
- "AvailabilityZone":{"type":"string"},
1259
- "AwsRegion":{
1260
- "type":"string",
1261
- "max":64,
1262
- "min":1
1263
- },
1264
- "BaseConfigurationItem":{
1265
- "type":"structure",
1266
- "members":{
1267
- "version":{"shape":"Version"},
1268
- "accountId":{"shape":"AccountId"},
1269
- "configurationItemCaptureTime":{"shape":"ConfigurationItemCaptureTime"},
1270
- "configurationItemStatus":{"shape":"ConfigurationItemStatus"},
1271
- "configurationStateId":{"shape":"ConfigurationStateId"},
1272
- "arn":{"shape":"ARN"},
1273
- "resourceType":{"shape":"ResourceType"},
1274
- "resourceId":{"shape":"ResourceId"},
1275
- "resourceName":{"shape":"ResourceName"},
1276
- "awsRegion":{"shape":"AwsRegion"},
1277
- "availabilityZone":{"shape":"AvailabilityZone"},
1278
- "resourceCreationTime":{"shape":"ResourceCreationTime"},
1279
- "configuration":{"shape":"Configuration"},
1280
- "supplementaryConfiguration":{"shape":"SupplementaryConfiguration"}
1281
- }
1282
- },
1283
- "BaseConfigurationItems":{
1284
- "type":"list",
1285
- "member":{"shape":"BaseConfigurationItem"}
1286
- },
1287
- "BaseResourceId":{
1288
- "type":"string",
1289
- "max":768,
1290
- "min":1
1291
- },
1292
- "BatchGetAggregateResourceConfigRequest":{
1293
- "type":"structure",
1294
- "required":[
1295
- "ConfigurationAggregatorName",
1296
- "ResourceIdentifiers"
1297
- ],
1298
- "members":{
1299
- "ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
1300
- "ResourceIdentifiers":{"shape":"ResourceIdentifiersList"}
1301
- }
1302
- },
1303
- "BatchGetAggregateResourceConfigResponse":{
1304
- "type":"structure",
1305
- "members":{
1306
- "BaseConfigurationItems":{"shape":"BaseConfigurationItems"},
1307
- "UnprocessedResourceIdentifiers":{"shape":"UnprocessedResourceIdentifierList"}
1308
- }
1309
- },
1310
- "BatchGetResourceConfigRequest":{
1311
- "type":"structure",
1312
- "required":["resourceKeys"],
1313
- "members":{
1314
- "resourceKeys":{"shape":"ResourceKeys"}
1315
- }
1316
- },
1317
- "BatchGetResourceConfigResponse":{
1318
- "type":"structure",
1319
- "members":{
1320
- "baseConfigurationItems":{"shape":"BaseConfigurationItems"},
1321
- "unprocessedResourceKeys":{"shape":"ResourceKeys"}
1322
- }
1323
- },
1324
- "Boolean":{"type":"boolean"},
1325
- "ChannelName":{
1326
- "type":"string",
1327
- "max":256,
1328
- "min":1
1329
- },
1330
- "ChronologicalOrder":{
1331
- "type":"string",
1332
- "enum":[
1333
- "Reverse",
1334
- "Forward"
1335
- ]
1336
- },
1337
- "Compliance":{
1338
- "type":"structure",
1339
- "members":{
1340
- "ComplianceType":{"shape":"ComplianceType"},
1341
- "ComplianceContributorCount":{"shape":"ComplianceContributorCount"}
1342
- }
1343
- },
1344
- "ComplianceByConfigRule":{
1345
- "type":"structure",
1346
- "members":{
1347
- "ConfigRuleName":{"shape":"StringWithCharLimit64"},
1348
- "Compliance":{"shape":"Compliance"}
1349
- }
1350
- },
1351
- "ComplianceByConfigRules":{
1352
- "type":"list",
1353
- "member":{"shape":"ComplianceByConfigRule"}
1354
- },
1355
- "ComplianceByResource":{
1356
- "type":"structure",
1357
- "members":{
1358
- "ResourceType":{"shape":"StringWithCharLimit256"},
1359
- "ResourceId":{"shape":"BaseResourceId"},
1360
- "Compliance":{"shape":"Compliance"}
1361
- }
1362
- },
1363
- "ComplianceByResources":{
1364
- "type":"list",
1365
- "member":{"shape":"ComplianceByResource"}
1366
- },
1367
- "ComplianceContributorCount":{
1368
- "type":"structure",
1369
- "members":{
1370
- "CappedCount":{"shape":"Integer"},
1371
- "CapExceeded":{"shape":"Boolean"}
1372
- }
1373
- },
1374
- "ComplianceResourceTypes":{
1375
- "type":"list",
1376
- "member":{"shape":"StringWithCharLimit256"},
1377
- "max":100,
1378
- "min":0
1379
- },
1380
- "ComplianceSummariesByResourceType":{
1381
- "type":"list",
1382
- "member":{"shape":"ComplianceSummaryByResourceType"}
1383
- },
1384
- "ComplianceSummary":{
1385
- "type":"structure",
1386
- "members":{
1387
- "CompliantResourceCount":{"shape":"ComplianceContributorCount"},
1388
- "NonCompliantResourceCount":{"shape":"ComplianceContributorCount"},
1389
- "ComplianceSummaryTimestamp":{"shape":"Date"}
1390
- }
1391
- },
1392
- "ComplianceSummaryByResourceType":{
1393
- "type":"structure",
1394
- "members":{
1395
- "ResourceType":{"shape":"StringWithCharLimit256"},
1396
- "ComplianceSummary":{"shape":"ComplianceSummary"}
1397
- }
1398
- },
1399
- "ComplianceType":{
1400
- "type":"string",
1401
- "enum":[
1402
- "COMPLIANT",
1403
- "NON_COMPLIANT",
1404
- "NOT_APPLICABLE",
1405
- "INSUFFICIENT_DATA"
1406
- ]
1407
- },
1408
- "ComplianceTypes":{
1409
- "type":"list",
1410
- "member":{"shape":"ComplianceType"},
1411
- "max":3,
1412
- "min":0
1413
- },
1414
- "ConfigExportDeliveryInfo":{
1415
- "type":"structure",
1416
- "members":{
1417
- "lastStatus":{"shape":"DeliveryStatus"},
1418
- "lastErrorCode":{"shape":"String"},
1419
- "lastErrorMessage":{"shape":"String"},
1420
- "lastAttemptTime":{"shape":"Date"},
1421
- "lastSuccessfulTime":{"shape":"Date"},
1422
- "nextDeliveryTime":{"shape":"Date"}
1423
- }
1424
- },
1425
- "ConfigRule":{
1426
- "type":"structure",
1427
- "required":["Source"],
1428
- "members":{
1429
- "ConfigRuleName":{"shape":"ConfigRuleName"},
1430
- "ConfigRuleArn":{"shape":"StringWithCharLimit256"},
1431
- "ConfigRuleId":{"shape":"StringWithCharLimit64"},
1432
- "Description":{"shape":"EmptiableStringWithCharLimit256"},
1433
- "Scope":{"shape":"Scope"},
1434
- "Source":{"shape":"Source"},
1435
- "InputParameters":{"shape":"StringWithCharLimit1024"},
1436
- "MaximumExecutionFrequency":{"shape":"MaximumExecutionFrequency"},
1437
- "ConfigRuleState":{"shape":"ConfigRuleState"},
1438
- "CreatedBy":{"shape":"StringWithCharLimit256"}
1439
- }
1440
- },
1441
- "ConfigRuleComplianceFilters":{
1442
- "type":"structure",
1443
- "members":{
1444
- "ConfigRuleName":{"shape":"ConfigRuleName"},
1445
- "ComplianceType":{"shape":"ComplianceType"},
1446
- "AccountId":{"shape":"AccountId"},
1447
- "AwsRegion":{"shape":"AwsRegion"}
1448
- }
1449
- },
1450
- "ConfigRuleComplianceSummaryFilters":{
1451
- "type":"structure",
1452
- "members":{
1453
- "AccountId":{"shape":"AccountId"},
1454
- "AwsRegion":{"shape":"AwsRegion"}
1455
- }
1456
- },
1457
- "ConfigRuleComplianceSummaryGroupKey":{
1458
- "type":"string",
1459
- "enum":[
1460
- "ACCOUNT_ID",
1461
- "AWS_REGION"
1462
- ]
1463
- },
1464
- "ConfigRuleEvaluationStatus":{
1465
- "type":"structure",
1466
- "members":{
1467
- "ConfigRuleName":{"shape":"ConfigRuleName"},
1468
- "ConfigRuleArn":{"shape":"String"},
1469
- "ConfigRuleId":{"shape":"String"},
1470
- "LastSuccessfulInvocationTime":{"shape":"Date"},
1471
- "LastFailedInvocationTime":{"shape":"Date"},
1472
- "LastSuccessfulEvaluationTime":{"shape":"Date"},
1473
- "LastFailedEvaluationTime":{"shape":"Date"},
1474
- "FirstActivatedTime":{"shape":"Date"},
1475
- "LastDeactivatedTime":{"shape":"Date"},
1476
- "LastErrorCode":{"shape":"String"},
1477
- "LastErrorMessage":{"shape":"String"},
1478
- "FirstEvaluationStarted":{"shape":"Boolean"}
1479
- }
1480
- },
1481
- "ConfigRuleEvaluationStatusList":{
1482
- "type":"list",
1483
- "member":{"shape":"ConfigRuleEvaluationStatus"}
1484
- },
1485
- "ConfigRuleName":{
1486
- "type":"string",
1487
- "max":128,
1488
- "min":1,
1489
- "pattern":".*\\S.*"
1490
- },
1491
- "ConfigRuleNames":{
1492
- "type":"list",
1493
- "member":{"shape":"ConfigRuleName"},
1494
- "max":25,
1495
- "min":0
1496
- },
1497
- "ConfigRuleState":{
1498
- "type":"string",
1499
- "enum":[
1500
- "ACTIVE",
1501
- "DELETING",
1502
- "DELETING_RESULTS",
1503
- "EVALUATING"
1504
- ]
1505
- },
1506
- "ConfigRules":{
1507
- "type":"list",
1508
- "member":{"shape":"ConfigRule"}
1509
- },
1510
- "ConfigSnapshotDeliveryProperties":{
1511
- "type":"structure",
1512
- "members":{
1513
- "deliveryFrequency":{"shape":"MaximumExecutionFrequency"}
1514
- }
1515
- },
1516
- "ConfigStreamDeliveryInfo":{
1517
- "type":"structure",
1518
- "members":{
1519
- "lastStatus":{"shape":"DeliveryStatus"},
1520
- "lastErrorCode":{"shape":"String"},
1521
- "lastErrorMessage":{"shape":"String"},
1522
- "lastStatusChangeTime":{"shape":"Date"}
1523
- }
1524
- },
1525
- "Configuration":{"type":"string"},
1526
- "ConfigurationAggregator":{
1527
- "type":"structure",
1528
- "members":{
1529
- "ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
1530
- "ConfigurationAggregatorArn":{"shape":"ConfigurationAggregatorArn"},
1531
- "AccountAggregationSources":{"shape":"AccountAggregationSourceList"},
1532
- "OrganizationAggregationSource":{"shape":"OrganizationAggregationSource"},
1533
- "CreationTime":{"shape":"Date"},
1534
- "LastUpdatedTime":{"shape":"Date"},
1535
- "CreatedBy":{"shape":"StringWithCharLimit256"}
1536
- }
1537
- },
1538
- "ConfigurationAggregatorArn":{
1539
- "type":"string",
1540
- "pattern":"arn:aws[a-z\\-]*:config:[a-z\\-\\d]+:\\d+:config-aggregator/config-aggregator-[a-z\\d]+"
1541
- },
1542
- "ConfigurationAggregatorList":{
1543
- "type":"list",
1544
- "member":{"shape":"ConfigurationAggregator"}
1545
- },
1546
- "ConfigurationAggregatorName":{
1547
- "type":"string",
1548
- "max":256,
1549
- "min":1,
1550
- "pattern":"[\\w\\-]+"
1551
- },
1552
- "ConfigurationAggregatorNameList":{
1553
- "type":"list",
1554
- "member":{"shape":"ConfigurationAggregatorName"},
1555
- "max":10,
1556
- "min":0
1557
- },
1558
- "ConfigurationItem":{
1559
- "type":"structure",
1560
- "members":{
1561
- "version":{"shape":"Version"},
1562
- "accountId":{"shape":"AccountId"},
1563
- "configurationItemCaptureTime":{"shape":"ConfigurationItemCaptureTime"},
1564
- "configurationItemStatus":{"shape":"ConfigurationItemStatus"},
1565
- "configurationStateId":{"shape":"ConfigurationStateId"},
1566
- "configurationItemMD5Hash":{"shape":"ConfigurationItemMD5Hash"},
1567
- "arn":{"shape":"ARN"},
1568
- "resourceType":{"shape":"ResourceType"},
1569
- "resourceId":{"shape":"ResourceId"},
1570
- "resourceName":{"shape":"ResourceName"},
1571
- "awsRegion":{"shape":"AwsRegion"},
1572
- "availabilityZone":{"shape":"AvailabilityZone"},
1573
- "resourceCreationTime":{"shape":"ResourceCreationTime"},
1574
- "tags":{"shape":"Tags"},
1575
- "relatedEvents":{"shape":"RelatedEventList"},
1576
- "relationships":{"shape":"RelationshipList"},
1577
- "configuration":{"shape":"Configuration"},
1578
- "supplementaryConfiguration":{"shape":"SupplementaryConfiguration"}
1579
- }
1580
- },
1581
- "ConfigurationItemCaptureTime":{"type":"timestamp"},
1582
- "ConfigurationItemList":{
1583
- "type":"list",
1584
- "member":{"shape":"ConfigurationItem"}
1585
- },
1586
- "ConfigurationItemMD5Hash":{"type":"string"},
1587
- "ConfigurationItemStatus":{
1588
- "type":"string",
1589
- "enum":[
1590
- "OK",
1591
- "ResourceDiscovered",
1592
- "ResourceNotRecorded",
1593
- "ResourceDeleted",
1594
- "ResourceDeletedNotRecorded"
1595
- ]
1596
- },
1597
- "ConfigurationRecorder":{
1598
- "type":"structure",
1599
- "members":{
1600
- "name":{"shape":"RecorderName"},
1601
- "roleARN":{"shape":"String"},
1602
- "recordingGroup":{"shape":"RecordingGroup"}
1603
- }
1604
- },
1605
- "ConfigurationRecorderList":{
1606
- "type":"list",
1607
- "member":{"shape":"ConfigurationRecorder"}
1608
- },
1609
- "ConfigurationRecorderNameList":{
1610
- "type":"list",
1611
- "member":{"shape":"RecorderName"}
1612
- },
1613
- "ConfigurationRecorderStatus":{
1614
- "type":"structure",
1615
- "members":{
1616
- "name":{"shape":"String"},
1617
- "lastStartTime":{"shape":"Date"},
1618
- "lastStopTime":{"shape":"Date"},
1619
- "recording":{"shape":"Boolean"},
1620
- "lastStatus":{"shape":"RecorderStatus"},
1621
- "lastErrorCode":{"shape":"String"},
1622
- "lastErrorMessage":{"shape":"String"},
1623
- "lastStatusChangeTime":{"shape":"Date"}
1624
- }
1625
- },
1626
- "ConfigurationRecorderStatusList":{
1627
- "type":"list",
1628
- "member":{"shape":"ConfigurationRecorderStatus"}
1629
- },
1630
- "ConfigurationStateId":{"type":"string"},
1631
- "ConformancePackArn":{
1632
- "type":"string",
1633
- "max":2048,
1634
- "min":1
1635
- },
1636
- "ConformancePackComplianceFilters":{
1637
- "type":"structure",
1638
- "members":{
1639
- "ConfigRuleNames":{"shape":"ConformancePackConfigRuleNames"},
1640
- "ComplianceType":{"shape":"ConformancePackComplianceType"}
1641
- }
1642
- },
1643
- "ConformancePackComplianceResourceIds":{
1644
- "type":"list",
1645
- "member":{"shape":"StringWithCharLimit256"},
1646
- "max":5,
1647
- "min":0
1648
- },
1649
- "ConformancePackComplianceSummary":{
1650
- "type":"structure",
1651
- "required":[
1652
- "ConformancePackName",
1653
- "ConformancePackComplianceStatus"
1654
- ],
1655
- "members":{
1656
- "ConformancePackName":{"shape":"ConformancePackName"},
1657
- "ConformancePackComplianceStatus":{"shape":"ConformancePackComplianceType"}
1658
- }
1659
- },
1660
- "ConformancePackComplianceSummaryList":{
1661
- "type":"list",
1662
- "member":{"shape":"ConformancePackComplianceSummary"},
1663
- "max":5,
1664
- "min":1
1665
- },
1666
- "ConformancePackComplianceType":{
1667
- "type":"string",
1668
- "enum":[
1669
- "COMPLIANT",
1670
- "NON_COMPLIANT"
1671
- ]
1672
- },
1673
- "ConformancePackConfigRuleNames":{
1674
- "type":"list",
1675
- "member":{"shape":"StringWithCharLimit64"},
1676
- "max":10,
1677
- "min":0
1678
- },
1679
- "ConformancePackDetail":{
1680
- "type":"structure",
1681
- "required":[
1682
- "ConformancePackName",
1683
- "ConformancePackArn",
1684
- "ConformancePackId"
1685
- ],
1686
- "members":{
1687
- "ConformancePackName":{"shape":"ConformancePackName"},
1688
- "ConformancePackArn":{"shape":"ConformancePackArn"},
1689
- "ConformancePackId":{"shape":"ConformancePackId"},
1690
- "DeliveryS3Bucket":{"shape":"DeliveryS3Bucket"},
1691
- "DeliveryS3KeyPrefix":{"shape":"DeliveryS3KeyPrefix"},
1692
- "ConformancePackInputParameters":{"shape":"ConformancePackInputParameters"},
1693
- "LastUpdateRequestedTime":{"shape":"Date"},
1694
- "CreatedBy":{"shape":"StringWithCharLimit256"}
1695
- }
1696
- },
1697
- "ConformancePackDetailList":{
1698
- "type":"list",
1699
- "member":{"shape":"ConformancePackDetail"},
1700
- "max":25,
1701
- "min":0
1702
- },
1703
- "ConformancePackEvaluationFilters":{
1704
- "type":"structure",
1705
- "members":{
1706
- "ConfigRuleNames":{"shape":"ConformancePackConfigRuleNames"},
1707
- "ComplianceType":{"shape":"ConformancePackComplianceType"},
1708
- "ResourceType":{"shape":"StringWithCharLimit256"},
1709
- "ResourceIds":{"shape":"ConformancePackComplianceResourceIds"}
1710
- }
1711
- },
1712
- "ConformancePackEvaluationResult":{
1713
- "type":"structure",
1714
- "required":[
1715
- "ComplianceType",
1716
- "EvaluationResultIdentifier",
1717
- "ConfigRuleInvokedTime",
1718
- "ResultRecordedTime"
1719
- ],
1720
- "members":{
1721
- "ComplianceType":{"shape":"ConformancePackComplianceType"},
1722
- "EvaluationResultIdentifier":{"shape":"EvaluationResultIdentifier"},
1723
- "ConfigRuleInvokedTime":{"shape":"Date"},
1724
- "ResultRecordedTime":{"shape":"Date"},
1725
- "Annotation":{"shape":"Annotation"}
1726
- }
1727
- },
1728
- "ConformancePackId":{
1729
- "type":"string",
1730
- "max":1024,
1731
- "min":1
1732
- },
1733
- "ConformancePackInputParameter":{
1734
- "type":"structure",
1735
- "required":[
1736
- "ParameterName",
1737
- "ParameterValue"
1738
- ],
1739
- "members":{
1740
- "ParameterName":{"shape":"ParameterName"},
1741
- "ParameterValue":{"shape":"ParameterValue"}
1742
- }
1743
- },
1744
- "ConformancePackInputParameters":{
1745
- "type":"list",
1746
- "member":{"shape":"ConformancePackInputParameter"},
1747
- "max":60,
1748
- "min":0
1749
- },
1750
- "ConformancePackName":{
1751
- "type":"string",
1752
- "max":256,
1753
- "min":1,
1754
- "pattern":"[a-zA-Z][-a-zA-Z0-9]*"
1755
- },
1756
- "ConformancePackNamesList":{
1757
- "type":"list",
1758
- "member":{"shape":"ConformancePackName"},
1759
- "max":25,
1760
- "min":0
1761
- },
1762
- "ConformancePackNamesToSummarizeList":{
1763
- "type":"list",
1764
- "member":{"shape":"ConformancePackName"},
1765
- "max":5,
1766
- "min":1
1767
- },
1768
- "ConformancePackRuleCompliance":{
1769
- "type":"structure",
1770
- "members":{
1771
- "ConfigRuleName":{"shape":"ConfigRuleName"},
1772
- "ComplianceType":{"shape":"ConformancePackComplianceType"}
1773
- }
1774
- },
1775
- "ConformancePackRuleComplianceList":{
1776
- "type":"list",
1777
- "member":{"shape":"ConformancePackRuleCompliance"},
1778
- "max":1000,
1779
- "min":0
1780
- },
1781
- "ConformancePackRuleEvaluationResultsList":{
1782
- "type":"list",
1783
- "member":{"shape":"ConformancePackEvaluationResult"},
1784
- "max":100,
1785
- "min":0
1786
- },
1787
- "ConformancePackState":{
1788
- "type":"string",
1789
- "enum":[
1790
- "CREATE_IN_PROGRESS",
1791
- "CREATE_COMPLETE",
1792
- "CREATE_FAILED",
1793
- "DELETE_IN_PROGRESS",
1794
- "DELETE_FAILED"
1795
- ]
1796
- },
1797
- "ConformancePackStatusDetail":{
1798
- "type":"structure",
1799
- "required":[
1800
- "ConformancePackName",
1801
- "ConformancePackId",
1802
- "ConformancePackArn",
1803
- "ConformancePackState",
1804
- "StackArn",
1805
- "LastUpdateRequestedTime"
1806
- ],
1807
- "members":{
1808
- "ConformancePackName":{"shape":"ConformancePackName"},
1809
- "ConformancePackId":{"shape":"ConformancePackId"},
1810
- "ConformancePackArn":{"shape":"ConformancePackArn"},
1811
- "ConformancePackState":{"shape":"ConformancePackState"},
1812
- "StackArn":{"shape":"StackArn"},
1813
- "ConformancePackStatusReason":{"shape":"ConformancePackStatusReason"},
1814
- "LastUpdateRequestedTime":{"shape":"Date"},
1815
- "LastUpdateCompletedTime":{"shape":"Date"}
1816
- }
1817
- },
1818
- "ConformancePackStatusDetailsList":{
1819
- "type":"list",
1820
- "member":{"shape":"ConformancePackStatusDetail"},
1821
- "max":25,
1822
- "min":0
1823
- },
1824
- "ConformancePackStatusReason":{
1825
- "type":"string",
1826
- "max":2000,
1827
- "min":0
1828
- },
1829
- "ConformancePackTemplateValidationException":{
1830
- "type":"structure",
1831
- "members":{
1832
- },
1833
- "exception":true
1834
- },
1835
- "CosmosPageLimit":{
1836
- "type":"integer",
1837
- "max":100,
1838
- "min":0
1839
- },
1840
- "Date":{"type":"timestamp"},
1841
- "DeleteAggregationAuthorizationRequest":{
1842
- "type":"structure",
1843
- "required":[
1844
- "AuthorizedAccountId",
1845
- "AuthorizedAwsRegion"
1846
- ],
1847
- "members":{
1848
- "AuthorizedAccountId":{"shape":"AccountId"},
1849
- "AuthorizedAwsRegion":{"shape":"AwsRegion"}
1850
- }
1851
- },
1852
- "DeleteConfigRuleRequest":{
1853
- "type":"structure",
1854
- "required":["ConfigRuleName"],
1855
- "members":{
1856
- "ConfigRuleName":{"shape":"ConfigRuleName"}
1857
- }
1858
- },
1859
- "DeleteConfigurationAggregatorRequest":{
1860
- "type":"structure",
1861
- "required":["ConfigurationAggregatorName"],
1862
- "members":{
1863
- "ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"}
1864
- }
1865
- },
1866
- "DeleteConfigurationRecorderRequest":{
1867
- "type":"structure",
1868
- "required":["ConfigurationRecorderName"],
1869
- "members":{
1870
- "ConfigurationRecorderName":{"shape":"RecorderName"}
1871
- }
1872
- },
1873
- "DeleteConformancePackRequest":{
1874
- "type":"structure",
1875
- "required":["ConformancePackName"],
1876
- "members":{
1877
- "ConformancePackName":{"shape":"ConformancePackName"}
1878
- }
1879
- },
1880
- "DeleteDeliveryChannelRequest":{
1881
- "type":"structure",
1882
- "required":["DeliveryChannelName"],
1883
- "members":{
1884
- "DeliveryChannelName":{"shape":"ChannelName"}
1885
- }
1886
- },
1887
- "DeleteEvaluationResultsRequest":{
1888
- "type":"structure",
1889
- "required":["ConfigRuleName"],
1890
- "members":{
1891
- "ConfigRuleName":{"shape":"StringWithCharLimit64"}
1892
- }
1893
- },
1894
- "DeleteEvaluationResultsResponse":{
1895
- "type":"structure",
1896
- "members":{
1897
- }
1898
- },
1899
- "DeleteOrganizationConfigRuleRequest":{
1900
- "type":"structure",
1901
- "required":["OrganizationConfigRuleName"],
1902
- "members":{
1903
- "OrganizationConfigRuleName":{"shape":"OrganizationConfigRuleName"}
1904
- }
1905
- },
1906
- "DeleteOrganizationConformancePackRequest":{
1907
- "type":"structure",
1908
- "required":["OrganizationConformancePackName"],
1909
- "members":{
1910
- "OrganizationConformancePackName":{"shape":"OrganizationConformancePackName"}
1911
- }
1912
- },
1913
- "DeletePendingAggregationRequestRequest":{
1914
- "type":"structure",
1915
- "required":[
1916
- "RequesterAccountId",
1917
- "RequesterAwsRegion"
1918
- ],
1919
- "members":{
1920
- "RequesterAccountId":{"shape":"AccountId"},
1921
- "RequesterAwsRegion":{"shape":"AwsRegion"}
1922
- }
1923
- },
1924
- "DeleteRemediationConfigurationRequest":{
1925
- "type":"structure",
1926
- "required":["ConfigRuleName"],
1927
- "members":{
1928
- "ConfigRuleName":{"shape":"ConfigRuleName"},
1929
- "ResourceType":{"shape":"String"}
1930
- }
1931
- },
1932
- "DeleteRemediationConfigurationResponse":{
1933
- "type":"structure",
1934
- "members":{
1935
- }
1936
- },
1937
- "DeleteRemediationExceptionsRequest":{
1938
- "type":"structure",
1939
- "required":[
1940
- "ConfigRuleName",
1941
- "ResourceKeys"
1942
- ],
1943
- "members":{
1944
- "ConfigRuleName":{"shape":"ConfigRuleName"},
1945
- "ResourceKeys":{"shape":"RemediationExceptionResourceKeys"}
1946
- }
1947
- },
1948
- "DeleteRemediationExceptionsResponse":{
1949
- "type":"structure",
1950
- "members":{
1951
- "FailedBatches":{"shape":"FailedDeleteRemediationExceptionsBatches"}
1952
- }
1953
- },
1954
- "DeleteResourceConfigRequest":{
1955
- "type":"structure",
1956
- "required":[
1957
- "ResourceType",
1958
- "ResourceId"
1959
- ],
1960
- "members":{
1961
- "ResourceType":{"shape":"ResourceTypeString"},
1962
- "ResourceId":{"shape":"ResourceId"}
1963
- }
1964
- },
1965
- "DeleteRetentionConfigurationRequest":{
1966
- "type":"structure",
1967
- "required":["RetentionConfigurationName"],
1968
- "members":{
1969
- "RetentionConfigurationName":{"shape":"RetentionConfigurationName"}
1970
- }
1971
- },
1972
- "DeliverConfigSnapshotRequest":{
1973
- "type":"structure",
1974
- "required":["deliveryChannelName"],
1975
- "members":{
1976
- "deliveryChannelName":{"shape":"ChannelName"}
1977
- }
1978
- },
1979
- "DeliverConfigSnapshotResponse":{
1980
- "type":"structure",
1981
- "members":{
1982
- "configSnapshotId":{"shape":"String"}
1983
- }
1984
- },
1985
- "DeliveryChannel":{
1986
- "type":"structure",
1987
- "members":{
1988
- "name":{"shape":"ChannelName"},
1989
- "s3BucketName":{"shape":"String"},
1990
- "s3KeyPrefix":{"shape":"String"},
1991
- "snsTopicARN":{"shape":"String"},
1992
- "configSnapshotDeliveryProperties":{"shape":"ConfigSnapshotDeliveryProperties"}
1993
- }
1994
- },
1995
- "DeliveryChannelList":{
1996
- "type":"list",
1997
- "member":{"shape":"DeliveryChannel"}
1998
- },
1999
- "DeliveryChannelNameList":{
2000
- "type":"list",
2001
- "member":{"shape":"ChannelName"}
2002
- },
2003
- "DeliveryChannelStatus":{
2004
- "type":"structure",
2005
- "members":{
2006
- "name":{"shape":"String"},
2007
- "configSnapshotDeliveryInfo":{"shape":"ConfigExportDeliveryInfo"},
2008
- "configHistoryDeliveryInfo":{"shape":"ConfigExportDeliveryInfo"},
2009
- "configStreamDeliveryInfo":{"shape":"ConfigStreamDeliveryInfo"}
2010
- }
2011
- },
2012
- "DeliveryChannelStatusList":{
2013
- "type":"list",
2014
- "member":{"shape":"DeliveryChannelStatus"}
2015
- },
2016
- "DeliveryS3Bucket":{
2017
- "type":"string",
2018
- "max":63,
2019
- "min":0
2020
- },
2021
- "DeliveryS3KeyPrefix":{
2022
- "type":"string",
2023
- "max":1024,
2024
- "min":0
2025
- },
2026
- "DeliveryStatus":{
2027
- "type":"string",
2028
- "enum":[
2029
- "Success",
2030
- "Failure",
2031
- "Not_Applicable"
2032
- ]
2033
- },
2034
- "DescribeAggregateComplianceByConfigRulesRequest":{
2035
- "type":"structure",
2036
- "required":["ConfigurationAggregatorName"],
2037
- "members":{
2038
- "ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
2039
- "Filters":{"shape":"ConfigRuleComplianceFilters"},
2040
- "Limit":{"shape":"GroupByAPILimit"},
2041
- "NextToken":{"shape":"NextToken"}
2042
- }
2043
- },
2044
- "DescribeAggregateComplianceByConfigRulesResponse":{
2045
- "type":"structure",
2046
- "members":{
2047
- "AggregateComplianceByConfigRules":{"shape":"AggregateComplianceByConfigRuleList"},
2048
- "NextToken":{"shape":"NextToken"}
2049
- }
2050
- },
2051
- "DescribeAggregationAuthorizationsRequest":{
2052
- "type":"structure",
2053
- "members":{
2054
- "Limit":{"shape":"Limit"},
2055
- "NextToken":{"shape":"String"}
2056
- }
2057
- },
2058
- "DescribeAggregationAuthorizationsResponse":{
2059
- "type":"structure",
2060
- "members":{
2061
- "AggregationAuthorizations":{"shape":"AggregationAuthorizationList"},
2062
- "NextToken":{"shape":"String"}
2063
- }
2064
- },
2065
- "DescribeComplianceByConfigRuleRequest":{
2066
- "type":"structure",
2067
- "members":{
2068
- "ConfigRuleNames":{"shape":"ConfigRuleNames"},
2069
- "ComplianceTypes":{"shape":"ComplianceTypes"},
2070
- "NextToken":{"shape":"String"}
2071
- }
2072
- },
2073
- "DescribeComplianceByConfigRuleResponse":{
2074
- "type":"structure",
2075
- "members":{
2076
- "ComplianceByConfigRules":{"shape":"ComplianceByConfigRules"},
2077
- "NextToken":{"shape":"String"}
2078
- }
2079
- },
2080
- "DescribeComplianceByResourceRequest":{
2081
- "type":"structure",
2082
- "members":{
2083
- "ResourceType":{"shape":"StringWithCharLimit256"},
2084
- "ResourceId":{"shape":"BaseResourceId"},
2085
- "ComplianceTypes":{"shape":"ComplianceTypes"},
2086
- "Limit":{"shape":"Limit"},
2087
- "NextToken":{"shape":"NextToken"}
2088
- }
2089
- },
2090
- "DescribeComplianceByResourceResponse":{
2091
- "type":"structure",
2092
- "members":{
2093
- "ComplianceByResources":{"shape":"ComplianceByResources"},
2094
- "NextToken":{"shape":"NextToken"}
2095
- }
2096
- },
2097
- "DescribeConfigRuleEvaluationStatusRequest":{
2098
- "type":"structure",
2099
- "members":{
2100
- "ConfigRuleNames":{"shape":"ConfigRuleNames"},
2101
- "NextToken":{"shape":"String"},
2102
- "Limit":{"shape":"RuleLimit"}
2103
- }
2104
- },
2105
- "DescribeConfigRuleEvaluationStatusResponse":{
2106
- "type":"structure",
2107
- "members":{
2108
- "ConfigRulesEvaluationStatus":{"shape":"ConfigRuleEvaluationStatusList"},
2109
- "NextToken":{"shape":"String"}
2110
- }
2111
- },
2112
- "DescribeConfigRulesRequest":{
2113
- "type":"structure",
2114
- "members":{
2115
- "ConfigRuleNames":{"shape":"ConfigRuleNames"},
2116
- "NextToken":{"shape":"String"}
2117
- }
2118
- },
2119
- "DescribeConfigRulesResponse":{
2120
- "type":"structure",
2121
- "members":{
2122
- "ConfigRules":{"shape":"ConfigRules"},
2123
- "NextToken":{"shape":"String"}
2124
- }
2125
- },
2126
- "DescribeConfigurationAggregatorSourcesStatusRequest":{
2127
- "type":"structure",
2128
- "required":["ConfigurationAggregatorName"],
2129
- "members":{
2130
- "ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
2131
- "UpdateStatus":{"shape":"AggregatedSourceStatusTypeList"},
2132
- "NextToken":{"shape":"String"},
2133
- "Limit":{"shape":"Limit"}
2134
- }
2135
- },
2136
- "DescribeConfigurationAggregatorSourcesStatusResponse":{
2137
- "type":"structure",
2138
- "members":{
2139
- "AggregatedSourceStatusList":{"shape":"AggregatedSourceStatusList"},
2140
- "NextToken":{"shape":"String"}
2141
- }
2142
- },
2143
- "DescribeConfigurationAggregatorsRequest":{
2144
- "type":"structure",
2145
- "members":{
2146
- "ConfigurationAggregatorNames":{"shape":"ConfigurationAggregatorNameList"},
2147
- "NextToken":{"shape":"String"},
2148
- "Limit":{"shape":"Limit"}
2149
- }
2150
- },
2151
- "DescribeConfigurationAggregatorsResponse":{
2152
- "type":"structure",
2153
- "members":{
2154
- "ConfigurationAggregators":{"shape":"ConfigurationAggregatorList"},
2155
- "NextToken":{"shape":"String"}
2156
- }
2157
- },
2158
- "DescribeConfigurationRecorderStatusRequest":{
2159
- "type":"structure",
2160
- "members":{
2161
- "ConfigurationRecorderNames":{"shape":"ConfigurationRecorderNameList"}
2162
- }
2163
- },
2164
- "DescribeConfigurationRecorderStatusResponse":{
2165
- "type":"structure",
2166
- "members":{
2167
- "ConfigurationRecordersStatus":{"shape":"ConfigurationRecorderStatusList"}
2168
- }
2169
- },
2170
- "DescribeConfigurationRecordersRequest":{
2171
- "type":"structure",
2172
- "members":{
2173
- "ConfigurationRecorderNames":{"shape":"ConfigurationRecorderNameList"}
2174
- }
2175
- },
2176
- "DescribeConfigurationRecordersResponse":{
2177
- "type":"structure",
2178
- "members":{
2179
- "ConfigurationRecorders":{"shape":"ConfigurationRecorderList"}
2180
- }
2181
- },
2182
- "DescribeConformancePackComplianceLimit":{
2183
- "type":"integer",
2184
- "max":1000,
2185
- "min":0
2186
- },
2187
- "DescribeConformancePackComplianceRequest":{
2188
- "type":"structure",
2189
- "required":["ConformancePackName"],
2190
- "members":{
2191
- "ConformancePackName":{"shape":"ConformancePackName"},
2192
- "Filters":{"shape":"ConformancePackComplianceFilters"},
2193
- "Limit":{"shape":"DescribeConformancePackComplianceLimit"},
2194
- "NextToken":{"shape":"NextToken"}
2195
- }
2196
- },
2197
- "DescribeConformancePackComplianceResponse":{
2198
- "type":"structure",
2199
- "required":[
2200
- "ConformancePackName",
2201
- "ConformancePackRuleComplianceList"
2202
- ],
2203
- "members":{
2204
- "ConformancePackName":{"shape":"ConformancePackName"},
2205
- "ConformancePackRuleComplianceList":{"shape":"ConformancePackRuleComplianceList"},
2206
- "NextToken":{"shape":"NextToken"}
2207
- }
2208
- },
2209
- "DescribeConformancePackStatusRequest":{
2210
- "type":"structure",
2211
- "members":{
2212
- "ConformancePackNames":{"shape":"ConformancePackNamesList"},
2213
- "Limit":{"shape":"PageSizeLimit"},
2214
- "NextToken":{"shape":"NextToken"}
2215
- }
2216
- },
2217
- "DescribeConformancePackStatusResponse":{
2218
- "type":"structure",
2219
- "members":{
2220
- "ConformancePackStatusDetails":{"shape":"ConformancePackStatusDetailsList"},
2221
- "NextToken":{"shape":"NextToken"}
2222
- }
2223
- },
2224
- "DescribeConformancePacksRequest":{
2225
- "type":"structure",
2226
- "members":{
2227
- "ConformancePackNames":{"shape":"ConformancePackNamesList"},
2228
- "Limit":{"shape":"PageSizeLimit"},
2229
- "NextToken":{"shape":"NextToken"}
2230
- }
2231
- },
2232
- "DescribeConformancePacksResponse":{
2233
- "type":"structure",
2234
- "members":{
2235
- "ConformancePackDetails":{"shape":"ConformancePackDetailList"},
2236
- "NextToken":{"shape":"NextToken"}
2237
- }
2238
- },
2239
- "DescribeDeliveryChannelStatusRequest":{
2240
- "type":"structure",
2241
- "members":{
2242
- "DeliveryChannelNames":{"shape":"DeliveryChannelNameList"}
2243
- }
2244
- },
2245
- "DescribeDeliveryChannelStatusResponse":{
2246
- "type":"structure",
2247
- "members":{
2248
- "DeliveryChannelsStatus":{"shape":"DeliveryChannelStatusList"}
2249
- }
2250
- },
2251
- "DescribeDeliveryChannelsRequest":{
2252
- "type":"structure",
2253
- "members":{
2254
- "DeliveryChannelNames":{"shape":"DeliveryChannelNameList"}
2255
- }
2256
- },
2257
- "DescribeDeliveryChannelsResponse":{
2258
- "type":"structure",
2259
- "members":{
2260
- "DeliveryChannels":{"shape":"DeliveryChannelList"}
2261
- }
2262
- },
2263
- "DescribeOrganizationConfigRuleStatusesRequest":{
2264
- "type":"structure",
2265
- "members":{
2266
- "OrganizationConfigRuleNames":{"shape":"OrganizationConfigRuleNames"},
2267
- "Limit":{"shape":"CosmosPageLimit"},
2268
- "NextToken":{"shape":"String"}
2269
- }
2270
- },
2271
- "DescribeOrganizationConfigRuleStatusesResponse":{
2272
- "type":"structure",
2273
- "members":{
2274
- "OrganizationConfigRuleStatuses":{"shape":"OrganizationConfigRuleStatuses"},
2275
- "NextToken":{"shape":"String"}
2276
- }
2277
- },
2278
- "DescribeOrganizationConfigRulesRequest":{
2279
- "type":"structure",
2280
- "members":{
2281
- "OrganizationConfigRuleNames":{"shape":"OrganizationConfigRuleNames"},
2282
- "Limit":{"shape":"CosmosPageLimit"},
2283
- "NextToken":{"shape":"String"}
2284
- }
2285
- },
2286
- "DescribeOrganizationConfigRulesResponse":{
2287
- "type":"structure",
2288
- "members":{
2289
- "OrganizationConfigRules":{"shape":"OrganizationConfigRules"},
2290
- "NextToken":{"shape":"String"}
2291
- }
2292
- },
2293
- "DescribeOrganizationConformancePackStatusesRequest":{
2294
- "type":"structure",
2295
- "members":{
2296
- "OrganizationConformancePackNames":{"shape":"OrganizationConformancePackNames"},
2297
- "Limit":{"shape":"CosmosPageLimit"},
2298
- "NextToken":{"shape":"String"}
2299
- }
2300
- },
2301
- "DescribeOrganizationConformancePackStatusesResponse":{
2302
- "type":"structure",
2303
- "members":{
2304
- "OrganizationConformancePackStatuses":{"shape":"OrganizationConformancePackStatuses"},
2305
- "NextToken":{"shape":"String"}
2306
- }
2307
- },
2308
- "DescribeOrganizationConformancePacksRequest":{
2309
- "type":"structure",
2310
- "members":{
2311
- "OrganizationConformancePackNames":{"shape":"OrganizationConformancePackNames"},
2312
- "Limit":{"shape":"CosmosPageLimit"},
2313
- "NextToken":{"shape":"String"}
2314
- }
2315
- },
2316
- "DescribeOrganizationConformancePacksResponse":{
2317
- "type":"structure",
2318
- "members":{
2319
- "OrganizationConformancePacks":{"shape":"OrganizationConformancePacks"},
2320
- "NextToken":{"shape":"String"}
2321
- }
2322
- },
2323
- "DescribePendingAggregationRequestsLimit":{
2324
- "type":"integer",
2325
- "max":20,
2326
- "min":0
2327
- },
2328
- "DescribePendingAggregationRequestsRequest":{
2329
- "type":"structure",
2330
- "members":{
2331
- "Limit":{"shape":"DescribePendingAggregationRequestsLimit"},
2332
- "NextToken":{"shape":"String"}
2333
- }
2334
- },
2335
- "DescribePendingAggregationRequestsResponse":{
2336
- "type":"structure",
2337
- "members":{
2338
- "PendingAggregationRequests":{"shape":"PendingAggregationRequestList"},
2339
- "NextToken":{"shape":"String"}
2340
- }
2341
- },
2342
- "DescribeRemediationConfigurationsRequest":{
2343
- "type":"structure",
2344
- "required":["ConfigRuleNames"],
2345
- "members":{
2346
- "ConfigRuleNames":{"shape":"ConfigRuleNames"}
2347
- }
2348
- },
2349
- "DescribeRemediationConfigurationsResponse":{
2350
- "type":"structure",
2351
- "members":{
2352
- "RemediationConfigurations":{"shape":"RemediationConfigurations"}
2353
- }
2354
- },
2355
- "DescribeRemediationExceptionsRequest":{
2356
- "type":"structure",
2357
- "required":["ConfigRuleName"],
2358
- "members":{
2359
- "ConfigRuleName":{"shape":"ConfigRuleName"},
2360
- "ResourceKeys":{"shape":"RemediationExceptionResourceKeys"},
2361
- "Limit":{"shape":"Limit"},
2362
- "NextToken":{"shape":"String"}
2363
- }
2364
- },
2365
- "DescribeRemediationExceptionsResponse":{
2366
- "type":"structure",
2367
- "members":{
2368
- "RemediationExceptions":{"shape":"RemediationExceptions"},
2369
- "NextToken":{"shape":"String"}
2370
- }
2371
- },
2372
- "DescribeRemediationExecutionStatusRequest":{
2373
- "type":"structure",
2374
- "required":["ConfigRuleName"],
2375
- "members":{
2376
- "ConfigRuleName":{"shape":"ConfigRuleName"},
2377
- "ResourceKeys":{"shape":"ResourceKeys"},
2378
- "Limit":{"shape":"Limit"},
2379
- "NextToken":{"shape":"String"}
2380
- }
2381
- },
2382
- "DescribeRemediationExecutionStatusResponse":{
2383
- "type":"structure",
2384
- "members":{
2385
- "RemediationExecutionStatuses":{"shape":"RemediationExecutionStatuses"},
2386
- "NextToken":{"shape":"String"}
2387
- }
2388
- },
2389
- "DescribeRetentionConfigurationsRequest":{
2390
- "type":"structure",
2391
- "members":{
2392
- "RetentionConfigurationNames":{"shape":"RetentionConfigurationNameList"},
2393
- "NextToken":{"shape":"NextToken"}
2394
- }
2395
- },
2396
- "DescribeRetentionConfigurationsResponse":{
2397
- "type":"structure",
2398
- "members":{
2399
- "RetentionConfigurations":{"shape":"RetentionConfigurationList"},
2400
- "NextToken":{"shape":"NextToken"}
2401
- }
2402
- },
2403
- "DiscoveredResourceIdentifierList":{
2404
- "type":"list",
2405
- "member":{"shape":"AggregateResourceIdentifier"}
2406
- },
2407
- "EarlierTime":{"type":"timestamp"},
2408
- "EmptiableStringWithCharLimit256":{
2409
- "type":"string",
2410
- "max":256,
2411
- "min":0
2412
- },
2413
- "Evaluation":{
2414
- "type":"structure",
2415
- "required":[
2416
- "ComplianceResourceType",
2417
- "ComplianceResourceId",
2418
- "ComplianceType",
2419
- "OrderingTimestamp"
2420
- ],
2421
- "members":{
2422
- "ComplianceResourceType":{"shape":"StringWithCharLimit256"},
2423
- "ComplianceResourceId":{"shape":"BaseResourceId"},
2424
- "ComplianceType":{"shape":"ComplianceType"},
2425
- "Annotation":{"shape":"StringWithCharLimit256"},
2426
- "OrderingTimestamp":{"shape":"OrderingTimestamp"}
2427
- }
2428
- },
2429
- "EvaluationResult":{
2430
- "type":"structure",
2431
- "members":{
2432
- "EvaluationResultIdentifier":{"shape":"EvaluationResultIdentifier"},
2433
- "ComplianceType":{"shape":"ComplianceType"},
2434
- "ResultRecordedTime":{"shape":"Date"},
2435
- "ConfigRuleInvokedTime":{"shape":"Date"},
2436
- "Annotation":{"shape":"StringWithCharLimit256"},
2437
- "ResultToken":{"shape":"String"}
2438
- }
2439
- },
2440
- "EvaluationResultIdentifier":{
2441
- "type":"structure",
2442
- "members":{
2443
- "EvaluationResultQualifier":{"shape":"EvaluationResultQualifier"},
2444
- "OrderingTimestamp":{"shape":"Date"}
2445
- }
2446
- },
2447
- "EvaluationResultQualifier":{
2448
- "type":"structure",
2449
- "members":{
2450
- "ConfigRuleName":{"shape":"ConfigRuleName"},
2451
- "ResourceType":{"shape":"StringWithCharLimit256"},
2452
- "ResourceId":{"shape":"BaseResourceId"}
2453
- }
2454
- },
2455
- "EvaluationResults":{
2456
- "type":"list",
2457
- "member":{"shape":"EvaluationResult"}
2458
- },
2459
- "Evaluations":{
2460
- "type":"list",
2461
- "member":{"shape":"Evaluation"},
2462
- "max":100,
2463
- "min":0
2464
- },
2465
- "EventSource":{
2466
- "type":"string",
2467
- "enum":["aws.config"]
2468
- },
2469
- "ExcludedAccounts":{
2470
- "type":"list",
2471
- "member":{"shape":"AccountId"},
2472
- "max":1000,
2473
- "min":0
2474
- },
2475
- "ExecutionControls":{
2476
- "type":"structure",
2477
- "members":{
2478
- "SsmControls":{"shape":"SsmControls"}
2479
- }
2480
- },
2481
- "Expression":{
2482
- "type":"string",
2483
- "max":4096,
2484
- "min":1
2485
- },
2486
- "FailedDeleteRemediationExceptionsBatch":{
2487
- "type":"structure",
2488
- "members":{
2489
- "FailureMessage":{"shape":"String"},
2490
- "FailedItems":{"shape":"RemediationExceptionResourceKeys"}
2491
- }
2492
- },
2493
- "FailedDeleteRemediationExceptionsBatches":{
2494
- "type":"list",
2495
- "member":{"shape":"FailedDeleteRemediationExceptionsBatch"}
2496
- },
2497
- "FailedRemediationBatch":{
2498
- "type":"structure",
2499
- "members":{
2500
- "FailureMessage":{"shape":"String"},
2501
- "FailedItems":{"shape":"RemediationConfigurations"}
2502
- }
2503
- },
2504
- "FailedRemediationBatches":{
2505
- "type":"list",
2506
- "member":{"shape":"FailedRemediationBatch"}
2507
- },
2508
- "FailedRemediationExceptionBatch":{
2509
- "type":"structure",
2510
- "members":{
2511
- "FailureMessage":{"shape":"String"},
2512
- "FailedItems":{"shape":"RemediationExceptions"}
2513
- }
2514
- },
2515
- "FailedRemediationExceptionBatches":{
2516
- "type":"list",
2517
- "member":{"shape":"FailedRemediationExceptionBatch"}
2518
- },
2519
- "FieldInfo":{
2520
- "type":"structure",
2521
- "members":{
2522
- "Name":{"shape":"FieldName"}
2523
- }
2524
- },
2525
- "FieldInfoList":{
2526
- "type":"list",
2527
- "member":{"shape":"FieldInfo"}
2528
- },
2529
- "FieldName":{"type":"string"},
2530
- "GetAggregateComplianceDetailsByConfigRuleRequest":{
2531
- "type":"structure",
2532
- "required":[
2533
- "ConfigurationAggregatorName",
2534
- "ConfigRuleName",
2535
- "AccountId",
2536
- "AwsRegion"
2537
- ],
2538
- "members":{
2539
- "ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
2540
- "ConfigRuleName":{"shape":"ConfigRuleName"},
2541
- "AccountId":{"shape":"AccountId"},
2542
- "AwsRegion":{"shape":"AwsRegion"},
2543
- "ComplianceType":{"shape":"ComplianceType"},
2544
- "Limit":{"shape":"Limit"},
2545
- "NextToken":{"shape":"NextToken"}
2546
- }
2547
- },
2548
- "GetAggregateComplianceDetailsByConfigRuleResponse":{
2549
- "type":"structure",
2550
- "members":{
2551
- "AggregateEvaluationResults":{"shape":"AggregateEvaluationResultList"},
2552
- "NextToken":{"shape":"NextToken"}
2553
- }
2554
- },
2555
- "GetAggregateConfigRuleComplianceSummaryRequest":{
2556
- "type":"structure",
2557
- "required":["ConfigurationAggregatorName"],
2558
- "members":{
2559
- "ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
2560
- "Filters":{"shape":"ConfigRuleComplianceSummaryFilters"},
2561
- "GroupByKey":{"shape":"ConfigRuleComplianceSummaryGroupKey"},
2562
- "Limit":{"shape":"GroupByAPILimit"},
2563
- "NextToken":{"shape":"NextToken"}
2564
- }
2565
- },
2566
- "GetAggregateConfigRuleComplianceSummaryResponse":{
2567
- "type":"structure",
2568
- "members":{
2569
- "GroupByKey":{"shape":"StringWithCharLimit256"},
2570
- "AggregateComplianceCounts":{"shape":"AggregateComplianceCountList"},
2571
- "NextToken":{"shape":"NextToken"}
2572
- }
2573
- },
2574
- "GetAggregateDiscoveredResourceCountsRequest":{
2575
- "type":"structure",
2576
- "required":["ConfigurationAggregatorName"],
2577
- "members":{
2578
- "ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
2579
- "Filters":{"shape":"ResourceCountFilters"},
2580
- "GroupByKey":{"shape":"ResourceCountGroupKey"},
2581
- "Limit":{"shape":"GroupByAPILimit"},
2582
- "NextToken":{"shape":"NextToken"}
2583
- }
2584
- },
2585
- "GetAggregateDiscoveredResourceCountsResponse":{
2586
- "type":"structure",
2587
- "required":["TotalDiscoveredResources"],
2588
- "members":{
2589
- "TotalDiscoveredResources":{"shape":"Long"},
2590
- "GroupByKey":{"shape":"StringWithCharLimit256"},
2591
- "GroupedResourceCounts":{"shape":"GroupedResourceCountList"},
2592
- "NextToken":{"shape":"NextToken"}
2593
- }
2594
- },
2595
- "GetAggregateResourceConfigRequest":{
2596
- "type":"structure",
2597
- "required":[
2598
- "ConfigurationAggregatorName",
2599
- "ResourceIdentifier"
2600
- ],
2601
- "members":{
2602
- "ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
2603
- "ResourceIdentifier":{"shape":"AggregateResourceIdentifier"}
2604
- }
2605
- },
2606
- "GetAggregateResourceConfigResponse":{
2607
- "type":"structure",
2608
- "members":{
2609
- "ConfigurationItem":{"shape":"ConfigurationItem"}
2610
- }
2611
- },
2612
- "GetComplianceDetailsByConfigRuleRequest":{
2613
- "type":"structure",
2614
- "required":["ConfigRuleName"],
2615
- "members":{
2616
- "ConfigRuleName":{"shape":"StringWithCharLimit64"},
2617
- "ComplianceTypes":{"shape":"ComplianceTypes"},
2618
- "Limit":{"shape":"Limit"},
2619
- "NextToken":{"shape":"NextToken"}
2620
- }
2621
- },
2622
- "GetComplianceDetailsByConfigRuleResponse":{
2623
- "type":"structure",
2624
- "members":{
2625
- "EvaluationResults":{"shape":"EvaluationResults"},
2626
- "NextToken":{"shape":"NextToken"}
2627
- }
2628
- },
2629
- "GetComplianceDetailsByResourceRequest":{
2630
- "type":"structure",
2631
- "required":[
2632
- "ResourceType",
2633
- "ResourceId"
2634
- ],
2635
- "members":{
2636
- "ResourceType":{"shape":"StringWithCharLimit256"},
2637
- "ResourceId":{"shape":"BaseResourceId"},
2638
- "ComplianceTypes":{"shape":"ComplianceTypes"},
2639
- "NextToken":{"shape":"String"}
2640
- }
2641
- },
2642
- "GetComplianceDetailsByResourceResponse":{
2643
- "type":"structure",
2644
- "members":{
2645
- "EvaluationResults":{"shape":"EvaluationResults"},
2646
- "NextToken":{"shape":"String"}
2647
- }
2648
- },
2649
- "GetComplianceSummaryByConfigRuleResponse":{
2650
- "type":"structure",
2651
- "members":{
2652
- "ComplianceSummary":{"shape":"ComplianceSummary"}
2653
- }
2654
- },
2655
- "GetComplianceSummaryByResourceTypeRequest":{
2656
- "type":"structure",
2657
- "members":{
2658
- "ResourceTypes":{"shape":"ResourceTypes"}
2659
- }
2660
- },
2661
- "GetComplianceSummaryByResourceTypeResponse":{
2662
- "type":"structure",
2663
- "members":{
2664
- "ComplianceSummariesByResourceType":{"shape":"ComplianceSummariesByResourceType"}
2665
- }
2666
- },
2667
- "GetConformancePackComplianceDetailsLimit":{
2668
- "type":"integer",
2669
- "max":100,
2670
- "min":0
2671
- },
2672
- "GetConformancePackComplianceDetailsRequest":{
2673
- "type":"structure",
2674
- "required":["ConformancePackName"],
2675
- "members":{
2676
- "ConformancePackName":{"shape":"ConformancePackName"},
2677
- "Filters":{"shape":"ConformancePackEvaluationFilters"},
2678
- "Limit":{"shape":"GetConformancePackComplianceDetailsLimit"},
2679
- "NextToken":{"shape":"NextToken"}
2680
- }
2681
- },
2682
- "GetConformancePackComplianceDetailsResponse":{
2683
- "type":"structure",
2684
- "required":["ConformancePackName"],
2685
- "members":{
2686
- "ConformancePackName":{"shape":"ConformancePackName"},
2687
- "ConformancePackRuleEvaluationResults":{"shape":"ConformancePackRuleEvaluationResultsList"},
2688
- "NextToken":{"shape":"NextToken"}
2689
- }
2690
- },
2691
- "GetConformancePackComplianceSummaryRequest":{
2692
- "type":"structure",
2693
- "required":["ConformancePackNames"],
2694
- "members":{
2695
- "ConformancePackNames":{"shape":"ConformancePackNamesToSummarizeList"},
2696
- "Limit":{"shape":"PageSizeLimit"},
2697
- "NextToken":{"shape":"NextToken"}
2698
- }
2699
- },
2700
- "GetConformancePackComplianceSummaryResponse":{
2701
- "type":"structure",
2702
- "members":{
2703
- "ConformancePackComplianceSummaryList":{"shape":"ConformancePackComplianceSummaryList"},
2704
- "NextToken":{"shape":"NextToken"}
2705
- }
2706
- },
2707
- "GetDiscoveredResourceCountsRequest":{
2708
- "type":"structure",
2709
- "members":{
2710
- "resourceTypes":{"shape":"ResourceTypes"},
2711
- "limit":{"shape":"Limit"},
2712
- "nextToken":{"shape":"NextToken"}
2713
- }
2714
- },
2715
- "GetDiscoveredResourceCountsResponse":{
2716
- "type":"structure",
2717
- "members":{
2718
- "totalDiscoveredResources":{"shape":"Long"},
2719
- "resourceCounts":{"shape":"ResourceCounts"},
2720
- "nextToken":{"shape":"NextToken"}
2721
- }
2722
- },
2723
- "GetOrganizationConfigRuleDetailedStatusRequest":{
2724
- "type":"structure",
2725
- "required":["OrganizationConfigRuleName"],
2726
- "members":{
2727
- "OrganizationConfigRuleName":{"shape":"OrganizationConfigRuleName"},
2728
- "Filters":{"shape":"StatusDetailFilters"},
2729
- "Limit":{"shape":"CosmosPageLimit"},
2730
- "NextToken":{"shape":"String"}
2731
- }
2732
- },
2733
- "GetOrganizationConfigRuleDetailedStatusResponse":{
2734
- "type":"structure",
2735
- "members":{
2736
- "OrganizationConfigRuleDetailedStatus":{"shape":"OrganizationConfigRuleDetailedStatus"},
2737
- "NextToken":{"shape":"String"}
2738
- }
2739
- },
2740
- "GetOrganizationConformancePackDetailedStatusRequest":{
2741
- "type":"structure",
2742
- "required":["OrganizationConformancePackName"],
2743
- "members":{
2744
- "OrganizationConformancePackName":{"shape":"OrganizationConformancePackName"},
2745
- "Filters":{"shape":"OrganizationResourceDetailedStatusFilters"},
2746
- "Limit":{"shape":"CosmosPageLimit"},
2747
- "NextToken":{"shape":"String"}
2748
- }
2749
- },
2750
- "GetOrganizationConformancePackDetailedStatusResponse":{
2751
- "type":"structure",
2752
- "members":{
2753
- "OrganizationConformancePackDetailedStatuses":{"shape":"OrganizationConformancePackDetailedStatuses"},
2754
- "NextToken":{"shape":"String"}
2755
- }
2756
- },
2757
- "GetResourceConfigHistoryRequest":{
2758
- "type":"structure",
2759
- "required":[
2760
- "resourceType",
2761
- "resourceId"
2762
- ],
2763
- "members":{
2764
- "resourceType":{"shape":"ResourceType"},
2765
- "resourceId":{"shape":"ResourceId"},
2766
- "laterTime":{"shape":"LaterTime"},
2767
- "earlierTime":{"shape":"EarlierTime"},
2768
- "chronologicalOrder":{"shape":"ChronologicalOrder"},
2769
- "limit":{"shape":"Limit"},
2770
- "nextToken":{"shape":"NextToken"}
2771
- }
2772
- },
2773
- "GetResourceConfigHistoryResponse":{
2774
- "type":"structure",
2775
- "members":{
2776
- "configurationItems":{"shape":"ConfigurationItemList"},
2777
- "nextToken":{"shape":"NextToken"}
2778
- }
2779
- },
2780
- "GroupByAPILimit":{
2781
- "type":"integer",
2782
- "max":1000,
2783
- "min":0
2784
- },
2785
- "GroupedResourceCount":{
2786
- "type":"structure",
2787
- "required":[
2788
- "GroupName",
2789
- "ResourceCount"
2790
- ],
2791
- "members":{
2792
- "GroupName":{"shape":"StringWithCharLimit256"},
2793
- "ResourceCount":{"shape":"Long"}
2794
- }
2795
- },
2796
- "GroupedResourceCountList":{
2797
- "type":"list",
2798
- "member":{"shape":"GroupedResourceCount"}
2799
- },
2800
- "IncludeGlobalResourceTypes":{"type":"boolean"},
2801
- "InsufficientDeliveryPolicyException":{
2802
- "type":"structure",
2803
- "members":{
2804
- },
2805
- "exception":true
2806
- },
2807
- "InsufficientPermissionsException":{
2808
- "type":"structure",
2809
- "members":{
2810
- },
2811
- "exception":true
2812
- },
2813
- "Integer":{"type":"integer"},
2814
- "InvalidConfigurationRecorderNameException":{
2815
- "type":"structure",
2816
- "members":{
2817
- },
2818
- "exception":true
2819
- },
2820
- "InvalidDeliveryChannelNameException":{
2821
- "type":"structure",
2822
- "members":{
2823
- },
2824
- "exception":true
2825
- },
2826
- "InvalidExpressionException":{
2827
- "type":"structure",
2828
- "members":{
2829
- },
2830
- "exception":true
2831
- },
2832
- "InvalidLimitException":{
2833
- "type":"structure",
2834
- "members":{
2835
- },
2836
- "exception":true
2837
- },
2838
- "InvalidNextTokenException":{
2839
- "type":"structure",
2840
- "members":{
2841
- },
2842
- "exception":true
2843
- },
2844
- "InvalidParameterValueException":{
2845
- "type":"structure",
2846
- "members":{
2847
- },
2848
- "exception":true
2849
- },
2850
- "InvalidRecordingGroupException":{
2851
- "type":"structure",
2852
- "members":{
2853
- },
2854
- "exception":true
2855
- },
2856
- "InvalidResultTokenException":{
2857
- "type":"structure",
2858
- "members":{
2859
- },
2860
- "exception":true
2861
- },
2862
- "InvalidRoleException":{
2863
- "type":"structure",
2864
- "members":{
2865
- },
2866
- "exception":true
2867
- },
2868
- "InvalidS3KeyPrefixException":{
2869
- "type":"structure",
2870
- "members":{
2871
- },
2872
- "exception":true
2873
- },
2874
- "InvalidSNSTopicARNException":{
2875
- "type":"structure",
2876
- "members":{
2877
- },
2878
- "exception":true
2879
- },
2880
- "InvalidTimeRangeException":{
2881
- "type":"structure",
2882
- "members":{
2883
- },
2884
- "exception":true
2885
- },
2886
- "LastDeliveryChannelDeleteFailedException":{
2887
- "type":"structure",
2888
- "members":{
2889
- },
2890
- "exception":true
2891
- },
2892
- "LaterTime":{"type":"timestamp"},
2893
- "Limit":{
2894
- "type":"integer",
2895
- "max":100,
2896
- "min":0
2897
- },
2898
- "LimitExceededException":{
2899
- "type":"structure",
2900
- "members":{
2901
- },
2902
- "exception":true
2903
- },
2904
- "ListAggregateDiscoveredResourcesRequest":{
2905
- "type":"structure",
2906
- "required":[
2907
- "ConfigurationAggregatorName",
2908
- "ResourceType"
2909
- ],
2910
- "members":{
2911
- "ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
2912
- "ResourceType":{"shape":"ResourceType"},
2913
- "Filters":{"shape":"ResourceFilters"},
2914
- "Limit":{"shape":"Limit"},
2915
- "NextToken":{"shape":"NextToken"}
2916
- }
2917
- },
2918
- "ListAggregateDiscoveredResourcesResponse":{
2919
- "type":"structure",
2920
- "members":{
2921
- "ResourceIdentifiers":{"shape":"DiscoveredResourceIdentifierList"},
2922
- "NextToken":{"shape":"NextToken"}
2923
- }
2924
- },
2925
- "ListDiscoveredResourcesRequest":{
2926
- "type":"structure",
2927
- "required":["resourceType"],
2928
- "members":{
2929
- "resourceType":{"shape":"ResourceType"},
2930
- "resourceIds":{"shape":"ResourceIdList"},
2931
- "resourceName":{"shape":"ResourceName"},
2932
- "limit":{"shape":"Limit"},
2933
- "includeDeletedResources":{"shape":"Boolean"},
2934
- "nextToken":{"shape":"NextToken"}
2935
- }
2936
- },
2937
- "ListDiscoveredResourcesResponse":{
2938
- "type":"structure",
2939
- "members":{
2940
- "resourceIdentifiers":{"shape":"ResourceIdentifierList"},
2941
- "nextToken":{"shape":"NextToken"}
2942
- }
2943
- },
2944
- "ListTagsForResourceRequest":{
2945
- "type":"structure",
2946
- "required":["ResourceArn"],
2947
- "members":{
2948
- "ResourceArn":{"shape":"AmazonResourceName"},
2949
- "Limit":{"shape":"Limit"},
2950
- "NextToken":{"shape":"NextToken"}
2951
- }
2952
- },
2953
- "ListTagsForResourceResponse":{
2954
- "type":"structure",
2955
- "members":{
2956
- "Tags":{"shape":"TagList"},
2957
- "NextToken":{"shape":"NextToken"}
2958
- }
2959
- },
2960
- "Long":{"type":"long"},
2961
- "MaxActiveResourcesExceededException":{
2962
- "type":"structure",
2963
- "members":{
2964
- },
2965
- "exception":true
2966
- },
2967
- "MaxNumberOfConfigRulesExceededException":{
2968
- "type":"structure",
2969
- "members":{
2970
- },
2971
- "exception":true
2972
- },
2973
- "MaxNumberOfConfigurationRecordersExceededException":{
2974
- "type":"structure",
2975
- "members":{
2976
- },
2977
- "exception":true
2978
- },
2979
- "MaxNumberOfConformancePacksExceededException":{
2980
- "type":"structure",
2981
- "members":{
2982
- },
2983
- "exception":true
2984
- },
2985
- "MaxNumberOfDeliveryChannelsExceededException":{
2986
- "type":"structure",
2987
- "members":{
2988
- },
2989
- "exception":true
2990
- },
2991
- "MaxNumberOfOrganizationConfigRulesExceededException":{
2992
- "type":"structure",
2993
- "members":{
2994
- },
2995
- "exception":true
2996
- },
2997
- "MaxNumberOfOrganizationConformancePacksExceededException":{
2998
- "type":"structure",
2999
- "members":{
3000
- },
3001
- "exception":true
3002
- },
3003
- "MaxNumberOfRetentionConfigurationsExceededException":{
3004
- "type":"structure",
3005
- "members":{
3006
- },
3007
- "exception":true
3008
- },
3009
- "MaximumExecutionFrequency":{
3010
- "type":"string",
3011
- "enum":[
3012
- "One_Hour",
3013
- "Three_Hours",
3014
- "Six_Hours",
3015
- "Twelve_Hours",
3016
- "TwentyFour_Hours"
3017
- ]
3018
- },
3019
- "MemberAccountRuleStatus":{
3020
- "type":"string",
3021
- "enum":[
3022
- "CREATE_SUCCESSFUL",
3023
- "CREATE_IN_PROGRESS",
3024
- "CREATE_FAILED",
3025
- "DELETE_SUCCESSFUL",
3026
- "DELETE_FAILED",
3027
- "DELETE_IN_PROGRESS",
3028
- "UPDATE_SUCCESSFUL",
3029
- "UPDATE_IN_PROGRESS",
3030
- "UPDATE_FAILED"
3031
- ]
3032
- },
3033
- "MemberAccountStatus":{
3034
- "type":"structure",
3035
- "required":[
3036
- "AccountId",
3037
- "ConfigRuleName",
3038
- "MemberAccountRuleStatus"
3039
- ],
3040
- "members":{
3041
- "AccountId":{"shape":"AccountId"},
3042
- "ConfigRuleName":{"shape":"StringWithCharLimit64"},
3043
- "MemberAccountRuleStatus":{"shape":"MemberAccountRuleStatus"},
3044
- "ErrorCode":{"shape":"String"},
3045
- "ErrorMessage":{"shape":"String"},
3046
- "LastUpdateTime":{"shape":"Date"}
3047
- }
3048
- },
3049
- "MessageType":{
3050
- "type":"string",
3051
- "enum":[
3052
- "ConfigurationItemChangeNotification",
3053
- "ConfigurationSnapshotDeliveryCompleted",
3054
- "ScheduledNotification",
3055
- "OversizedConfigurationItemChangeNotification"
3056
- ]
3057
- },
3058
- "Name":{"type":"string"},
3059
- "NextToken":{"type":"string"},
3060
- "NoAvailableConfigurationRecorderException":{
3061
- "type":"structure",
3062
- "members":{
3063
- },
3064
- "exception":true
3065
- },
3066
- "NoAvailableDeliveryChannelException":{
3067
- "type":"structure",
3068
- "members":{
3069
- },
3070
- "exception":true
3071
- },
3072
- "NoAvailableOrganizationException":{
3073
- "type":"structure",
3074
- "members":{
3075
- },
3076
- "exception":true
3077
- },
3078
- "NoRunningConfigurationRecorderException":{
3079
- "type":"structure",
3080
- "members":{
3081
- },
3082
- "exception":true
3083
- },
3084
- "NoSuchBucketException":{
3085
- "type":"structure",
3086
- "members":{
3087
- },
3088
- "exception":true
3089
- },
3090
- "NoSuchConfigRuleException":{
3091
- "type":"structure",
3092
- "members":{
3093
- },
3094
- "exception":true
3095
- },
3096
- "NoSuchConfigRuleInConformancePackException":{
3097
- "type":"structure",
3098
- "members":{
3099
- },
3100
- "exception":true
3101
- },
3102
- "NoSuchConfigurationAggregatorException":{
3103
- "type":"structure",
3104
- "members":{
3105
- },
3106
- "exception":true
3107
- },
3108
- "NoSuchConfigurationRecorderException":{
3109
- "type":"structure",
3110
- "members":{
3111
- },
3112
- "exception":true
3113
- },
3114
- "NoSuchConformancePackException":{
3115
- "type":"structure",
3116
- "members":{
3117
- },
3118
- "exception":true
3119
- },
3120
- "NoSuchDeliveryChannelException":{
3121
- "type":"structure",
3122
- "members":{
3123
- },
3124
- "exception":true
3125
- },
3126
- "NoSuchOrganizationConfigRuleException":{
3127
- "type":"structure",
3128
- "members":{
3129
- },
3130
- "exception":true
3131
- },
3132
- "NoSuchOrganizationConformancePackException":{
3133
- "type":"structure",
3134
- "members":{
3135
- },
3136
- "exception":true
3137
- },
3138
- "NoSuchRemediationConfigurationException":{
3139
- "type":"structure",
3140
- "members":{
3141
- },
3142
- "exception":true
3143
- },
3144
- "NoSuchRemediationExceptionException":{
3145
- "type":"structure",
3146
- "members":{
3147
- },
3148
- "exception":true
3149
- },
3150
- "NoSuchRetentionConfigurationException":{
3151
- "type":"structure",
3152
- "members":{
3153
- },
3154
- "exception":true
3155
- },
3156
- "OrderingTimestamp":{"type":"timestamp"},
3157
- "OrganizationAccessDeniedException":{
3158
- "type":"structure",
3159
- "members":{
3160
- },
3161
- "exception":true
3162
- },
3163
- "OrganizationAggregationSource":{
3164
- "type":"structure",
3165
- "required":["RoleArn"],
3166
- "members":{
3167
- "RoleArn":{"shape":"String"},
3168
- "AwsRegions":{"shape":"AggregatorRegionList"},
3169
- "AllAwsRegions":{"shape":"Boolean"}
3170
- }
3171
- },
3172
- "OrganizationAllFeaturesNotEnabledException":{
3173
- "type":"structure",
3174
- "members":{
3175
- },
3176
- "exception":true
3177
- },
3178
- "OrganizationConfigRule":{
3179
- "type":"structure",
3180
- "required":[
3181
- "OrganizationConfigRuleName",
3182
- "OrganizationConfigRuleArn"
3183
- ],
3184
- "members":{
3185
- "OrganizationConfigRuleName":{"shape":"OrganizationConfigRuleName"},
3186
- "OrganizationConfigRuleArn":{"shape":"StringWithCharLimit256"},
3187
- "OrganizationManagedRuleMetadata":{"shape":"OrganizationManagedRuleMetadata"},
3188
- "OrganizationCustomRuleMetadata":{"shape":"OrganizationCustomRuleMetadata"},
3189
- "ExcludedAccounts":{"shape":"ExcludedAccounts"},
3190
- "LastUpdateTime":{"shape":"Date"}
3191
- }
3192
- },
3193
- "OrganizationConfigRuleDetailedStatus":{
3194
- "type":"list",
3195
- "member":{"shape":"MemberAccountStatus"}
3196
- },
3197
- "OrganizationConfigRuleName":{
3198
- "type":"string",
3199
- "max":64,
3200
- "min":1,
3201
- "pattern":".*\\S.*"
3202
- },
3203
- "OrganizationConfigRuleNames":{
3204
- "type":"list",
3205
- "member":{"shape":"StringWithCharLimit64"},
3206
- "max":25,
3207
- "min":0
3208
- },
3209
- "OrganizationConfigRuleStatus":{
3210
- "type":"structure",
3211
- "required":[
3212
- "OrganizationConfigRuleName",
3213
- "OrganizationRuleStatus"
3214
- ],
3215
- "members":{
3216
- "OrganizationConfigRuleName":{"shape":"OrganizationConfigRuleName"},
3217
- "OrganizationRuleStatus":{"shape":"OrganizationRuleStatus"},
3218
- "ErrorCode":{"shape":"String"},
3219
- "ErrorMessage":{"shape":"String"},
3220
- "LastUpdateTime":{"shape":"Date"}
3221
- }
3222
- },
3223
- "OrganizationConfigRuleStatuses":{
3224
- "type":"list",
3225
- "member":{"shape":"OrganizationConfigRuleStatus"}
3226
- },
3227
- "OrganizationConfigRuleTriggerType":{
3228
- "type":"string",
3229
- "enum":[
3230
- "ConfigurationItemChangeNotification",
3231
- "OversizedConfigurationItemChangeNotification",
3232
- "ScheduledNotification"
3233
- ]
3234
- },
3235
- "OrganizationConfigRuleTriggerTypes":{
3236
- "type":"list",
3237
- "member":{"shape":"OrganizationConfigRuleTriggerType"}
3238
- },
3239
- "OrganizationConfigRules":{
3240
- "type":"list",
3241
- "member":{"shape":"OrganizationConfigRule"}
3242
- },
3243
- "OrganizationConformancePack":{
3244
- "type":"structure",
3245
- "required":[
3246
- "OrganizationConformancePackName",
3247
- "OrganizationConformancePackArn",
3248
- "LastUpdateTime"
3249
- ],
3250
- "members":{
3251
- "OrganizationConformancePackName":{"shape":"OrganizationConformancePackName"},
3252
- "OrganizationConformancePackArn":{"shape":"StringWithCharLimit256"},
3253
- "DeliveryS3Bucket":{"shape":"DeliveryS3Bucket"},
3254
- "DeliveryS3KeyPrefix":{"shape":"DeliveryS3KeyPrefix"},
3255
- "ConformancePackInputParameters":{"shape":"ConformancePackInputParameters"},
3256
- "ExcludedAccounts":{"shape":"ExcludedAccounts"},
3257
- "LastUpdateTime":{"shape":"Date"}
3258
- }
3259
- },
3260
- "OrganizationConformancePackDetailedStatus":{
3261
- "type":"structure",
3262
- "required":[
3263
- "AccountId",
3264
- "ConformancePackName",
3265
- "Status"
3266
- ],
3267
- "members":{
3268
- "AccountId":{"shape":"AccountId"},
3269
- "ConformancePackName":{"shape":"StringWithCharLimit256"},
3270
- "Status":{"shape":"OrganizationResourceDetailedStatus"},
3271
- "ErrorCode":{"shape":"String"},
3272
- "ErrorMessage":{"shape":"String"},
3273
- "LastUpdateTime":{"shape":"Date"}
3274
- }
3275
- },
3276
- "OrganizationConformancePackDetailedStatuses":{
3277
- "type":"list",
3278
- "member":{"shape":"OrganizationConformancePackDetailedStatus"}
3279
- },
3280
- "OrganizationConformancePackName":{
3281
- "type":"string",
3282
- "max":128,
3283
- "min":1,
3284
- "pattern":"[a-zA-Z][-a-zA-Z0-9]*"
3285
- },
3286
- "OrganizationConformancePackNames":{
3287
- "type":"list",
3288
- "member":{"shape":"OrganizationConformancePackName"},
3289
- "max":25,
3290
- "min":0
3291
- },
3292
- "OrganizationConformancePackStatus":{
3293
- "type":"structure",
3294
- "required":[
3295
- "OrganizationConformancePackName",
3296
- "Status"
3297
- ],
3298
- "members":{
3299
- "OrganizationConformancePackName":{"shape":"OrganizationConformancePackName"},
3300
- "Status":{"shape":"OrganizationResourceStatus"},
3301
- "ErrorCode":{"shape":"String"},
3302
- "ErrorMessage":{"shape":"String"},
3303
- "LastUpdateTime":{"shape":"Date"}
3304
- }
3305
- },
3306
- "OrganizationConformancePackStatuses":{
3307
- "type":"list",
3308
- "member":{"shape":"OrganizationConformancePackStatus"}
3309
- },
3310
- "OrganizationConformancePackTemplateValidationException":{
3311
- "type":"structure",
3312
- "members":{
3313
- },
3314
- "exception":true
3315
- },
3316
- "OrganizationConformancePacks":{
3317
- "type":"list",
3318
- "member":{"shape":"OrganizationConformancePack"}
3319
- },
3320
- "OrganizationCustomRuleMetadata":{
3321
- "type":"structure",
3322
- "required":[
3323
- "LambdaFunctionArn",
3324
- "OrganizationConfigRuleTriggerTypes"
3325
- ],
3326
- "members":{
3327
- "Description":{"shape":"StringWithCharLimit256Min0"},
3328
- "LambdaFunctionArn":{"shape":"StringWithCharLimit256"},
3329
- "OrganizationConfigRuleTriggerTypes":{"shape":"OrganizationConfigRuleTriggerTypes"},
3330
- "InputParameters":{"shape":"StringWithCharLimit2048"},
3331
- "MaximumExecutionFrequency":{"shape":"MaximumExecutionFrequency"},
3332
- "ResourceTypesScope":{"shape":"ResourceTypesScope"},
3333
- "ResourceIdScope":{"shape":"StringWithCharLimit768"},
3334
- "TagKeyScope":{"shape":"StringWithCharLimit128"},
3335
- "TagValueScope":{"shape":"StringWithCharLimit256"}
3336
- }
3337
- },
3338
- "OrganizationManagedRuleMetadata":{
3339
- "type":"structure",
3340
- "required":["RuleIdentifier"],
3341
- "members":{
3342
- "Description":{"shape":"StringWithCharLimit256Min0"},
3343
- "RuleIdentifier":{"shape":"StringWithCharLimit256"},
3344
- "InputParameters":{"shape":"StringWithCharLimit2048"},
3345
- "MaximumExecutionFrequency":{"shape":"MaximumExecutionFrequency"},
3346
- "ResourceTypesScope":{"shape":"ResourceTypesScope"},
3347
- "ResourceIdScope":{"shape":"StringWithCharLimit768"},
3348
- "TagKeyScope":{"shape":"StringWithCharLimit128"},
3349
- "TagValueScope":{"shape":"StringWithCharLimit256"}
3350
- }
3351
- },
3352
- "OrganizationResourceDetailedStatus":{
3353
- "type":"string",
3354
- "enum":[
3355
- "CREATE_SUCCESSFUL",
3356
- "CREATE_IN_PROGRESS",
3357
- "CREATE_FAILED",
3358
- "DELETE_SUCCESSFUL",
3359
- "DELETE_FAILED",
3360
- "DELETE_IN_PROGRESS",
3361
- "UPDATE_SUCCESSFUL",
3362
- "UPDATE_IN_PROGRESS",
3363
- "UPDATE_FAILED"
3364
- ]
3365
- },
3366
- "OrganizationResourceDetailedStatusFilters":{
3367
- "type":"structure",
3368
- "members":{
3369
- "AccountId":{"shape":"AccountId"},
3370
- "Status":{"shape":"OrganizationResourceDetailedStatus"}
3371
- }
3372
- },
3373
- "OrganizationResourceStatus":{
3374
- "type":"string",
3375
- "enum":[
3376
- "CREATE_SUCCESSFUL",
3377
- "CREATE_IN_PROGRESS",
3378
- "CREATE_FAILED",
3379
- "DELETE_SUCCESSFUL",
3380
- "DELETE_FAILED",
3381
- "DELETE_IN_PROGRESS",
3382
- "UPDATE_SUCCESSFUL",
3383
- "UPDATE_IN_PROGRESS",
3384
- "UPDATE_FAILED"
3385
- ]
3386
- },
3387
- "OrganizationRuleStatus":{
3388
- "type":"string",
3389
- "enum":[
3390
- "CREATE_SUCCESSFUL",
3391
- "CREATE_IN_PROGRESS",
3392
- "CREATE_FAILED",
3393
- "DELETE_SUCCESSFUL",
3394
- "DELETE_FAILED",
3395
- "DELETE_IN_PROGRESS",
3396
- "UPDATE_SUCCESSFUL",
3397
- "UPDATE_IN_PROGRESS",
3398
- "UPDATE_FAILED"
3399
- ]
3400
- },
3401
- "OversizedConfigurationItemException":{
3402
- "type":"structure",
3403
- "members":{
3404
- },
3405
- "exception":true
3406
- },
3407
- "Owner":{
3408
- "type":"string",
3409
- "enum":[
3410
- "CUSTOM_LAMBDA",
3411
- "AWS"
3412
- ]
3413
- },
3414
- "PageSizeLimit":{
3415
- "type":"integer",
3416
- "max":20,
3417
- "min":0
3418
- },
3419
- "ParameterName":{
3420
- "type":"string",
3421
- "max":255,
3422
- "min":0
3423
- },
3424
- "ParameterValue":{
3425
- "type":"string",
3426
- "max":4096,
3427
- "min":0
3428
- },
3429
- "PendingAggregationRequest":{
3430
- "type":"structure",
3431
- "members":{
3432
- "RequesterAccountId":{"shape":"AccountId"},
3433
- "RequesterAwsRegion":{"shape":"AwsRegion"}
3434
- }
3435
- },
3436
- "PendingAggregationRequestList":{
3437
- "type":"list",
3438
- "member":{"shape":"PendingAggregationRequest"}
3439
- },
3440
- "Percentage":{
3441
- "type":"integer",
3442
- "box":true,
3443
- "max":100,
3444
- "min":1
3445
- },
3446
- "PutAggregationAuthorizationRequest":{
3447
- "type":"structure",
3448
- "required":[
3449
- "AuthorizedAccountId",
3450
- "AuthorizedAwsRegion"
3451
- ],
3452
- "members":{
3453
- "AuthorizedAccountId":{"shape":"AccountId"},
3454
- "AuthorizedAwsRegion":{"shape":"AwsRegion"},
3455
- "Tags":{"shape":"TagsList"}
3456
- }
3457
- },
3458
- "PutAggregationAuthorizationResponse":{
3459
- "type":"structure",
3460
- "members":{
3461
- "AggregationAuthorization":{"shape":"AggregationAuthorization"}
3462
- }
3463
- },
3464
- "PutConfigRuleRequest":{
3465
- "type":"structure",
3466
- "required":["ConfigRule"],
3467
- "members":{
3468
- "ConfigRule":{"shape":"ConfigRule"},
3469
- "Tags":{"shape":"TagsList"}
3470
- }
3471
- },
3472
- "PutConfigurationAggregatorRequest":{
3473
- "type":"structure",
3474
- "required":["ConfigurationAggregatorName"],
3475
- "members":{
3476
- "ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
3477
- "AccountAggregationSources":{"shape":"AccountAggregationSourceList"},
3478
- "OrganizationAggregationSource":{"shape":"OrganizationAggregationSource"},
3479
- "Tags":{"shape":"TagsList"}
3480
- }
3481
- },
3482
- "PutConfigurationAggregatorResponse":{
3483
- "type":"structure",
3484
- "members":{
3485
- "ConfigurationAggregator":{"shape":"ConfigurationAggregator"}
3486
- }
3487
- },
3488
- "PutConfigurationRecorderRequest":{
3489
- "type":"structure",
3490
- "required":["ConfigurationRecorder"],
3491
- "members":{
3492
- "ConfigurationRecorder":{"shape":"ConfigurationRecorder"}
3493
- }
3494
- },
3495
- "PutConformancePackRequest":{
3496
- "type":"structure",
3497
- "required":["ConformancePackName"],
3498
- "members":{
3499
- "ConformancePackName":{"shape":"ConformancePackName"},
3500
- "TemplateS3Uri":{"shape":"TemplateS3Uri"},
3501
- "TemplateBody":{"shape":"TemplateBody"},
3502
- "DeliveryS3Bucket":{"shape":"DeliveryS3Bucket"},
3503
- "DeliveryS3KeyPrefix":{"shape":"DeliveryS3KeyPrefix"},
3504
- "ConformancePackInputParameters":{"shape":"ConformancePackInputParameters"}
3505
- }
3506
- },
3507
- "PutConformancePackResponse":{
3508
- "type":"structure",
3509
- "members":{
3510
- "ConformancePackArn":{"shape":"ConformancePackArn"}
3511
- }
3512
- },
3513
- "PutDeliveryChannelRequest":{
3514
- "type":"structure",
3515
- "required":["DeliveryChannel"],
3516
- "members":{
3517
- "DeliveryChannel":{"shape":"DeliveryChannel"}
3518
- }
3519
- },
3520
- "PutEvaluationsRequest":{
3521
- "type":"structure",
3522
- "required":["ResultToken"],
3523
- "members":{
3524
- "Evaluations":{"shape":"Evaluations"},
3525
- "ResultToken":{"shape":"String"},
3526
- "TestMode":{"shape":"Boolean"}
3527
- }
3528
- },
3529
- "PutEvaluationsResponse":{
3530
- "type":"structure",
3531
- "members":{
3532
- "FailedEvaluations":{"shape":"Evaluations"}
3533
- }
3534
- },
3535
- "PutOrganizationConfigRuleRequest":{
3536
- "type":"structure",
3537
- "required":["OrganizationConfigRuleName"],
3538
- "members":{
3539
- "OrganizationConfigRuleName":{"shape":"OrganizationConfigRuleName"},
3540
- "OrganizationManagedRuleMetadata":{"shape":"OrganizationManagedRuleMetadata"},
3541
- "OrganizationCustomRuleMetadata":{"shape":"OrganizationCustomRuleMetadata"},
3542
- "ExcludedAccounts":{"shape":"ExcludedAccounts"}
3543
- }
3544
- },
3545
- "PutOrganizationConfigRuleResponse":{
3546
- "type":"structure",
3547
- "members":{
3548
- "OrganizationConfigRuleArn":{"shape":"StringWithCharLimit256"}
3549
- }
3550
- },
3551
- "PutOrganizationConformancePackRequest":{
3552
- "type":"structure",
3553
- "required":["OrganizationConformancePackName"],
3554
- "members":{
3555
- "OrganizationConformancePackName":{"shape":"OrganizationConformancePackName"},
3556
- "TemplateS3Uri":{"shape":"TemplateS3Uri"},
3557
- "TemplateBody":{"shape":"TemplateBody"},
3558
- "DeliveryS3Bucket":{"shape":"DeliveryS3Bucket"},
3559
- "DeliveryS3KeyPrefix":{"shape":"DeliveryS3KeyPrefix"},
3560
- "ConformancePackInputParameters":{"shape":"ConformancePackInputParameters"},
3561
- "ExcludedAccounts":{"shape":"ExcludedAccounts"}
3562
- }
3563
- },
3564
- "PutOrganizationConformancePackResponse":{
3565
- "type":"structure",
3566
- "members":{
3567
- "OrganizationConformancePackArn":{"shape":"StringWithCharLimit256"}
3568
- }
3569
- },
3570
- "PutRemediationConfigurationsRequest":{
3571
- "type":"structure",
3572
- "required":["RemediationConfigurations"],
3573
- "members":{
3574
- "RemediationConfigurations":{"shape":"RemediationConfigurations"}
3575
- }
3576
- },
3577
- "PutRemediationConfigurationsResponse":{
3578
- "type":"structure",
3579
- "members":{
3580
- "FailedBatches":{"shape":"FailedRemediationBatches"}
3581
- }
3582
- },
3583
- "PutRemediationExceptionsRequest":{
3584
- "type":"structure",
3585
- "required":[
3586
- "ConfigRuleName",
3587
- "ResourceKeys"
3588
- ],
3589
- "members":{
3590
- "ConfigRuleName":{"shape":"ConfigRuleName"},
3591
- "ResourceKeys":{"shape":"RemediationExceptionResourceKeys"},
3592
- "Message":{"shape":"StringWithCharLimit1024"},
3593
- "ExpirationTime":{"shape":"Date"}
3594
- }
3595
- },
3596
- "PutRemediationExceptionsResponse":{
3597
- "type":"structure",
3598
- "members":{
3599
- "FailedBatches":{"shape":"FailedRemediationExceptionBatches"}
3600
- }
3601
- },
3602
- "PutResourceConfigRequest":{
3603
- "type":"structure",
3604
- "required":[
3605
- "ResourceType",
3606
- "SchemaVersionId",
3607
- "ResourceId",
3608
- "Configuration"
3609
- ],
3610
- "members":{
3611
- "ResourceType":{"shape":"ResourceTypeString"},
3612
- "SchemaVersionId":{"shape":"SchemaVersionId"},
3613
- "ResourceId":{"shape":"ResourceId"},
3614
- "ResourceName":{"shape":"ResourceName"},
3615
- "Configuration":{"shape":"Configuration"},
3616
- "Tags":{"shape":"Tags"}
3617
- }
3618
- },
3619
- "PutRetentionConfigurationRequest":{
3620
- "type":"structure",
3621
- "required":["RetentionPeriodInDays"],
3622
- "members":{
3623
- "RetentionPeriodInDays":{"shape":"RetentionPeriodInDays"}
3624
- }
3625
- },
3626
- "PutRetentionConfigurationResponse":{
3627
- "type":"structure",
3628
- "members":{
3629
- "RetentionConfiguration":{"shape":"RetentionConfiguration"}
3630
- }
3631
- },
3632
- "QueryInfo":{
3633
- "type":"structure",
3634
- "members":{
3635
- "SelectFields":{"shape":"FieldInfoList"}
3636
- }
3637
- },
3638
- "RecorderName":{
3639
- "type":"string",
3640
- "max":256,
3641
- "min":1
3642
- },
3643
- "RecorderStatus":{
3644
- "type":"string",
3645
- "enum":[
3646
- "Pending",
3647
- "Success",
3648
- "Failure"
3649
- ]
3650
- },
3651
- "RecordingGroup":{
3652
- "type":"structure",
3653
- "members":{
3654
- "allSupported":{"shape":"AllSupported"},
3655
- "includeGlobalResourceTypes":{"shape":"IncludeGlobalResourceTypes"},
3656
- "resourceTypes":{"shape":"ResourceTypeList"}
3657
- }
3658
- },
3659
- "ReevaluateConfigRuleNames":{
3660
- "type":"list",
3661
- "member":{"shape":"ConfigRuleName"},
3662
- "max":25,
3663
- "min":1
3664
- },
3665
- "RelatedEvent":{"type":"string"},
3666
- "RelatedEventList":{
3667
- "type":"list",
3668
- "member":{"shape":"RelatedEvent"}
3669
- },
3670
- "Relationship":{
3671
- "type":"structure",
3672
- "members":{
3673
- "resourceType":{"shape":"ResourceType"},
3674
- "resourceId":{"shape":"ResourceId"},
3675
- "resourceName":{"shape":"ResourceName"},
3676
- "relationshipName":{"shape":"RelationshipName"}
3677
- }
3678
- },
3679
- "RelationshipList":{
3680
- "type":"list",
3681
- "member":{"shape":"Relationship"}
3682
- },
3683
- "RelationshipName":{"type":"string"},
3684
- "RemediationConfiguration":{
3685
- "type":"structure",
3686
- "required":[
3687
- "ConfigRuleName",
3688
- "TargetType",
3689
- "TargetId"
3690
- ],
3691
- "members":{
3692
- "ConfigRuleName":{"shape":"ConfigRuleName"},
3693
- "TargetType":{"shape":"RemediationTargetType"},
3694
- "TargetId":{"shape":"StringWithCharLimit256"},
3695
- "TargetVersion":{"shape":"String"},
3696
- "Parameters":{"shape":"RemediationParameters"},
3697
- "ResourceType":{"shape":"String"},
3698
- "Automatic":{"shape":"Boolean"},
3699
- "ExecutionControls":{"shape":"ExecutionControls"},
3700
- "MaximumAutomaticAttempts":{"shape":"AutoRemediationAttempts"},
3701
- "RetryAttemptSeconds":{"shape":"AutoRemediationAttemptSeconds"},
3702
- "Arn":{"shape":"StringWithCharLimit1024"},
3703
- "CreatedByService":{"shape":"StringWithCharLimit1024"}
3704
- }
3705
- },
3706
- "RemediationConfigurations":{
3707
- "type":"list",
3708
- "member":{"shape":"RemediationConfiguration"},
3709
- "max":25,
3710
- "min":0
3711
- },
3712
- "RemediationException":{
3713
- "type":"structure",
3714
- "required":[
3715
- "ConfigRuleName",
3716
- "ResourceType",
3717
- "ResourceId"
3718
- ],
3719
- "members":{
3720
- "ConfigRuleName":{"shape":"ConfigRuleName"},
3721
- "ResourceType":{"shape":"StringWithCharLimit256"},
3722
- "ResourceId":{"shape":"StringWithCharLimit1024"},
3723
- "Message":{"shape":"StringWithCharLimit1024"},
3724
- "ExpirationTime":{"shape":"Date"}
3725
- }
3726
- },
3727
- "RemediationExceptionResourceKey":{
3728
- "type":"structure",
3729
- "members":{
3730
- "ResourceType":{"shape":"StringWithCharLimit256"},
3731
- "ResourceId":{"shape":"StringWithCharLimit1024"}
3732
- }
3733
- },
3734
- "RemediationExceptionResourceKeys":{
3735
- "type":"list",
3736
- "member":{"shape":"RemediationExceptionResourceKey"},
3737
- "max":100,
3738
- "min":1
3739
- },
3740
- "RemediationExceptions":{
3741
- "type":"list",
3742
- "member":{"shape":"RemediationException"},
3743
- "max":25,
3744
- "min":0
3745
- },
3746
- "RemediationExecutionState":{
3747
- "type":"string",
3748
- "enum":[
3749
- "QUEUED",
3750
- "IN_PROGRESS",
3751
- "SUCCEEDED",
3752
- "FAILED"
3753
- ]
3754
- },
3755
- "RemediationExecutionStatus":{
3756
- "type":"structure",
3757
- "members":{
3758
- "ResourceKey":{"shape":"ResourceKey"},
3759
- "State":{"shape":"RemediationExecutionState"},
3760
- "StepDetails":{"shape":"RemediationExecutionSteps"},
3761
- "InvocationTime":{"shape":"Date"},
3762
- "LastUpdatedTime":{"shape":"Date"}
3763
- }
3764
- },
3765
- "RemediationExecutionStatuses":{
3766
- "type":"list",
3767
- "member":{"shape":"RemediationExecutionStatus"}
3768
- },
3769
- "RemediationExecutionStep":{
3770
- "type":"structure",
3771
- "members":{
3772
- "Name":{"shape":"String"},
3773
- "State":{"shape":"RemediationExecutionStepState"},
3774
- "ErrorMessage":{"shape":"String"},
3775
- "StartTime":{"shape":"Date"},
3776
- "StopTime":{"shape":"Date"}
3777
- }
3778
- },
3779
- "RemediationExecutionStepState":{
3780
- "type":"string",
3781
- "enum":[
3782
- "SUCCEEDED",
3783
- "PENDING",
3784
- "FAILED"
3785
- ]
3786
- },
3787
- "RemediationExecutionSteps":{
3788
- "type":"list",
3789
- "member":{"shape":"RemediationExecutionStep"}
3790
- },
3791
- "RemediationInProgressException":{
3792
- "type":"structure",
3793
- "members":{
3794
- },
3795
- "exception":true
3796
- },
3797
- "RemediationParameterValue":{
3798
- "type":"structure",
3799
- "members":{
3800
- "ResourceValue":{"shape":"ResourceValue"},
3801
- "StaticValue":{"shape":"StaticValue"}
3802
- }
3803
- },
3804
- "RemediationParameters":{
3805
- "type":"map",
3806
- "key":{"shape":"StringWithCharLimit256"},
3807
- "value":{"shape":"RemediationParameterValue"},
3808
- "max":25,
3809
- "min":0
3810
- },
3811
- "RemediationTargetType":{
3812
- "type":"string",
3813
- "enum":["SSM_DOCUMENT"]
3814
- },
3815
- "ResourceCount":{
3816
- "type":"structure",
3817
- "members":{
3818
- "resourceType":{"shape":"ResourceType"},
3819
- "count":{"shape":"Long"}
3820
- }
3821
- },
3822
- "ResourceCountFilters":{
3823
- "type":"structure",
3824
- "members":{
3825
- "ResourceType":{"shape":"ResourceType"},
3826
- "AccountId":{"shape":"AccountId"},
3827
- "Region":{"shape":"AwsRegion"}
3828
- }
3829
- },
3830
- "ResourceCountGroupKey":{
3831
- "type":"string",
3832
- "enum":[
3833
- "RESOURCE_TYPE",
3834
- "ACCOUNT_ID",
3835
- "AWS_REGION"
3836
- ]
3837
- },
3838
- "ResourceCounts":{
3839
- "type":"list",
3840
- "member":{"shape":"ResourceCount"}
3841
- },
3842
- "ResourceCreationTime":{"type":"timestamp"},
3843
- "ResourceDeletionTime":{"type":"timestamp"},
3844
- "ResourceFilters":{
3845
- "type":"structure",
3846
- "members":{
3847
- "AccountId":{"shape":"AccountId"},
3848
- "ResourceId":{"shape":"ResourceId"},
3849
- "ResourceName":{"shape":"ResourceName"},
3850
- "Region":{"shape":"AwsRegion"}
3851
- }
3852
- },
3853
- "ResourceId":{
3854
- "type":"string",
3855
- "max":768,
3856
- "min":1
3857
- },
3858
- "ResourceIdList":{
3859
- "type":"list",
3860
- "member":{"shape":"ResourceId"}
3861
- },
3862
- "ResourceIdentifier":{
3863
- "type":"structure",
3864
- "members":{
3865
- "resourceType":{"shape":"ResourceType"},
3866
- "resourceId":{"shape":"ResourceId"},
3867
- "resourceName":{"shape":"ResourceName"},
3868
- "resourceDeletionTime":{"shape":"ResourceDeletionTime"}
3869
- }
3870
- },
3871
- "ResourceIdentifierList":{
3872
- "type":"list",
3873
- "member":{"shape":"ResourceIdentifier"}
3874
- },
3875
- "ResourceIdentifiersList":{
3876
- "type":"list",
3877
- "member":{"shape":"AggregateResourceIdentifier"},
3878
- "max":100,
3879
- "min":1
3880
- },
3881
- "ResourceInUseException":{
3882
- "type":"structure",
3883
- "members":{
3884
- },
3885
- "exception":true
3886
- },
3887
- "ResourceKey":{
3888
- "type":"structure",
3889
- "required":[
3890
- "resourceType",
3891
- "resourceId"
3892
- ],
3893
- "members":{
3894
- "resourceType":{"shape":"ResourceType"},
3895
- "resourceId":{"shape":"ResourceId"}
3896
- }
3897
- },
3898
- "ResourceKeys":{
3899
- "type":"list",
3900
- "member":{"shape":"ResourceKey"},
3901
- "max":100,
3902
- "min":1
3903
- },
3904
- "ResourceName":{"type":"string"},
3905
- "ResourceNotDiscoveredException":{
3906
- "type":"structure",
3907
- "members":{
3908
- },
3909
- "exception":true
3910
- },
3911
- "ResourceNotFoundException":{
3912
- "type":"structure",
3913
- "members":{
3914
- },
3915
- "exception":true
3916
- },
3917
- "ResourceType":{
3918
- "type":"string",
3919
- "enum":[
3920
- "AWS::EC2::CustomerGateway",
3921
- "AWS::EC2::EIP",
3922
- "AWS::EC2::Host",
3923
- "AWS::EC2::Instance",
3924
- "AWS::EC2::InternetGateway",
3925
- "AWS::EC2::NetworkAcl",
3926
- "AWS::EC2::NetworkInterface",
3927
- "AWS::EC2::RouteTable",
3928
- "AWS::EC2::SecurityGroup",
3929
- "AWS::EC2::Subnet",
3930
- "AWS::CloudTrail::Trail",
3931
- "AWS::EC2::Volume",
3932
- "AWS::EC2::VPC",
3933
- "AWS::EC2::VPNConnection",
3934
- "AWS::EC2::VPNGateway",
3935
- "AWS::EC2::RegisteredHAInstance",
3936
- "AWS::EC2::NatGateway",
3937
- "AWS::EC2::EgressOnlyInternetGateway",
3938
- "AWS::EC2::VPCEndpoint",
3939
- "AWS::EC2::VPCEndpointService",
3940
- "AWS::EC2::FlowLog",
3941
- "AWS::EC2::VPCPeeringConnection",
3942
- "AWS::Elasticsearch::Domain",
3943
- "AWS::IAM::Group",
3944
- "AWS::IAM::Policy",
3945
- "AWS::IAM::Role",
3946
- "AWS::IAM::User",
3947
- "AWS::ElasticLoadBalancingV2::LoadBalancer",
3948
- "AWS::ACM::Certificate",
3949
- "AWS::RDS::DBInstance",
3950
- "AWS::RDS::DBSubnetGroup",
3951
- "AWS::RDS::DBSecurityGroup",
3952
- "AWS::RDS::DBSnapshot",
3953
- "AWS::RDS::DBCluster",
3954
- "AWS::RDS::DBClusterSnapshot",
3955
- "AWS::RDS::EventSubscription",
3956
- "AWS::S3::Bucket",
3957
- "AWS::S3::AccountPublicAccessBlock",
3958
- "AWS::Redshift::Cluster",
3959
- "AWS::Redshift::ClusterSnapshot",
3960
- "AWS::Redshift::ClusterParameterGroup",
3961
- "AWS::Redshift::ClusterSecurityGroup",
3962
- "AWS::Redshift::ClusterSubnetGroup",
3963
- "AWS::Redshift::EventSubscription",
3964
- "AWS::SSM::ManagedInstanceInventory",
3965
- "AWS::CloudWatch::Alarm",
3966
- "AWS::CloudFormation::Stack",
3967
- "AWS::ElasticLoadBalancing::LoadBalancer",
3968
- "AWS::AutoScaling::AutoScalingGroup",
3969
- "AWS::AutoScaling::LaunchConfiguration",
3970
- "AWS::AutoScaling::ScalingPolicy",
3971
- "AWS::AutoScaling::ScheduledAction",
3972
- "AWS::DynamoDB::Table",
3973
- "AWS::CodeBuild::Project",
3974
- "AWS::WAF::RateBasedRule",
3975
- "AWS::WAF::Rule",
3976
- "AWS::WAF::RuleGroup",
3977
- "AWS::WAF::WebACL",
3978
- "AWS::WAFRegional::RateBasedRule",
3979
- "AWS::WAFRegional::Rule",
3980
- "AWS::WAFRegional::RuleGroup",
3981
- "AWS::WAFRegional::WebACL",
3982
- "AWS::CloudFront::Distribution",
3983
- "AWS::CloudFront::StreamingDistribution",
3984
- "AWS::Lambda::Function",
3985
- "AWS::ElasticBeanstalk::Application",
3986
- "AWS::ElasticBeanstalk::ApplicationVersion",
3987
- "AWS::ElasticBeanstalk::Environment",
3988
- "AWS::WAFv2::WebACL",
3989
- "AWS::WAFv2::RuleGroup",
3990
- "AWS::WAFv2::IPSet",
3991
- "AWS::WAFv2::RegexPatternSet",
3992
- "AWS::WAFv2::ManagedRuleSet",
3993
- "AWS::XRay::EncryptionConfig",
3994
- "AWS::SSM::AssociationCompliance",
3995
- "AWS::SSM::PatchCompliance",
3996
- "AWS::Shield::Protection",
3997
- "AWS::ShieldRegional::Protection",
3998
- "AWS::Config::ResourceCompliance",
3999
- "AWS::ApiGateway::Stage",
4000
- "AWS::ApiGateway::RestApi",
4001
- "AWS::ApiGatewayV2::Stage",
4002
- "AWS::ApiGatewayV2::Api",
4003
- "AWS::CodePipeline::Pipeline",
4004
- "AWS::ServiceCatalog::CloudFormationProvisionedProduct",
4005
- "AWS::ServiceCatalog::CloudFormationProduct",
4006
- "AWS::ServiceCatalog::Portfolio",
4007
- "AWS::SQS::Queue",
4008
- "AWS::KMS::Key",
4009
- "AWS::QLDB::Ledger",
4010
- "AWS::SecretsManager::Secret",
4011
- "AWS::SNS::Topic",
4012
- "AWS::SSM::FileData"
4013
- ]
4014
- },
4015
- "ResourceTypeList":{
4016
- "type":"list",
4017
- "member":{"shape":"ResourceType"}
4018
- },
4019
- "ResourceTypeString":{
4020
- "type":"string",
4021
- "max":196,
4022
- "min":1
4023
- },
4024
- "ResourceTypes":{
4025
- "type":"list",
4026
- "member":{"shape":"StringWithCharLimit256"},
4027
- "max":20,
4028
- "min":0
4029
- },
4030
- "ResourceTypesScope":{
4031
- "type":"list",
4032
- "member":{"shape":"StringWithCharLimit256"},
4033
- "max":100,
4034
- "min":0
4035
- },
4036
- "ResourceValue":{
4037
- "type":"structure",
4038
- "required":["Value"],
4039
- "members":{
4040
- "Value":{"shape":"ResourceValueType"}
4041
- }
4042
- },
4043
- "ResourceValueType":{
4044
- "type":"string",
4045
- "enum":["RESOURCE_ID"]
4046
- },
4047
- "Results":{
4048
- "type":"list",
4049
- "member":{"shape":"String"}
4050
- },
4051
- "RetentionConfiguration":{
4052
- "type":"structure",
4053
- "required":[
4054
- "Name",
4055
- "RetentionPeriodInDays"
4056
- ],
4057
- "members":{
4058
- "Name":{"shape":"RetentionConfigurationName"},
4059
- "RetentionPeriodInDays":{"shape":"RetentionPeriodInDays"}
4060
- }
4061
- },
4062
- "RetentionConfigurationList":{
4063
- "type":"list",
4064
- "member":{"shape":"RetentionConfiguration"}
4065
- },
4066
- "RetentionConfigurationName":{
4067
- "type":"string",
4068
- "max":256,
4069
- "min":1,
4070
- "pattern":"[\\w\\-]+"
4071
- },
4072
- "RetentionConfigurationNameList":{
4073
- "type":"list",
4074
- "member":{"shape":"RetentionConfigurationName"},
4075
- "max":1,
4076
- "min":0
4077
- },
4078
- "RetentionPeriodInDays":{
4079
- "type":"integer",
4080
- "max":2557,
4081
- "min":30
4082
- },
4083
- "RuleLimit":{
4084
- "type":"integer",
4085
- "max":50,
4086
- "min":0
4087
- },
4088
- "SchemaVersionId":{
4089
- "type":"string",
4090
- "max":128,
4091
- "min":1,
4092
- "pattern":"[A-Za-z0-9-]+"
4093
- },
4094
- "Scope":{
4095
- "type":"structure",
4096
- "members":{
4097
- "ComplianceResourceTypes":{"shape":"ComplianceResourceTypes"},
4098
- "TagKey":{"shape":"StringWithCharLimit128"},
4099
- "TagValue":{"shape":"StringWithCharLimit256"},
4100
- "ComplianceResourceId":{"shape":"BaseResourceId"}
4101
- }
4102
- },
4103
- "SelectAggregateResourceConfigRequest":{
4104
- "type":"structure",
4105
- "required":[
4106
- "Expression",
4107
- "ConfigurationAggregatorName"
4108
- ],
4109
- "members":{
4110
- "Expression":{"shape":"Expression"},
4111
- "ConfigurationAggregatorName":{"shape":"ConfigurationAggregatorName"},
4112
- "Limit":{"shape":"Limit"},
4113
- "MaxResults":{"shape":"Limit"},
4114
- "NextToken":{"shape":"NextToken"}
4115
- }
4116
- },
4117
- "SelectAggregateResourceConfigResponse":{
4118
- "type":"structure",
4119
- "members":{
4120
- "Results":{"shape":"Results"},
4121
- "QueryInfo":{"shape":"QueryInfo"},
4122
- "NextToken":{"shape":"NextToken"}
4123
- }
4124
- },
4125
- "SelectResourceConfigRequest":{
4126
- "type":"structure",
4127
- "required":["Expression"],
4128
- "members":{
4129
- "Expression":{"shape":"Expression"},
4130
- "Limit":{"shape":"Limit"},
4131
- "NextToken":{"shape":"NextToken"}
4132
- }
4133
- },
4134
- "SelectResourceConfigResponse":{
4135
- "type":"structure",
4136
- "members":{
4137
- "Results":{"shape":"Results"},
4138
- "QueryInfo":{"shape":"QueryInfo"},
4139
- "NextToken":{"shape":"NextToken"}
4140
- }
4141
- },
4142
- "Source":{
4143
- "type":"structure",
4144
- "required":[
4145
- "Owner",
4146
- "SourceIdentifier"
4147
- ],
4148
- "members":{
4149
- "Owner":{"shape":"Owner"},
4150
- "SourceIdentifier":{"shape":"StringWithCharLimit256"},
4151
- "SourceDetails":{"shape":"SourceDetails"}
4152
- }
4153
- },
4154
- "SourceDetail":{
4155
- "type":"structure",
4156
- "members":{
4157
- "EventSource":{"shape":"EventSource"},
4158
- "MessageType":{"shape":"MessageType"},
4159
- "MaximumExecutionFrequency":{"shape":"MaximumExecutionFrequency"}
4160
- }
4161
- },
4162
- "SourceDetails":{
4163
- "type":"list",
4164
- "member":{"shape":"SourceDetail"},
4165
- "max":25,
4166
- "min":0
4167
- },
4168
- "SsmControls":{
4169
- "type":"structure",
4170
- "members":{
4171
- "ConcurrentExecutionRatePercentage":{"shape":"Percentage"},
4172
- "ErrorPercentage":{"shape":"Percentage"}
4173
- }
4174
- },
4175
- "StackArn":{
4176
- "type":"string",
4177
- "max":2048,
4178
- "min":1
4179
- },
4180
- "StartConfigRulesEvaluationRequest":{
4181
- "type":"structure",
4182
- "members":{
4183
- "ConfigRuleNames":{"shape":"ReevaluateConfigRuleNames"}
4184
- }
4185
- },
4186
- "StartConfigRulesEvaluationResponse":{
4187
- "type":"structure",
4188
- "members":{
4189
- }
4190
- },
4191
- "StartConfigurationRecorderRequest":{
4192
- "type":"structure",
4193
- "required":["ConfigurationRecorderName"],
4194
- "members":{
4195
- "ConfigurationRecorderName":{"shape":"RecorderName"}
4196
- }
4197
- },
4198
- "StartRemediationExecutionRequest":{
4199
- "type":"structure",
4200
- "required":[
4201
- "ConfigRuleName",
4202
- "ResourceKeys"
4203
- ],
4204
- "members":{
4205
- "ConfigRuleName":{"shape":"ConfigRuleName"},
4206
- "ResourceKeys":{"shape":"ResourceKeys"}
4207
- }
4208
- },
4209
- "StartRemediationExecutionResponse":{
4210
- "type":"structure",
4211
- "members":{
4212
- "FailureMessage":{"shape":"String"},
4213
- "FailedItems":{"shape":"ResourceKeys"}
4214
- }
4215
- },
4216
- "StaticParameterValues":{
4217
- "type":"list",
4218
- "member":{"shape":"StringWithCharLimit256"},
4219
- "max":25,
4220
- "min":0
4221
- },
4222
- "StaticValue":{
4223
- "type":"structure",
4224
- "required":["Values"],
4225
- "members":{
4226
- "Values":{"shape":"StaticParameterValues"}
4227
- }
4228
- },
4229
- "StatusDetailFilters":{
4230
- "type":"structure",
4231
- "members":{
4232
- "AccountId":{"shape":"AccountId"},
4233
- "MemberAccountRuleStatus":{"shape":"MemberAccountRuleStatus"}
4234
- }
4235
- },
4236
- "StopConfigurationRecorderRequest":{
4237
- "type":"structure",
4238
- "required":["ConfigurationRecorderName"],
4239
- "members":{
4240
- "ConfigurationRecorderName":{"shape":"RecorderName"}
4241
- }
4242
- },
4243
- "String":{"type":"string"},
4244
- "StringWithCharLimit1024":{
4245
- "type":"string",
4246
- "max":1024,
4247
- "min":1
4248
- },
4249
- "StringWithCharLimit128":{
4250
- "type":"string",
4251
- "max":128,
4252
- "min":1
4253
- },
4254
- "StringWithCharLimit2048":{
4255
- "type":"string",
4256
- "max":2048,
4257
- "min":1
4258
- },
4259
- "StringWithCharLimit256":{
4260
- "type":"string",
4261
- "max":256,
4262
- "min":1
4263
- },
4264
- "StringWithCharLimit256Min0":{
4265
- "type":"string",
4266
- "max":256,
4267
- "min":0
4268
- },
4269
- "StringWithCharLimit64":{
4270
- "type":"string",
4271
- "max":64,
4272
- "min":1
4273
- },
4274
- "StringWithCharLimit768":{
4275
- "type":"string",
4276
- "max":768,
4277
- "min":1
4278
- },
4279
- "SupplementaryConfiguration":{
4280
- "type":"map",
4281
- "key":{"shape":"SupplementaryConfigurationName"},
4282
- "value":{"shape":"SupplementaryConfigurationValue"}
4283
- },
4284
- "SupplementaryConfigurationName":{"type":"string"},
4285
- "SupplementaryConfigurationValue":{"type":"string"},
4286
- "Tag":{
4287
- "type":"structure",
4288
- "members":{
4289
- "Key":{"shape":"TagKey"},
4290
- "Value":{"shape":"TagValue"}
4291
- }
4292
- },
4293
- "TagKey":{
4294
- "type":"string",
4295
- "max":128,
4296
- "min":1
4297
- },
4298
- "TagKeyList":{
4299
- "type":"list",
4300
- "member":{"shape":"TagKey"},
4301
- "max":50,
4302
- "min":1
4303
- },
4304
- "TagList":{
4305
- "type":"list",
4306
- "member":{"shape":"Tag"},
4307
- "max":50,
4308
- "min":1
4309
- },
4310
- "TagResourceRequest":{
4311
- "type":"structure",
4312
- "required":[
4313
- "ResourceArn",
4314
- "Tags"
4315
- ],
4316
- "members":{
4317
- "ResourceArn":{"shape":"AmazonResourceName"},
4318
- "Tags":{"shape":"TagList"}
4319
- }
4320
- },
4321
- "TagValue":{
4322
- "type":"string",
4323
- "max":256,
4324
- "min":0
4325
- },
4326
- "Tags":{
4327
- "type":"map",
4328
- "key":{"shape":"Name"},
4329
- "value":{"shape":"Value"}
4330
- },
4331
- "TagsList":{
4332
- "type":"list",
4333
- "member":{"shape":"Tag"},
4334
- "max":50,
4335
- "min":0
4336
- },
4337
- "TemplateBody":{
4338
- "type":"string",
4339
- "max":51200,
4340
- "min":1
4341
- },
4342
- "TemplateS3Uri":{
4343
- "type":"string",
4344
- "max":1024,
4345
- "min":1,
4346
- "pattern":"s3://.*"
4347
- },
4348
- "TooManyTagsException":{
4349
- "type":"structure",
4350
- "members":{
4351
- },
4352
- "exception":true
4353
- },
4354
- "UnprocessedResourceIdentifierList":{
4355
- "type":"list",
4356
- "member":{"shape":"AggregateResourceIdentifier"}
4357
- },
4358
- "UntagResourceRequest":{
4359
- "type":"structure",
4360
- "required":[
4361
- "ResourceArn",
4362
- "TagKeys"
4363
- ],
4364
- "members":{
4365
- "ResourceArn":{"shape":"AmazonResourceName"},
4366
- "TagKeys":{"shape":"TagKeyList"}
4367
- }
4368
- },
4369
- "ValidationException":{
4370
- "type":"structure",
4371
- "members":{
4372
- },
4373
- "exception":true
4374
- },
4375
- "Value":{"type":"string"},
4376
- "Version":{"type":"string"}
4377
- }
4378
- }