aws-sdk-core 2.3.23 → 3.89.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (496) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +106 -404
  5. data/lib/aws-sdk-core/arn.rb +77 -0
  6. data/lib/aws-sdk-core/arn_parser.rb +38 -0
  7. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  8. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  9. data/lib/aws-sdk-core/binary.rb +6 -0
  10. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  11. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  12. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  13. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  14. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  15. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  16. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  17. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  18. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  19. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  20. data/lib/aws-sdk-core/credential_provider_chain.rb +56 -6
  21. data/lib/aws-sdk-core/deprecations.rb +16 -10
  22. data/lib/aws-sdk-core/ecs_credentials.rb +14 -10
  23. data/lib/aws-sdk-core/endpoint_cache.rb +191 -0
  24. data/lib/aws-sdk-core/errors.rb +221 -11
  25. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  26. data/lib/aws-sdk-core/ini_parser.rb +41 -0
  27. data/lib/aws-sdk-core/instance_profile_credentials.rb +133 -42
  28. data/lib/aws-sdk-core/json.rb +9 -10
  29. data/lib/aws-sdk-core/json/builder.rb +4 -2
  30. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  31. data/lib/aws-sdk-core/json/handler.rb +22 -3
  32. data/lib/aws-sdk-core/json/parser.rb +1 -1
  33. data/lib/aws-sdk-core/log/formatter.rb +7 -1
  34. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  35. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  36. data/lib/aws-sdk-core/pager.rb +30 -25
  37. data/lib/aws-sdk-core/param_converter.rb +3 -3
  38. data/lib/aws-sdk-core/param_validator.rb +60 -26
  39. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  40. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  41. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  42. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  43. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  44. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  45. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  46. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  47. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  48. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  49. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  50. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  51. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  52. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  53. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  54. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  55. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  56. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  57. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  58. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  59. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  60. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  61. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +48 -19
  62. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  63. data/lib/aws-sdk-core/plugins/retry_errors.rb +102 -24
  64. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  65. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  66. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  67. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  68. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  69. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  70. data/lib/aws-sdk-core/query.rb +5 -0
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  72. data/lib/aws-sdk-core/query/handler.rb +20 -16
  73. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  75. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  76. data/lib/aws-sdk-core/rest.rb +10 -0
  77. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  78. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  79. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  80. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  81. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  82. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  83. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  84. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  85. data/lib/aws-sdk-core/shared_config.rb +451 -0
  86. data/lib/aws-sdk-core/shared_credentials.rb +16 -53
  87. data/lib/aws-sdk-core/structure.rb +22 -13
  88. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  89. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  90. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  91. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  92. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  93. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  94. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  95. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  96. data/lib/aws-sdk-core/util.rb +66 -0
  97. data/lib/aws-sdk-core/waiters.rb +3 -0
  98. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  99. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  100. data/lib/aws-sdk-core/xml.rb +9 -0
  101. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  102. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  103. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  104. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  106. data/lib/aws-sdk-sts.rb +45 -0
  107. data/lib/aws-sdk-sts/client.rb +2156 -0
  108. data/lib/aws-sdk-sts/client_api.rb +336 -0
  109. data/lib/aws-sdk-sts/customizations.rb +2 -0
  110. data/lib/aws-sdk-sts/errors.rb +142 -0
  111. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  112. data/lib/aws-sdk-sts/presigner.rb +67 -0
  113. data/lib/aws-sdk-sts/resource.rb +23 -0
  114. data/lib/aws-sdk-sts/types.rb +1504 -0
  115. data/lib/seahorse.rb +60 -60
  116. data/lib/seahorse/client/async_base.rb +50 -0
  117. data/lib/seahorse/client/async_response.rb +62 -0
  118. data/lib/seahorse/client/base.rb +5 -9
  119. data/lib/seahorse/client/configuration.rb +10 -2
  120. data/lib/seahorse/client/events.rb +1 -1
  121. data/lib/seahorse/client/h2/connection.rb +246 -0
  122. data/lib/seahorse/client/h2/handler.rb +151 -0
  123. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  124. data/lib/seahorse/client/http/async_response.rb +42 -0
  125. data/lib/seahorse/client/http/response.rb +13 -8
  126. data/lib/seahorse/client/logging/formatter.rb +7 -1
  127. data/lib/seahorse/client/logging/handler.rb +2 -0
  128. data/lib/seahorse/client/net_http/connection_pool.rb +46 -28
  129. data/lib/seahorse/client/net_http/handler.rb +17 -3
  130. data/lib/seahorse/client/net_http/patches.rb +9 -1
  131. data/lib/seahorse/client/networking_error.rb +28 -0
  132. data/lib/seahorse/client/plugin.rb +67 -6
  133. data/lib/seahorse/client/plugin_list.rb +3 -1
  134. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  135. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  136. data/lib/seahorse/client/plugins/h2.rb +64 -0
  137. data/lib/seahorse/client/plugins/logging.rb +17 -19
  138. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  139. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  140. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  141. data/lib/seahorse/client/request_context.rb +5 -0
  142. data/lib/seahorse/client/response.rb +9 -20
  143. data/lib/seahorse/model/api.rb +37 -0
  144. data/lib/seahorse/model/authorizer.rb +21 -0
  145. data/lib/seahorse/model/operation.rb +20 -0
  146. data/lib/seahorse/model/shapes.rb +44 -2
  147. data/lib/seahorse/util.rb +1 -21
  148. metadata +127 -360
  149. data/apis/acm/2015-12-08/api-2.json +0 -495
  150. data/apis/acm/2015-12-08/examples-1.json +0 -5
  151. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  152. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  153. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  154. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  155. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  156. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  157. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  162. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  163. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  164. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  165. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  166. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  167. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  168. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  169. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  170. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  171. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  172. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  173. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  174. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  175. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  176. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  177. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  178. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  179. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  180. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  181. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  182. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  183. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  184. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  185. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  186. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  187. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  188. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  189. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  190. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  191. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  192. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  193. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  194. data/apis/config/2014-11-12/api-2.json +0 -1303
  195. data/apis/config/2014-11-12/examples-1.json +0 -5
  196. data/apis/config/2014-11-12/paginators-1.json +0 -10
  197. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  198. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  199. data/apis/devicefarm/2015-06-23/api-2.json +0 -1819
  200. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  201. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  202. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  203. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  204. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  205. data/apis/discovery/2015-11-01/api-2.json +0 -556
  206. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  207. data/apis/dms/2016-01-01/api-2.json +0 -1469
  208. data/apis/dms/2016-01-01/examples-1.json +0 -5
  209. data/apis/ds/2015-04-16/api-2.json +0 -1674
  210. data/apis/ds/2015-04-16/examples-1.json +0 -5
  211. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  212. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  213. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  214. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  215. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  216. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  217. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  218. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  219. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  220. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  221. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  222. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  223. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  224. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  225. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  226. data/apis/ecr/2015-09-21/api-2.json +0 -849
  227. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  228. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  229. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  230. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  231. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  232. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  233. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  234. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  235. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  236. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  237. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  238. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  239. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  240. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  241. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  242. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  243. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  244. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  245. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  246. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  247. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  248. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  249. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  250. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  251. data/apis/email/2010-12-01/api-2.json +0 -1791
  252. data/apis/email/2010-12-01/examples-1.json +0 -5
  253. data/apis/email/2010-12-01/paginators-1.json +0 -13
  254. data/apis/email/2010-12-01/waiters-2.json +0 -18
  255. data/apis/es/2015-01-01/api-2.json +0 -764
  256. data/apis/events/2015-10-07/api-2.json +0 -643
  257. data/apis/events/2015-10-07/examples-1.json +0 -5
  258. data/apis/firehose/2015-08-04/api-2.json +0 -719
  259. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  260. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  261. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  262. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  263. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  264. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  265. data/apis/iam/2010-05-08/api-2.json +0 -4514
  266. data/apis/iam/2010-05-08/examples-1.json +0 -5
  267. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  268. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  269. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  270. data/apis/importexport/2010-06-01/api-2.json +0 -666
  271. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  272. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  273. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  274. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  275. data/apis/iot/2015-05-28/api-2.json +0 -3800
  276. data/apis/iot/2015-05-28/examples-1.json +0 -5
  277. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  278. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  279. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  280. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  281. data/apis/kms/2014-11-01/api-2.json +0 -1209
  282. data/apis/kms/2014-11-01/examples-1.json +0 -5
  283. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  284. data/apis/lambda/2014-11-11/api-2.json +0 -667
  285. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  286. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  287. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  288. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  289. data/apis/logs/2014-03-28/api-2.json +0 -1138
  290. data/apis/logs/2014-03-28/examples-1.json +0 -5
  291. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  292. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  293. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  294. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  295. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  296. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  297. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  298. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  299. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  300. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  301. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  302. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  303. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  304. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  305. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  306. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  307. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  308. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  309. data/apis/rds/2014-10-31/api-2.json +0 -4757
  310. data/apis/rds/2014-10-31/examples-1.json +0 -5
  311. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  312. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  313. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  314. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  315. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  316. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  317. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  318. data/apis/route53/2013-04-01/api-2.json +0 -3245
  319. data/apis/route53/2013-04-01/examples-1.json +0 -5
  320. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  321. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  322. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  323. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  324. data/apis/s3/2006-03-01/api-2.json +0 -4517
  325. data/apis/s3/2006-03-01/examples-1.json +0 -5
  326. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  327. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  328. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  329. data/apis/sdb/2009-04-15/api-2.json +0 -954
  330. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  331. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  332. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  333. data/apis/sns/2010-03-31/api-2.json +0 -1139
  334. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  335. data/apis/sns/2010-03-31/resources-1.json +0 -327
  336. data/apis/sqs/2012-11-05/api-2.json +0 -950
  337. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  338. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  339. data/apis/ssm/2014-11-06/api-2.json +0 -1742
  340. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  341. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  342. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  343. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  344. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  345. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  346. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  347. data/apis/sts/2011-06-15/api-2.json +0 -521
  348. data/apis/sts/2011-06-15/examples-1.json +0 -5
  349. data/apis/support/2013-04-15/api-2.json +0 -869
  350. data/apis/support/2013-04-15/paginators-1.json +0 -25
  351. data/apis/swf/2012-01-25/api-2.json +0 -2838
  352. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  353. data/apis/waf/2015-08-24/api-2.json +0 -1959
  354. data/apis/waf/2015-08-24/examples-1.json +0 -5
  355. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  356. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  357. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  358. data/bin/aws.rb +0 -180
  359. data/endpoints.json +0 -1460
  360. data/lib/aws-sdk-core/acm.rb +0 -6
  361. data/lib/aws-sdk-core/api/builder.rb +0 -106
  362. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  363. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  364. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  365. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  366. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  367. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  368. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  369. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  370. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  371. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  372. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  373. data/lib/aws-sdk-core/apigateway.rb +0 -6
  374. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  375. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  376. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  377. data/lib/aws-sdk-core/checksums.rb +0 -51
  378. data/lib/aws-sdk-core/client.rb +0 -67
  379. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  380. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  381. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  382. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  383. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  384. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  385. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  386. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  387. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  388. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  389. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  390. data/lib/aws-sdk-core/codecommit.rb +0 -6
  391. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  392. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  393. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  394. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  395. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  396. data/lib/aws-sdk-core/configservice.rb +0 -6
  397. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  398. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  399. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  400. data/lib/aws-sdk-core/directconnect.rb +0 -6
  401. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  402. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  403. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  404. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  405. data/lib/aws-sdk-core/ec2.rb +0 -8
  406. data/lib/aws-sdk-core/ecr.rb +0 -5
  407. data/lib/aws-sdk-core/ecs.rb +0 -7
  408. data/lib/aws-sdk-core/efs.rb +0 -5
  409. data/lib/aws-sdk-core/elasticache.rb +0 -7
  410. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  411. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  412. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  413. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  414. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  415. data/lib/aws-sdk-core/emr.rb +0 -7
  416. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  417. data/lib/aws-sdk-core/firehose.rb +0 -4
  418. data/lib/aws-sdk-core/gamelift.rb +0 -5
  419. data/lib/aws-sdk-core/glacier.rb +0 -7
  420. data/lib/aws-sdk-core/iam.rb +0 -8
  421. data/lib/aws-sdk-core/importexport.rb +0 -5
  422. data/lib/aws-sdk-core/inspector.rb +0 -5
  423. data/lib/aws-sdk-core/iot.rb +0 -5
  424. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  425. data/lib/aws-sdk-core/kinesis.rb +0 -7
  426. data/lib/aws-sdk-core/kms.rb +0 -6
  427. data/lib/aws-sdk-core/lambda.rb +0 -6
  428. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  429. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  430. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  431. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  432. data/lib/aws-sdk-core/opsworks.rb +0 -8
  433. data/lib/aws-sdk-core/partitions.rb +0 -174
  434. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  435. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  436. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  437. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  438. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  439. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  440. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  441. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  442. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  443. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  444. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  445. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  446. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  447. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  448. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  449. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  450. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  451. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  452. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  453. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  454. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  455. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  456. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  457. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  458. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  459. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  460. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  461. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  462. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  463. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  464. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  465. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  466. data/lib/aws-sdk-core/rds.rb +0 -8
  467. data/lib/aws-sdk-core/redshift.rb +0 -7
  468. data/lib/aws-sdk-core/route53.rb +0 -7
  469. data/lib/aws-sdk-core/route53domains.rb +0 -5
  470. data/lib/aws-sdk-core/s3.rb +0 -26
  471. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  472. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  473. data/lib/aws-sdk-core/service.rb +0 -4
  474. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  475. data/lib/aws-sdk-core/ses.rb +0 -7
  476. data/lib/aws-sdk-core/signers/base.rb +0 -31
  477. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  478. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  479. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  480. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  481. data/lib/aws-sdk-core/simpledb.rb +0 -5
  482. data/lib/aws-sdk-core/sns.rb +0 -6
  483. data/lib/aws-sdk-core/sqs.rb +0 -6
  484. data/lib/aws-sdk-core/ssm.rb +0 -6
  485. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  486. data/lib/aws-sdk-core/sts.rb +0 -5
  487. data/lib/aws-sdk-core/support.rb +0 -5
  488. data/lib/aws-sdk-core/swf.rb +0 -5
  489. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  490. data/lib/aws-sdk-core/version.rb +0 -3
  491. data/lib/aws-sdk-core/waf.rb +0 -5
  492. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  493. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  494. data/lib/aws-sdk-core/workspaces.rb +0 -6
  495. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  496. data/service-models.json +0 -285
