aws-sdk-core 2.11.343 → 3.64.0

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