aws-sdk-core 2.11.403 → 3.75.0

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