aws-sdk-core 2.11.398 → 3.76.0

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