aws-sdk-core 2.11.502 → 3.94.0

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