aws-sdk-core 2.11.401 → 3.77.0

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