@@ -1,1303 +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
- "signatureVersion":"v4",
11
- "targetPrefix":"StarlingDoveService"
12
- },
13
- "operations":{
14
- "DeleteConfigRule":{
15
- "name":"DeleteConfigRule",
16
- "http":{
17
- "method":"POST",
18
- "requestUri":"/"
19
- },
20
- "input":{"shape":"DeleteConfigRuleRequest"},
21
- "errors":[
22
- {"shape":"NoSuchConfigRuleException"},
23
- {"shape":"ResourceInUseException"}
24
- ]
25
- },
26
- "DeleteConfigurationRecorder":{
27
- "name":"DeleteConfigurationRecorder",
28
- "http":{
29
- "method":"POST",
30
- "requestUri":"/"
31
- },
32
- "input":{"shape":"DeleteConfigurationRecorderRequest"},
33
- "errors":[
34
- {"shape":"NoSuchConfigurationRecorderException"}
35
- ]
36
- },
37
- "DeleteDeliveryChannel":{
38
- "name":"DeleteDeliveryChannel",
39
- "http":{
40
- "method":"POST",
41
- "requestUri":"/"
42
- },
43
- "input":{"shape":"DeleteDeliveryChannelRequest"},
44
- "errors":[
45
- {"shape":"NoSuchDeliveryChannelException"},
46
- {"shape":"LastDeliveryChannelDeleteFailedException"}
47
- ]
48
- },
49
- "DeliverConfigSnapshot":{
50
- "name":"DeliverConfigSnapshot",
51
- "http":{
52
- "method":"POST",
53
- "requestUri":"/"
54
- },
55
- "input":{"shape":"DeliverConfigSnapshotRequest"},
56
- "output":{"shape":"DeliverConfigSnapshotResponse"},
57
- "errors":[
58
- {"shape":"NoSuchDeliveryChannelException"},
59
- {"shape":"NoAvailableConfigurationRecorderException"},
60
- {"shape":"NoRunningConfigurationRecorderException"}
61
- ]
62
- },
63
- "DescribeComplianceByConfigRule":{
64
- "name":"DescribeComplianceByConfigRule",
65
- "http":{
66
- "method":"POST",
67
- "requestUri":"/"
68
- },
69
- "input":{"shape":"DescribeComplianceByConfigRuleRequest"},
70
- "output":{"shape":"DescribeComplianceByConfigRuleResponse"},
71
- "errors":[
72
- {"shape":"InvalidParameterValueException"},
73
- {"shape":"NoSuchConfigRuleException"}
74
- ]
75
- },
76
- "DescribeComplianceByResource":{
77
- "name":"DescribeComplianceByResource",
78
- "http":{
79
- "method":"POST",
80
- "requestUri":"/"
81
- },
82
- "input":{"shape":"DescribeComplianceByResourceRequest"},
83
- "output":{"shape":"DescribeComplianceByResourceResponse"},
84
- "errors":[
85
- {"shape":"InvalidParameterValueException"},
86
- {"shape":"InvalidNextTokenException"}
87
- ]
88
- },
89
- "DescribeConfigRuleEvaluationStatus":{
90
- "name":"DescribeConfigRuleEvaluationStatus",
91
- "http":{
92
- "method":"POST",
93
- "requestUri":"/"
94
- },
95
- "input":{"shape":"DescribeConfigRuleEvaluationStatusRequest"},
96
- "output":{"shape":"DescribeConfigRuleEvaluationStatusResponse"},
97
- "errors":[
98
- {"shape":"NoSuchConfigRuleException"}
99
- ]
100
- },
101
- "DescribeConfigRules":{
102
- "name":"DescribeConfigRules",
103
- "http":{
104
- "method":"POST",
105
- "requestUri":"/"
106
- },
107
- "input":{"shape":"DescribeConfigRulesRequest"},
108
- "output":{"shape":"DescribeConfigRulesResponse"},
109
- "errors":[
110
- {"shape":"NoSuchConfigRuleException"}
111
- ]
112
- },
113
- "DescribeConfigurationRecorderStatus":{
114
- "name":"DescribeConfigurationRecorderStatus",
115
- "http":{
116
- "method":"POST",
117
- "requestUri":"/"
118
- },
119
- "input":{"shape":"DescribeConfigurationRecorderStatusRequest"},
120
- "output":{"shape":"DescribeConfigurationRecorderStatusResponse"},
121
- "errors":[
122
- {"shape":"NoSuchConfigurationRecorderException"}
123
- ]
124
- },
125
- "DescribeConfigurationRecorders":{
126
- "name":"DescribeConfigurationRecorders",
127
- "http":{
128
- "method":"POST",
129
- "requestUri":"/"
130
- },
131
- "input":{"shape":"DescribeConfigurationRecordersRequest"},
132
- "output":{"shape":"DescribeConfigurationRecordersResponse"},
133
- "errors":[
134
- {"shape":"NoSuchConfigurationRecorderException"}
135
- ]
136
- },
137
- "DescribeDeliveryChannelStatus":{
138
- "name":"DescribeDeliveryChannelStatus",
139
- "http":{
140
- "method":"POST",
141
- "requestUri":"/"
142
- },
143
- "input":{"shape":"DescribeDeliveryChannelStatusRequest"},
144
- "output":{"shape":"DescribeDeliveryChannelStatusResponse"},
145
- "errors":[
146
- {"shape":"NoSuchDeliveryChannelException"}
147
- ]
148
- },
149
- "DescribeDeliveryChannels":{
150
- "name":"DescribeDeliveryChannels",
151
- "http":{
152
- "method":"POST",
153
- "requestUri":"/"
154
- },
155
- "input":{"shape":"DescribeDeliveryChannelsRequest"},
156
- "output":{"shape":"DescribeDeliveryChannelsResponse"},
157
- "errors":[
158
- {"shape":"NoSuchDeliveryChannelException"}
159
- ]
160
- },
161
- "GetComplianceDetailsByConfigRule":{
162
- "name":"GetComplianceDetailsByConfigRule",
163
- "http":{
164
- "method":"POST",
165
- "requestUri":"/"
166
- },
167
- "input":{"shape":"GetComplianceDetailsByConfigRuleRequest"},
168
- "output":{"shape":"GetComplianceDetailsByConfigRuleResponse"},
169
- "errors":[
170
- {"shape":"InvalidParameterValueException"},
171
- {"shape":"InvalidNextTokenException"},
172
- {"shape":"NoSuchConfigRuleException"}
173
- ]
174
- },
175
- "GetComplianceDetailsByResource":{
176
- "name":"GetComplianceDetailsByResource",
177
- "http":{
178
- "method":"POST",
179
- "requestUri":"/"
180
- },
181
- "input":{"shape":"GetComplianceDetailsByResourceRequest"},
182
- "output":{"shape":"GetComplianceDetailsByResourceResponse"},
183
- "errors":[
184
- {"shape":"InvalidParameterValueException"}
185
- ]
186
- },
187
- "GetComplianceSummaryByConfigRule":{
188
- "name":"GetComplianceSummaryByConfigRule",
189
- "http":{
190
- "method":"POST",
191
- "requestUri":"/"
192
- },
193
- "output":{"shape":"GetComplianceSummaryByConfigRuleResponse"}
194
- },
195
- "GetComplianceSummaryByResourceType":{
196
- "name":"GetComplianceSummaryByResourceType",
197
- "http":{
198
- "method":"POST",
199
- "requestUri":"/"
200
- },
201
- "input":{"shape":"GetComplianceSummaryByResourceTypeRequest"},
202
- "output":{"shape":"GetComplianceSummaryByResourceTypeResponse"},
203
- "errors":[
204
- {"shape":"InvalidParameterValueException"}
205
- ]
206
- },
207
- "GetResourceConfigHistory":{
208
- "name":"GetResourceConfigHistory",
209
- "http":{
210
- "method":"POST",
211
- "requestUri":"/"
212
- },
213
- "input":{"shape":"GetResourceConfigHistoryRequest"},
214
- "output":{"shape":"GetResourceConfigHistoryResponse"},
215
- "errors":[
216
- {"shape":"ValidationException"},
217
- {"shape":"InvalidTimeRangeException"},
218
- {"shape":"InvalidLimitException"},
219
- {"shape":"InvalidNextTokenException"},
220
- {"shape":"NoAvailableConfigurationRecorderException"},
221
- {"shape":"ResourceNotDiscoveredException"}
222
- ]
223
- },
224
- "ListDiscoveredResources":{
225
- "name":"ListDiscoveredResources",
226
- "http":{
227
- "method":"POST",
228
- "requestUri":"/"
229
- },
230
- "input":{"shape":"ListDiscoveredResourcesRequest"},
231
- "output":{"shape":"ListDiscoveredResourcesResponse"},
232
- "errors":[
233
- {"shape":"ValidationException"},
234
- {"shape":"InvalidLimitException"},
235
- {"shape":"InvalidNextTokenException"},
236
- {"shape":"NoAvailableConfigurationRecorderException"}
237
- ]
238
- },
239
- "PutConfigRule":{
240
- "name":"PutConfigRule",
241
- "http":{
242
- "method":"POST",
243
- "requestUri":"/"
244
- },
245
- "input":{"shape":"PutConfigRuleRequest"},
246
- "errors":[
247
- {"shape":"InvalidParameterValueException"},
248
- {"shape":"MaxNumberOfConfigRulesExceededException"},
249
- {"shape":"ResourceInUseException"},
250
- {"shape":"InsufficientPermissionsException"},
251
- {"shape":"NoAvailableConfigurationRecorderException"}
252
- ]
253
- },
254
- "PutConfigurationRecorder":{
255
- "name":"PutConfigurationRecorder",
256
- "http":{
257
- "method":"POST",
258
- "requestUri":"/"
259
- },
260
- "input":{"shape":"PutConfigurationRecorderRequest"},
261
- "errors":[
262
- {"shape":"MaxNumberOfConfigurationRecordersExceededException"},
263
- {"shape":"InvalidConfigurationRecorderNameException"},
264
- {"shape":"InvalidRoleException"},
265
- {"shape":"InvalidRecordingGroupException"}
266
- ]
267
- },
268
- "PutDeliveryChannel":{
269
- "name":"PutDeliveryChannel",
270
- "http":{
271
- "method":"POST",
272
- "requestUri":"/"
273
- },
274
- "input":{"shape":"PutDeliveryChannelRequest"},
275
- "errors":[
276
- {"shape":"MaxNumberOfDeliveryChannelsExceededException"},
277
- {"shape":"NoAvailableConfigurationRecorderException"},
278
- {"shape":"InvalidDeliveryChannelNameException"},
279
- {"shape":"NoSuchBucketException"},
280
- {"shape":"InvalidS3KeyPrefixException"},
281
- {"shape":"InvalidSNSTopicARNException"},
282
- {"shape":"InsufficientDeliveryPolicyException"}
283
- ]
284
- },
285
- "PutEvaluations":{
286
- "name":"PutEvaluations",
287
- "http":{
288
- "method":"POST",
289
- "requestUri":"/"
290
- },
291
- "input":{"shape":"PutEvaluationsRequest"},
292
- "output":{"shape":"PutEvaluationsResponse"},
293
- "errors":[
294
- {"shape":"InvalidParameterValueException"},
295
- {"shape":"InvalidResultTokenException"},
296
- {"shape":"NoSuchConfigRuleException"}
297
- ]
298
- },
299
- "StartConfigurationRecorder":{
300
- "name":"StartConfigurationRecorder",
301
- "http":{
302
- "method":"POST",
303
- "requestUri":"/"
304
- },
305
- "input":{"shape":"StartConfigurationRecorderRequest"},
306
- "errors":[
307
- {"shape":"NoSuchConfigurationRecorderException"},
308
- {"shape":"NoAvailableDeliveryChannelException"}
309
- ]
310
- },
311
- "StopConfigurationRecorder":{
312
- "name":"StopConfigurationRecorder",
313
- "http":{
314
- "method":"POST",
315
- "requestUri":"/"
316
- },
317
- "input":{"shape":"StopConfigurationRecorderRequest"},
318
- "errors":[
319
- {"shape":"NoSuchConfigurationRecorderException"}
320
- ]
321
- }
322
- },
323
- "shapes":{
324
- "ARN":{"type":"string"},
325
- "AccountId":{"type":"string"},
326
- "AllSupported":{"type":"boolean"},
327
- "AvailabilityZone":{"type":"string"},
328
- "AwsRegion":{"type":"string"},
329
- "Boolean":{"type":"boolean"},
330
- "ChannelName":{
331
- "type":"string",
332
- "max":256,
333
- "min":1
334
- },
335
- "ChronologicalOrder":{
336
- "type":"string",
337
- "enum":[
338
- "Reverse",
339
- "Forward"
340
- ]
341
- },
342
- "Compliance":{
343
- "type":"structure",
344
- "members":{
345
- "ComplianceType":{"shape":"ComplianceType"},
346
- "ComplianceContributorCount":{"shape":"ComplianceContributorCount"}
347
- }
348
- },
349
- "ComplianceByConfigRule":{
350
- "type":"structure",
351
- "members":{
352
- "ConfigRuleName":{"shape":"StringWithCharLimit64"},
353
- "Compliance":{"shape":"Compliance"}
354
- }
355
- },
356
- "ComplianceByConfigRules":{
357
- "type":"list",
358
- "member":{"shape":"ComplianceByConfigRule"}
359
- },
360
- "ComplianceByResource":{
361
- "type":"structure",
362
- "members":{
363
- "ResourceType":{"shape":"StringWithCharLimit256"},
364
- "ResourceId":{"shape":"StringWithCharLimit256"},
365
- "Compliance":{"shape":"Compliance"}
366
- }
367
- },
368
- "ComplianceByResources":{
369
- "type":"list",
370
- "member":{"shape":"ComplianceByResource"}
371
- },
372
- "ComplianceContributorCount":{
373
- "type":"structure",
374
- "members":{
375
- "CappedCount":{"shape":"Integer"},
376
- "CapExceeded":{"shape":"Boolean"}
377
- }
378
- },
379
- "ComplianceResourceTypes":{
380
- "type":"list",
381
- "member":{"shape":"StringWithCharLimit256"},
382
- "max":100,
383
- "min":0
384
- },
385
- "ComplianceSummariesByResourceType":{
386
- "type":"list",
387
- "member":{"shape":"ComplianceSummaryByResourceType"}
388
- },
389
- "ComplianceSummary":{
390
- "type":"structure",
391
- "members":{
392
- "CompliantResourceCount":{"shape":"ComplianceContributorCount"},
393
- "NonCompliantResourceCount":{"shape":"ComplianceContributorCount"},
394
- "ComplianceSummaryTimestamp":{"shape":"Date"}
395
- }
396
- },
397
- "ComplianceSummaryByResourceType":{
398
- "type":"structure",
399
- "members":{
400
- "ResourceType":{"shape":"StringWithCharLimit256"},
401
- "ComplianceSummary":{"shape":"ComplianceSummary"}
402
- }
403
- },
404
- "ComplianceType":{
405
- "type":"string",
406
- "enum":[
407
- "COMPLIANT",
408
- "NON_COMPLIANT",
409
- "NOT_APPLICABLE",
410
- "INSUFFICIENT_DATA"
411
- ]
412
- },
413
- "ComplianceTypes":{
414
- "type":"list",
415
- "member":{"shape":"ComplianceType"},
416
- "max":3,
417
- "min":0
418
- },
419
- "ConfigExportDeliveryInfo":{
420
- "type":"structure",
421
- "members":{
422
- "lastStatus":{"shape":"DeliveryStatus"},
423
- "lastErrorCode":{"shape":"String"},
424
- "lastErrorMessage":{"shape":"String"},
425
- "lastAttemptTime":{"shape":"Date"},
426
- "lastSuccessfulTime":{"shape":"Date"},
427
- "nextDeliveryTime":{"shape":"Date"}
428
- }
429
- },
430
- "ConfigRule":{
431
- "type":"structure",
432
- "required":["Source"],
433
- "members":{
434
- "ConfigRuleName":{"shape":"StringWithCharLimit64"},
435
- "ConfigRuleArn":{"shape":"String"},
436
- "ConfigRuleId":{"shape":"String"},
437
- "Description":{"shape":"EmptiableStringWithCharLimit256"},
438
- "Scope":{"shape":"Scope"},
439
- "Source":{"shape":"Source"},
440
- "InputParameters":{"shape":"StringWithCharLimit256"},
441
- "MaximumExecutionFrequency":{"shape":"MaximumExecutionFrequency"},
442
- "ConfigRuleState":{"shape":"ConfigRuleState"}
443
- }
444
- },
445
- "ConfigRuleEvaluationStatus":{
446
- "type":"structure",
447
- "members":{
448
- "ConfigRuleName":{"shape":"StringWithCharLimit64"},
449
- "ConfigRuleArn":{"shape":"String"},
450
- "ConfigRuleId":{"shape":"String"},
451
- "LastSuccessfulInvocationTime":{"shape":"Date"},
452
- "LastFailedInvocationTime":{"shape":"Date"},
453
- "LastSuccessfulEvaluationTime":{"shape":"Date"},
454
- "LastFailedEvaluationTime":{"shape":"Date"},
455
- "FirstActivatedTime":{"shape":"Date"},
456
- "LastErrorCode":{"shape":"String"},
457
- "LastErrorMessage":{"shape":"String"},
458
- "FirstEvaluationStarted":{"shape":"Boolean"}
459
- }
460
- },
461
- "ConfigRuleEvaluationStatusList":{
462
- "type":"list",
463
- "member":{"shape":"ConfigRuleEvaluationStatus"}
464
- },
465
- "ConfigRuleNames":{
466
- "type":"list",
467
- "member":{"shape":"StringWithCharLimit64"},
468
- "max":25,
469
- "min":0
470
- },
471
- "ConfigRuleState":{
472
- "type":"string",
473
- "enum":[
474
- "ACTIVE",
475
- "DELETING"
476
- ]
477
- },
478
- "ConfigRules":{
479
- "type":"list",
480
- "member":{"shape":"ConfigRule"}
481
- },
482
- "ConfigSnapshotDeliveryProperties":{
483
- "type":"structure",
484
- "members":{
485
- "deliveryFrequency":{"shape":"MaximumExecutionFrequency"}
486
- }
487
- },
488
- "ConfigStreamDeliveryInfo":{
489
- "type":"structure",
490
- "members":{
491
- "lastStatus":{"shape":"DeliveryStatus"},
492
- "lastErrorCode":{"shape":"String"},
493
- "lastErrorMessage":{"shape":"String"},
494
- "lastStatusChangeTime":{"shape":"Date"}
495
- }
496
- },
497
- "Configuration":{"type":"string"},
498
- "ConfigurationItem":{
499
- "type":"structure",
500
- "members":{
501
- "version":{"shape":"Version"},
502
- "accountId":{"shape":"AccountId"},
503
- "configurationItemCaptureTime":{"shape":"ConfigurationItemCaptureTime"},
504
- "configurationItemStatus":{"shape":"ConfigurationItemStatus"},
505
- "configurationStateId":{"shape":"ConfigurationStateId"},
506
- "configurationItemMD5Hash":{"shape":"ConfigurationItemMD5Hash"},
507
- "arn":{"shape":"ARN"},
508
- "resourceType":{"shape":"ResourceType"},
509
- "resourceId":{"shape":"ResourceId"},
510
- "resourceName":{"shape":"ResourceName"},
511
- "awsRegion":{"shape":"AwsRegion"},
512
- "availabilityZone":{"shape":"AvailabilityZone"},
513
- "resourceCreationTime":{"shape":"ResourceCreationTime"},
514
- "tags":{"shape":"Tags"},
515
- "relatedEvents":{"shape":"RelatedEventList"},
516
- "relationships":{"shape":"RelationshipList"},
517
- "configuration":{"shape":"Configuration"}
518
- }
519
- },
520
- "ConfigurationItemCaptureTime":{"type":"timestamp"},
521
- "ConfigurationItemList":{
522
- "type":"list",
523
- "member":{"shape":"ConfigurationItem"}
524
- },
525
- "ConfigurationItemMD5Hash":{"type":"string"},
526
- "ConfigurationItemStatus":{
527
- "type":"string",
528
- "enum":[
529
- "Ok",
530
- "Failed",
531
- "Discovered",
532
- "Deleted"
533
- ]
534
- },
535
- "ConfigurationRecorder":{
536
- "type":"structure",
537
- "members":{
538
- "name":{"shape":"RecorderName"},
539
- "roleARN":{"shape":"String"},
540
- "recordingGroup":{"shape":"RecordingGroup"}
541
- }
542
- },
543
- "ConfigurationRecorderList":{
544
- "type":"list",
545
- "member":{"shape":"ConfigurationRecorder"}
546
- },
547
- "ConfigurationRecorderNameList":{
548
- "type":"list",
549
- "member":{"shape":"RecorderName"}
550
- },
551
- "ConfigurationRecorderStatus":{
552
- "type":"structure",
553
- "members":{
554
- "name":{"shape":"String"},
555
- "lastStartTime":{"shape":"Date"},
556
- "lastStopTime":{"shape":"Date"},
557
- "recording":{"shape":"Boolean"},
558
- "lastStatus":{"shape":"RecorderStatus"},
559
- "lastErrorCode":{"shape":"String"},
560
- "lastErrorMessage":{"shape":"String"},
561
- "lastStatusChangeTime":{"shape":"Date"}
562
- }
563
- },
564
- "ConfigurationRecorderStatusList":{
565
- "type":"list",
566
- "member":{"shape":"ConfigurationRecorderStatus"}
567
- },
568
- "ConfigurationStateId":{"type":"string"},
569
- "Date":{"type":"timestamp"},
570
- "DeleteConfigRuleRequest":{
571
- "type":"structure",
572
- "required":["ConfigRuleName"],
573
- "members":{
574
- "ConfigRuleName":{"shape":"StringWithCharLimit64"}
575
- }
576
- },
577
- "DeleteConfigurationRecorderRequest":{
578
- "type":"structure",
579
- "required":["ConfigurationRecorderName"],
580
- "members":{
581
- "ConfigurationRecorderName":{"shape":"RecorderName"}
582
- }
583
- },
584
- "DeleteDeliveryChannelRequest":{
585
- "type":"structure",
586
- "required":["DeliveryChannelName"],
587
- "members":{
588
- "DeliveryChannelName":{"shape":"ChannelName"}
589
- }
590
- },
591
- "DeliverConfigSnapshotRequest":{
592
- "type":"structure",
593
- "required":["deliveryChannelName"],
594
- "members":{
595
- "deliveryChannelName":{"shape":"ChannelName"}
596
- }
597
- },
598
- "DeliverConfigSnapshotResponse":{
599
- "type":"structure",
600
- "members":{
601
- "configSnapshotId":{"shape":"String"}
602
- }
603
- },
604
- "DeliveryChannel":{
605
- "type":"structure",
606
- "members":{
607
- "name":{"shape":"ChannelName"},
608
- "s3BucketName":{"shape":"String"},
609
- "s3KeyPrefix":{"shape":"String"},
610
- "snsTopicARN":{"shape":"String"},
611
- "configSnapshotDeliveryProperties":{"shape":"ConfigSnapshotDeliveryProperties"}
612
- }
613
- },
614
- "DeliveryChannelList":{
615
- "type":"list",
616
- "member":{"shape":"DeliveryChannel"}
617
- },
618
- "DeliveryChannelNameList":{
619
- "type":"list",
620
- "member":{"shape":"ChannelName"}
621
- },
622
- "DeliveryChannelStatus":{
623
- "type":"structure",
624
- "members":{
625
- "name":{"shape":"String"},
626
- "configSnapshotDeliveryInfo":{"shape":"ConfigExportDeliveryInfo"},
627
- "configHistoryDeliveryInfo":{"shape":"ConfigExportDeliveryInfo"},
628
- "configStreamDeliveryInfo":{"shape":"ConfigStreamDeliveryInfo"}
629
- }
630
- },
631
- "DeliveryChannelStatusList":{
632
- "type":"list",
633
- "member":{"shape":"DeliveryChannelStatus"}
634
- },
635
- "DeliveryStatus":{
636
- "type":"string",
637
- "enum":[
638
- "Success",
639
- "Failure",
640
- "Not_Applicable"
641
- ]
642
- },
643
- "DescribeComplianceByConfigRuleRequest":{
644
- "type":"structure",
645
- "members":{
646
- "ConfigRuleNames":{"shape":"ConfigRuleNames"},
647
- "ComplianceTypes":{"shape":"ComplianceTypes"},
648
- "NextToken":{"shape":"String"}
649
- }
650
- },
651
- "DescribeComplianceByConfigRuleResponse":{
652
- "type":"structure",
653
- "members":{
654
- "ComplianceByConfigRules":{"shape":"ComplianceByConfigRules"},
655
- "NextToken":{"shape":"String"}
656
- }
657
- },
658
- "DescribeComplianceByResourceRequest":{
659
- "type":"structure",
660
- "members":{
661
- "ResourceType":{"shape":"StringWithCharLimit256"},
662
- "ResourceId":{"shape":"StringWithCharLimit256"},
663
- "ComplianceTypes":{"shape":"ComplianceTypes"},
664
- "Limit":{"shape":"Limit"},
665
- "NextToken":{"shape":"NextToken"}
666
- }
667
- },
668
- "DescribeComplianceByResourceResponse":{
669
- "type":"structure",
670
- "members":{
671
- "ComplianceByResources":{"shape":"ComplianceByResources"},
672
- "NextToken":{"shape":"NextToken"}
673
- }
674
- },
675
- "DescribeConfigRuleEvaluationStatusRequest":{
676
- "type":"structure",
677
- "members":{
678
- "ConfigRuleNames":{"shape":"ConfigRuleNames"}
679
- }
680
- },
681
- "DescribeConfigRuleEvaluationStatusResponse":{
682
- "type":"structure",
683
- "members":{
684
- "ConfigRulesEvaluationStatus":{"shape":"ConfigRuleEvaluationStatusList"}
685
- }
686
- },
687
- "DescribeConfigRulesRequest":{
688
- "type":"structure",
689
- "members":{
690
- "ConfigRuleNames":{"shape":"ConfigRuleNames"},
691
- "NextToken":{"shape":"String"}
692
- }
693
- },
694
- "DescribeConfigRulesResponse":{
695
- "type":"structure",
696
- "members":{
697
- "ConfigRules":{"shape":"ConfigRules"},
698
- "NextToken":{"shape":"String"}
699
- }
700
- },
701
- "DescribeConfigurationRecorderStatusRequest":{
702
- "type":"structure",
703
- "members":{
704
- "ConfigurationRecorderNames":{"shape":"ConfigurationRecorderNameList"}
705
- }
706
- },
707
- "DescribeConfigurationRecorderStatusResponse":{
708
- "type":"structure",
709
- "members":{
710
- "ConfigurationRecordersStatus":{"shape":"ConfigurationRecorderStatusList"}
711
- }
712
- },
713
- "DescribeConfigurationRecordersRequest":{
714
- "type":"structure",
715
- "members":{
716
- "ConfigurationRecorderNames":{"shape":"ConfigurationRecorderNameList"}
717
- }
718
- },
719
- "DescribeConfigurationRecordersResponse":{
720
- "type":"structure",
721
- "members":{
722
- "ConfigurationRecorders":{"shape":"ConfigurationRecorderList"}
723
- }
724
- },
725
- "DescribeDeliveryChannelStatusRequest":{
726
- "type":"structure",
727
- "members":{
728
- "DeliveryChannelNames":{"shape":"DeliveryChannelNameList"}
729
- }
730
- },
731
- "DescribeDeliveryChannelStatusResponse":{
732
- "type":"structure",
733
- "members":{
734
- "DeliveryChannelsStatus":{"shape":"DeliveryChannelStatusList"}
735
- }
736
- },
737
- "DescribeDeliveryChannelsRequest":{
738
- "type":"structure",
739
- "members":{
740
- "DeliveryChannelNames":{"shape":"DeliveryChannelNameList"}
741
- }
742
- },
743
- "DescribeDeliveryChannelsResponse":{
744
- "type":"structure",
745
- "members":{
746
- "DeliveryChannels":{"shape":"DeliveryChannelList"}
747
- }
748
- },
749
- "EarlierTime":{"type":"timestamp"},
750
- "EmptiableStringWithCharLimit256":{
751
- "type":"string",
752
- "max":256,
753
- "min":0
754
- },
755
- "Evaluation":{
756
- "type":"structure",
757
- "required":[
758
- "ComplianceResourceType",
759
- "ComplianceResourceId",
760
- "ComplianceType",
761
- "OrderingTimestamp"
762
- ],
763
- "members":{
764
- "ComplianceResourceType":{"shape":"StringWithCharLimit256"},
765
- "ComplianceResourceId":{"shape":"StringWithCharLimit256"},
766
- "ComplianceType":{"shape":"ComplianceType"},
767
- "Annotation":{"shape":"StringWithCharLimit256"},
768
- "OrderingTimestamp":{"shape":"OrderingTimestamp"}
769
- }
770
- },
771
- "EvaluationResult":{
772
- "type":"structure",
773
- "members":{
774
- "EvaluationResultIdentifier":{"shape":"EvaluationResultIdentifier"},
775
- "ComplianceType":{"shape":"ComplianceType"},
776
- "ResultRecordedTime":{"shape":"Date"},
777
- "ConfigRuleInvokedTime":{"shape":"Date"},
778
- "Annotation":{"shape":"StringWithCharLimit256"},
779
- "ResultToken":{"shape":"String"}
780
- }
781
- },
782
- "EvaluationResultIdentifier":{
783
- "type":"structure",
784
- "members":{
785
- "EvaluationResultQualifier":{"shape":"EvaluationResultQualifier"},
786
- "OrderingTimestamp":{"shape":"Date"}
787
- }
788
- },
789
- "EvaluationResultQualifier":{
790
- "type":"structure",
791
- "members":{
792
- "ConfigRuleName":{"shape":"StringWithCharLimit64"},
793
- "ResourceType":{"shape":"StringWithCharLimit256"},
794
- "ResourceId":{"shape":"StringWithCharLimit256"}
795
- }
796
- },
797
- "EvaluationResults":{
798
- "type":"list",
799
- "member":{"shape":"EvaluationResult"}
800
- },
801
- "Evaluations":{
802
- "type":"list",
803
- "member":{"shape":"Evaluation"},
804
- "max":100,
805
- "min":0
806
- },
807
- "EventSource":{
808
- "type":"string",
809
- "enum":["aws.config"]
810
- },
811
- "GetComplianceDetailsByConfigRuleRequest":{
812
- "type":"structure",
813
- "required":["ConfigRuleName"],
814
- "members":{
815
- "ConfigRuleName":{"shape":"StringWithCharLimit64"},
816
- "ComplianceTypes":{"shape":"ComplianceTypes"},
817
- "Limit":{"shape":"Limit"},
818
- "NextToken":{"shape":"NextToken"}
819
- }
820
- },
821
- "GetComplianceDetailsByConfigRuleResponse":{
822
- "type":"structure",
823
- "members":{
824
- "EvaluationResults":{"shape":"EvaluationResults"},
825
- "NextToken":{"shape":"NextToken"}
826
- }
827
- },
828
- "GetComplianceDetailsByResourceRequest":{
829
- "type":"structure",
830
- "required":[
831
- "ResourceType",
832
- "ResourceId"
833
- ],
834
- "members":{
835
- "ResourceType":{"shape":"StringWithCharLimit256"},
836
- "ResourceId":{"shape":"StringWithCharLimit256"},
837
- "ComplianceTypes":{"shape":"ComplianceTypes"},
838
- "NextToken":{"shape":"String"}
839
- }
840
- },
841
- "GetComplianceDetailsByResourceResponse":{
842
- "type":"structure",
843
- "members":{
844
- "EvaluationResults":{"shape":"EvaluationResults"},
845
- "NextToken":{"shape":"String"}
846
- }
847
- },
848
- "GetComplianceSummaryByConfigRuleResponse":{
849
- "type":"structure",
850
- "members":{
851
- "ComplianceSummary":{"shape":"ComplianceSummary"}
852
- }
853
- },
854
- "GetComplianceSummaryByResourceTypeRequest":{
855
- "type":"structure",
856
- "members":{
857
- "ResourceTypes":{"shape":"ResourceTypes"}
858
- }
859
- },
860
- "GetComplianceSummaryByResourceTypeResponse":{
861
- "type":"structure",
862
- "members":{
863
- "ComplianceSummariesByResourceType":{"shape":"ComplianceSummariesByResourceType"}
864
- }
865
- },
866
- "GetResourceConfigHistoryRequest":{
867
- "type":"structure",
868
- "required":[
869
- "resourceType",
870
- "resourceId"
871
- ],
872
- "members":{
873
- "resourceType":{"shape":"ResourceType"},
874
- "resourceId":{"shape":"ResourceId"},
875
- "laterTime":{"shape":"LaterTime"},
876
- "earlierTime":{"shape":"EarlierTime"},
877
- "chronologicalOrder":{"shape":"ChronologicalOrder"},
878
- "limit":{"shape":"Limit"},
879
- "nextToken":{"shape":"NextToken"}
880
- }
881
- },
882
- "GetResourceConfigHistoryResponse":{
883
- "type":"structure",
884
- "members":{
885
- "configurationItems":{"shape":"ConfigurationItemList"},
886
- "nextToken":{"shape":"NextToken"}
887
- }
888
- },
889
- "IncludeGlobalResourceTypes":{"type":"boolean"},
890
- "InsufficientDeliveryPolicyException":{
891
- "type":"structure",
892
- "members":{
893
- },
894
- "exception":true
895
- },
896
- "InsufficientPermissionsException":{
897
- "type":"structure",
898
- "members":{
899
- },
900
- "exception":true
901
- },
902
- "Integer":{"type":"integer"},
903
- "InvalidConfigurationRecorderNameException":{
904
- "type":"structure",
905
- "members":{
906
- },
907
- "exception":true
908
- },
909
- "InvalidDeliveryChannelNameException":{
910
- "type":"structure",
911
- "members":{
912
- },
913
- "exception":true
914
- },
915
- "InvalidLimitException":{
916
- "type":"structure",
917
- "members":{
918
- },
919
- "exception":true
920
- },
921
- "InvalidNextTokenException":{
922
- "type":"structure",
923
- "members":{
924
- },
925
- "exception":true
926
- },
927
- "InvalidParameterValueException":{
928
- "type":"structure",
929
- "members":{
930
- },
931
- "exception":true
932
- },
933
- "InvalidRecordingGroupException":{
934
- "type":"structure",
935
- "members":{
936
- },
937
- "exception":true
938
- },
939
- "InvalidResultTokenException":{
940
- "type":"structure",
941
- "members":{
942
- },
943
- "exception":true
944
- },
945
- "InvalidRoleException":{
946
- "type":"structure",
947
- "members":{
948
- },
949
- "exception":true
950
- },
951
- "InvalidS3KeyPrefixException":{
952
- "type":"structure",
953
- "members":{
954
- },
955
- "exception":true
956
- },
957
- "InvalidSNSTopicARNException":{
958
- "type":"structure",
959
- "members":{
960
- },
961
- "exception":true
962
- },
963
- "InvalidTimeRangeException":{
964
- "type":"structure",
965
- "members":{
966
- },
967
- "exception":true
968
- },
969
- "LastDeliveryChannelDeleteFailedException":{
970
- "type":"structure",
971
- "members":{
972
- },
973
- "exception":true
974
- },
975
- "LaterTime":{"type":"timestamp"},
976
- "Limit":{
977
- "type":"integer",
978
- "max":100,
979
- "min":0
980
- },
981
- "ListDiscoveredResourcesRequest":{
982
- "type":"structure",
983
- "required":["resourceType"],
984
- "members":{
985
- "resourceType":{"shape":"ResourceType"},
986
- "resourceIds":{"shape":"ResourceIdList"},
987
- "resourceName":{"shape":"ResourceName"},
988
- "limit":{"shape":"Limit"},
989
- "includeDeletedResources":{"shape":"Boolean"},
990
- "nextToken":{"shape":"NextToken"}
991
- }
992
- },
993
- "ListDiscoveredResourcesResponse":{
994
- "type":"structure",
995
- "members":{
996
- "resourceIdentifiers":{"shape":"ResourceIdentifierList"},
997
- "nextToken":{"shape":"NextToken"}
998
- }
999
- },
1000
- "MaxNumberOfConfigRulesExceededException":{
1001
- "type":"structure",
1002
- "members":{
1003
- },
1004
- "exception":true
1005
- },
1006
- "MaxNumberOfConfigurationRecordersExceededException":{
1007
- "type":"structure",
1008
- "members":{
1009
- },
1010
- "exception":true
1011
- },
1012
- "MaxNumberOfDeliveryChannelsExceededException":{
1013
- "type":"structure",
1014
- "members":{
1015
- },
1016
- "exception":true
1017
- },
1018
- "MaximumExecutionFrequency":{
1019
- "type":"string",
1020
- "enum":[
1021
- "One_Hour",
1022
- "Three_Hours",
1023
- "Six_Hours",
1024
- "Twelve_Hours",
1025
- "TwentyFour_Hours"
1026
- ]
1027
- },
1028
- "MessageType":{
1029
- "type":"string",
1030
- "enum":[
1031
- "ConfigurationItemChangeNotification",
1032
- "ConfigurationSnapshotDeliveryCompleted"
1033
- ]
1034
- },
1035
- "Name":{"type":"string"},
1036
- "NextToken":{"type":"string"},
1037
- "NoAvailableConfigurationRecorderException":{
1038
- "type":"structure",
1039
- "members":{
1040
- },
1041
- "exception":true
1042
- },
1043
- "NoAvailableDeliveryChannelException":{
1044
- "type":"structure",
1045
- "members":{
1046
- },
1047
- "exception":true
1048
- },
1049
- "NoRunningConfigurationRecorderException":{
1050
- "type":"structure",
1051
- "members":{
1052
- },
1053
- "exception":true
1054
- },
1055
- "NoSuchBucketException":{
1056
- "type":"structure",
1057
- "members":{
1058
- },
1059
- "exception":true
1060
- },
1061
- "NoSuchConfigRuleException":{
1062
- "type":"structure",
1063
- "members":{
1064
- },
1065
- "exception":true
1066
- },
1067
- "NoSuchConfigurationRecorderException":{
1068
- "type":"structure",
1069
- "members":{
1070
- },
1071
- "exception":true
1072
- },
1073
- "NoSuchDeliveryChannelException":{
1074
- "type":"structure",
1075
- "members":{
1076
- },
1077
- "exception":true
1078
- },
1079
- "OrderingTimestamp":{"type":"timestamp"},
1080
- "Owner":{
1081
- "type":"string",
1082
- "enum":[
1083
- "CUSTOM_LAMBDA",
1084
- "AWS"
1085
- ]
1086
- },
1087
- "PutConfigRuleRequest":{
1088
- "type":"structure",
1089
- "required":["ConfigRule"],
1090
- "members":{
1091
- "ConfigRule":{"shape":"ConfigRule"}
1092
- }
1093
- },
1094
- "PutConfigurationRecorderRequest":{
1095
- "type":"structure",
1096
- "required":["ConfigurationRecorder"],
1097
- "members":{
1098
- "ConfigurationRecorder":{"shape":"ConfigurationRecorder"}
1099
- }
1100
- },
1101
- "PutDeliveryChannelRequest":{
1102
- "type":"structure",
1103
- "required":["DeliveryChannel"],
1104
- "members":{
1105
- "DeliveryChannel":{"shape":"DeliveryChannel"}
1106
- }
1107
- },
1108
- "PutEvaluationsRequest":{
1109
- "type":"structure",
1110
- "required":["ResultToken"],
1111
- "members":{
1112
- "Evaluations":{"shape":"Evaluations"},
1113
- "ResultToken":{"shape":"String"}
1114
- }
1115
- },
1116
- "PutEvaluationsResponse":{
1117
- "type":"structure",
1118
- "members":{
1119
- "FailedEvaluations":{"shape":"Evaluations"}
1120
- }
1121
- },
1122
- "RecorderName":{
1123
- "type":"string",
1124
- "max":256,
1125
- "min":1
1126
- },
1127
- "RecorderStatus":{
1128
- "type":"string",
1129
- "enum":[
1130
- "Pending",
1131
- "Success",
1132
- "Failure"
1133
- ]
1134
- },
1135
- "RecordingGroup":{
1136
- "type":"structure",
1137
- "members":{
1138
- "allSupported":{"shape":"AllSupported"},
1139
- "includeGlobalResourceTypes":{"shape":"IncludeGlobalResourceTypes"},
1140
- "resourceTypes":{"shape":"ResourceTypeList"}
1141
- }
1142
- },
1143
- "RelatedEvent":{"type":"string"},
1144
- "RelatedEventList":{
1145
- "type":"list",
1146
- "member":{"shape":"RelatedEvent"}
1147
- },
1148
- "Relationship":{
1149
- "type":"structure",
1150
- "members":{
1151
- "resourceType":{"shape":"ResourceType"},
1152
- "resourceId":{"shape":"ResourceId"},
1153
- "resourceName":{"shape":"ResourceName"},
1154
- "relationshipName":{"shape":"RelationshipName"}
1155
- }
1156
- },
1157
- "RelationshipList":{
1158
- "type":"list",
1159
- "member":{"shape":"Relationship"}
1160
- },
1161
- "RelationshipName":{"type":"string"},
1162
- "ResourceCreationTime":{"type":"timestamp"},
1163
- "ResourceDeletionTime":{"type":"timestamp"},
1164
- "ResourceId":{"type":"string"},
1165
- "ResourceIdList":{
1166
- "type":"list",
1167
- "member":{"shape":"ResourceId"}
1168
- },
1169
- "ResourceIdentifier":{
1170
- "type":"structure",
1171
- "members":{
1172
- "resourceType":{"shape":"ResourceType"},
1173
- "resourceId":{"shape":"ResourceId"},
1174
- "resourceName":{"shape":"ResourceName"},
1175
- "resourceDeletionTime":{"shape":"ResourceDeletionTime"}
1176
- }
1177
- },
1178
- "ResourceIdentifierList":{
1179
- "type":"list",
1180
- "member":{"shape":"ResourceIdentifier"}
1181
- },
1182
- "ResourceInUseException":{
1183
- "type":"structure",
1184
- "members":{
1185
- },
1186
- "exception":true
1187
- },
1188
- "ResourceName":{"type":"string"},
1189
- "ResourceNotDiscoveredException":{
1190
- "type":"structure",
1191
- "members":{
1192
- },
1193
- "exception":true
1194
- },
1195
- "ResourceType":{
1196
- "type":"string",
1197
- "enum":[
1198
- "AWS::EC2::CustomerGateway",
1199
- "AWS::EC2::EIP",
1200
- "AWS::EC2::Host",
1201
- "AWS::EC2::Instance",
1202
- "AWS::EC2::InternetGateway",
1203
- "AWS::EC2::NetworkAcl",
1204
- "AWS::EC2::NetworkInterface",
1205
- "AWS::EC2::RouteTable",
1206
- "AWS::EC2::SecurityGroup",
1207
- "AWS::EC2::Subnet",
1208
- "AWS::CloudTrail::Trail",
1209
- "AWS::EC2::Volume",
1210
- "AWS::EC2::VPC",
1211
- "AWS::EC2::VPNConnection",
1212
- "AWS::EC2::VPNGateway",
1213
- "AWS::IAM::Group",
1214
- "AWS::IAM::Policy",
1215
- "AWS::IAM::Role",
1216
- "AWS::IAM::User"
1217
- ]
1218
- },
1219
- "ResourceTypeList":{
1220
- "type":"list",
1221
- "member":{"shape":"ResourceType"}
1222
- },
1223
- "ResourceTypes":{
1224
- "type":"list",
1225
- "member":{"shape":"StringWithCharLimit256"},
1226
- "max":20,
1227
- "min":0
1228
- },
1229
- "Scope":{
1230
- "type":"structure",
1231
- "members":{
1232
- "ComplianceResourceTypes":{"shape":"ComplianceResourceTypes"},
1233
- "TagKey":{"shape":"StringWithCharLimit128"},
1234
- "TagValue":{"shape":"StringWithCharLimit256"},
1235
- "ComplianceResourceId":{"shape":"StringWithCharLimit256"}
1236
- }
1237
- },
1238
- "Source":{
1239
- "type":"structure",
1240
- "members":{
1241
- "Owner":{"shape":"Owner"},
1242
- "SourceIdentifier":{"shape":"StringWithCharLimit256"},
1243
- "SourceDetails":{"shape":"SourceDetails"}
1244
- }
1245
- },
1246
- "SourceDetail":{
1247
- "type":"structure",
1248
- "members":{
1249
- "EventSource":{"shape":"EventSource"},
1250
- "MessageType":{"shape":"MessageType"}
1251
- }
1252
- },
1253
- "SourceDetails":{
1254
- "type":"list",
1255
- "member":{"shape":"SourceDetail"},
1256
- "max":25,
1257
- "min":0
1258
- },
1259
- "StartConfigurationRecorderRequest":{
1260
- "type":"structure",
1261
- "required":["ConfigurationRecorderName"],
1262
- "members":{
1263
- "ConfigurationRecorderName":{"shape":"RecorderName"}
1264
- }
1265
- },
1266
- "StopConfigurationRecorderRequest":{
1267
- "type":"structure",
1268
- "required":["ConfigurationRecorderName"],
1269
- "members":{
1270
- "ConfigurationRecorderName":{"shape":"RecorderName"}
1271
- }
1272
- },
1273
- "String":{"type":"string"},
1274
- "StringWithCharLimit128":{
1275
- "type":"string",
1276
- "max":128,
1277
- "min":1
1278
- },
1279
- "StringWithCharLimit256":{
1280
- "type":"string",
1281
- "max":256,
1282
- "min":1
1283
- },
1284
- "StringWithCharLimit64":{
1285
- "type":"string",
1286
- "max":64,
1287
- "min":1
1288
- },
1289
- "Tags":{
1290
- "type":"map",
1291
- "key":{"shape":"Name"},
1292
- "value":{"shape":"Value"}
1293
- },
1294
- "ValidationException":{
1295
- "type":"structure",
1296
- "members":{
1297
- },
1298
- "exception":true
1299
- },
1300
- "Value":{"type":"string"},
1301
- "Version":{"type":"string"}
1302
- }
1303
- }