aws-sdk-core 2.11.409 → 3.77.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1273) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -577
  4. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  5. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  6. data/lib/aws-sdk-core/binary.rb +6 -0
  7. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  8. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  9. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  10. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  11. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  12. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  13. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  14. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  15. data/lib/aws-sdk-core/client_stubs.rb +11 -8
  16. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  17. data/lib/aws-sdk-core/credential_provider_chain.rb +41 -14
  18. data/lib/aws-sdk-core/deprecations.rb +16 -10
  19. data/lib/aws-sdk-core/endpoint_cache.rb +14 -11
  20. data/lib/aws-sdk-core/errors.rb +123 -22
  21. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  22. data/lib/aws-sdk-core/ini_parser.rb +1 -0
  23. data/lib/aws-sdk-core/instance_profile_credentials.rb +6 -99
  24. data/lib/aws-sdk-core/json.rb +9 -10
  25. data/lib/aws-sdk-core/json/builder.rb +4 -2
  26. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  27. data/lib/aws-sdk-core/json/handler.rb +22 -3
  28. data/lib/aws-sdk-core/json/parser.rb +1 -1
  29. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  30. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  31. data/lib/aws-sdk-core/pager.rb +30 -25
  32. data/lib/aws-sdk-core/param_converter.rb +3 -3
  33. data/lib/aws-sdk-core/param_validator.rb +60 -26
  34. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  35. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  36. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  37. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  38. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  39. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  40. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  41. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +43 -50
  42. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +9 -8
  43. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  44. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  45. data/lib/aws-sdk-core/plugins/idempotency_token.rb +1 -2
  46. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  47. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  48. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  49. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  50. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  51. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  52. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  53. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  54. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +30 -17
  55. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  56. data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
  57. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  58. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  59. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  60. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  61. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  62. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  63. data/lib/aws-sdk-core/query.rb +5 -0
  64. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  65. data/lib/aws-sdk-core/query/handler.rb +20 -16
  66. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  67. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  68. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  69. data/lib/aws-sdk-core/rest.rb +10 -0
  70. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  71. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  72. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  73. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  74. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  75. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  76. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  77. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  78. data/lib/aws-sdk-core/shared_config.rb +187 -15
  79. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  80. data/lib/aws-sdk-core/structure.rb +22 -13
  81. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  82. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  83. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  88. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  89. data/lib/aws-sdk-core/util.rb +66 -0
  90. data/lib/aws-sdk-core/waiters.rb +3 -0
  91. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  92. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  93. data/lib/aws-sdk-core/xml.rb +9 -0
  94. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  95. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  96. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  97. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  98. data/lib/aws-sdk-sts.rb +45 -0
  99. data/lib/aws-sdk-sts/client.rb +1840 -0
  100. data/lib/aws-sdk-sts/client_api.rb +320 -0
  101. data/lib/aws-sdk-sts/customizations.rb +0 -0
  102. data/lib/aws-sdk-sts/errors.rb +142 -0
  103. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  104. data/lib/aws-sdk-sts/resource.rb +23 -0
  105. data/lib/aws-sdk-sts/types.rb +1312 -0
  106. data/lib/seahorse.rb +60 -60
  107. data/lib/seahorse/client/async_base.rb +50 -0
  108. data/lib/seahorse/client/async_response.rb +62 -0
  109. data/lib/seahorse/client/base.rb +5 -9
  110. data/lib/seahorse/client/configuration.rb +4 -2
  111. data/lib/seahorse/client/h2/connection.rb +244 -0
  112. data/lib/seahorse/client/h2/handler.rb +151 -0
  113. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  114. data/lib/seahorse/client/http/async_response.rb +42 -0
  115. data/lib/seahorse/client/http/response.rb +10 -5
  116. data/lib/seahorse/client/logging/formatter.rb +2 -0
  117. data/lib/seahorse/client/logging/handler.rb +2 -0
  118. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  119. data/lib/seahorse/client/net_http/handler.rb +5 -0
  120. data/lib/seahorse/client/net_http/patches.rb +9 -1
  121. data/lib/seahorse/client/networking_error.rb +28 -0
  122. data/lib/seahorse/client/plugin.rb +66 -6
  123. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  124. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  125. data/lib/seahorse/client/plugins/h2.rb +64 -0
  126. data/lib/seahorse/client/plugins/logging.rb +17 -19
  127. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  128. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  129. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  130. data/lib/seahorse/client/request_context.rb +5 -0
  131. data/lib/seahorse/model/api.rb +33 -0
  132. data/lib/seahorse/model/authorizer.rb +21 -0
  133. data/lib/seahorse/model/operation.rb +11 -0
  134. data/lib/seahorse/model/shapes.rb +44 -2
  135. data/lib/seahorse/util.rb +1 -22
  136. metadata +98 -1146
  137. data/apis/AWSMigrationHub/2017-05-31/api-2.json +0 -863
  138. data/apis/AWSMigrationHub/2017-05-31/examples-1.json +0 -5
  139. data/apis/AWSMigrationHub/2017-05-31/paginators-1.json +0 -28
  140. data/apis/accessanalyzer/2019-11-01/api-2.json +0 -1125
  141. data/apis/accessanalyzer/2019-11-01/examples-1.json +0 -5
  142. data/apis/accessanalyzer/2019-11-01/paginators-1.json +0 -24
  143. data/apis/acm-pca/2017-08-22/api-2.json +0 -1091
  144. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  145. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  146. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  147. data/apis/acm/2015-12-08/api-2.json +0 -872
  148. data/apis/acm/2015-12-08/examples-1.json +0 -5
  149. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  150. data/apis/acm/2015-12-08/smoke.json +0 -18
  151. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  152. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4129
  153. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  154. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  155. data/apis/amplify/2017-07-25/api-2.json +0 -2374
  156. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  157. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  158. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  159. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  160. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  161. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  162. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  163. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  164. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  165. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  166. data/apis/appconfig/2019-10-09/api-2.json +0 -1391
  167. data/apis/appconfig/2019-10-09/examples-1.json +0 -5
  168. data/apis/appconfig/2019-10-09/paginators-1.json +0 -29
  169. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -783
  170. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  171. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  172. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  173. data/apis/application-insights/2018-11-25/api-2.json +0 -1141
  174. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  175. data/apis/application-insights/2018-11-25/paginators-1.json +0 -29
  176. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  177. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  178. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  179. data/apis/appmesh/2019-01-25/api-2.json +0 -3424
  180. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  181. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  182. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  183. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  184. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  185. data/apis/appstream/2016-12-01/smoke.json +0 -11
  186. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  187. data/apis/appsync/2017-07-25/api-2.json +0 -2285
  188. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  189. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  190. data/apis/athena/2017-05-18/api-2.json +0 -989
  191. data/apis/athena/2017-05-18/examples-1.json +0 -5
  192. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  193. data/apis/athena/2017-05-18/smoke.json +0 -11
  194. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  195. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  196. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  197. data/apis/autoscaling/2011-01-01/api-2.json +0 -2464
  198. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  199. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  200. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  201. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  202. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  203. data/apis/backup/2018-11-15/api-2.json +0 -2150
  204. data/apis/backup/2018-11-15/examples-1.json +0 -5
  205. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  206. data/apis/batch/2016-08-10/api-2.json +0 -1137
  207. data/apis/batch/2016-08-10/examples-1.json +0 -589
  208. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  209. data/apis/batch/2016-08-10/smoke.json +0 -11
  210. data/apis/budgets/2016-10-20/api-2.json +0 -830
  211. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  212. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  213. data/apis/ce/2017-10-25/api-2.json +0 -1633
  214. data/apis/ce/2017-10-25/examples-1.json +0 -5
  215. data/apis/ce/2017-10-25/paginators-1.json +0 -14
  216. data/apis/chime/2018-05-01/api-2.json +0 -4483
  217. data/apis/chime/2018-05-01/examples-1.json +0 -5
  218. data/apis/chime/2018-05-01/paginators-1.json +0 -59
  219. data/apis/cloud9/2017-09-23/api-2.json +0 -549
  220. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  221. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  222. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  223. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  224. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  225. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  226. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  227. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  228. data/apis/cloudformation/2010-05-15/api-2.json +0 -3389
  229. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  230. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  231. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  232. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  233. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  234. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  235. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  236. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  237. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  238. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  239. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  240. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  241. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  242. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  243. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  244. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  245. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  246. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  247. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  248. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  249. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  250. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  251. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  252. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  253. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  254. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  255. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  256. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  257. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  258. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  259. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  260. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  261. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  262. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  263. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  264. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  265. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  266. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  267. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  268. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  269. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  270. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  271. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  272. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  273. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  274. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  275. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  276. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  277. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  278. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  279. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  280. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  281. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  282. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  283. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  284. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  285. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  286. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  287. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  288. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  289. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  290. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  291. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  292. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  293. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  294. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  295. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  296. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  297. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  298. data/apis/codebuild/2016-10-06/api-2.json +0 -1738
  299. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  300. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  301. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  302. data/apis/codecommit/2015-04-13/api-2.json +0 -5383
  303. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  304. data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
  305. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  306. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  307. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  308. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  309. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  310. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  311. data/apis/codeguru-reviewer/2019-09-19/api-2.json +0 -351
  312. data/apis/codeguru-reviewer/2019-09-19/examples-1.json +0 -5
  313. data/apis/codeguru-reviewer/2019-09-19/paginators-1.json +0 -10
  314. data/apis/codeguruprofiler/2019-07-18/api-2.json +0 -645
  315. data/apis/codeguruprofiler/2019-07-18/examples-1.json +0 -5
  316. data/apis/codeguruprofiler/2019-07-18/paginators-1.json +0 -14
  317. data/apis/codepipeline/2015-07-09/api-2.json +0 -2441
  318. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  319. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  320. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  321. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  322. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  323. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  324. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  325. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  326. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  327. data/apis/codestar/2017-04-19/smoke.json +0 -11
  328. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  329. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  330. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  331. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5435
  332. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  333. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  334. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  335. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  336. data/apis/comprehend/2017-11-27/api-2.json +0 -2632
  337. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  338. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  339. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
  340. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  341. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  342. data/apis/compute-optimizer/2019-11-01/api-2.json +0 -571
  343. data/apis/compute-optimizer/2019-11-01/examples-1.json +0 -5
  344. data/apis/compute-optimizer/2019-11-01/paginators-1.json +0 -4
  345. data/apis/config/2014-11-12/api-2.json +0 -4340
  346. data/apis/config/2014-11-12/examples-1.json +0 -5
  347. data/apis/config/2014-11-12/paginators-1.json +0 -21
  348. data/apis/config/2014-11-12/smoke.json +0 -19
  349. data/apis/connect/2017-08-08/api-2.json +0 -2139
  350. data/apis/connect/2017-08-08/examples-1.json +0 -5
  351. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  352. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  353. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  354. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  355. data/apis/cur/2017-01-06/api-2.json +0 -277
  356. data/apis/cur/2017-01-06/examples-1.json +0 -102
  357. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  358. data/apis/cur/2017-01-06/smoke.json +0 -11
  359. data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
  360. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  361. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  362. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  363. data/apis/datasync/2018-11-09/api-2.json +0 -1354
  364. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  365. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  366. data/apis/dax/2017-04-19/api-2.json +0 -1140
  367. data/apis/dax/2017-04-19/examples-1.json +0 -5
  368. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  369. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  370. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  371. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  372. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  373. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  374. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  375. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  376. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  377. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  378. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  379. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  380. data/apis/discovery/2015-11-01/smoke.json +0 -11
  381. data/apis/dlm/2018-01-12/api-2.json +0 -642
  382. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  383. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  384. data/apis/dms/2016-01-01/api-2.json +0 -2296
  385. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  386. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  387. data/apis/dms/2016-01-01/smoke.json +0 -18
  388. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  389. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  390. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  391. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  392. data/apis/docdb/2014-10-31/smoke.json +0 -18
  393. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  394. data/apis/ds/2015-04-16/api-2.json +0 -3012
  395. data/apis/ds/2015-04-16/examples-1.json +0 -5
  396. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  397. data/apis/ds/2015-04-16/smoke.json +0 -20
  398. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  399. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  400. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  401. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  402. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  403. data/apis/dynamodb/2012-08-10/api-2.json +0 -3182
  404. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  405. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -31
  406. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  407. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  408. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  409. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  410. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  411. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  412. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  413. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  414. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  415. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  416. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  417. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  418. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  419. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  420. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  421. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  422. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  423. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  424. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  425. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  426. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  427. data/apis/ec2/2016-11-15/api-2.json +0 -28674
  428. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  429. data/apis/ec2/2016-11-15/paginators-1.json +0 -462
  430. data/apis/ec2/2016-11-15/resources-1.json +0 -2688
  431. data/apis/ec2/2016-11-15/smoke.json +0 -20
  432. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  433. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  434. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  435. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  436. data/apis/ecr/2015-09-21/smoke.json +0 -18
  437. data/apis/ecs/2014-11-13/api-2.json +0 -3130
  438. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  439. data/apis/ecs/2014-11-13/paginators-1.json +0 -46
  440. data/apis/ecs/2014-11-13/smoke.json +0 -18
  441. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  442. data/apis/eks/2017-11-01/api-2.json +0 -1429
  443. data/apis/eks/2017-11-01/examples-1.json +0 -135
  444. data/apis/eks/2017-11-01/paginators-1.json +0 -28
  445. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  446. data/apis/elastic-inference/2017-07-25/api-2.json +0 -174
  447. data/apis/elastic-inference/2017-07-25/examples-1.json +0 -5
  448. data/apis/elastic-inference/2017-07-25/paginators-1.json +0 -4
  449. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  450. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  451. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  452. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  453. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  454. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  455. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  456. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  457. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  458. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -897
  459. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  460. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  461. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  462. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  463. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  464. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  465. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  466. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  467. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2346
  468. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  469. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  470. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  471. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  472. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2241
  473. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  474. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  475. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  476. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  477. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  478. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  479. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  480. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  481. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  482. data/apis/email/2010-12-01/api-2.json +0 -3182
  483. data/apis/email/2010-12-01/examples-1.json +0 -1021
  484. data/apis/email/2010-12-01/paginators-1.json +0 -18
  485. data/apis/email/2010-12-01/smoke.json +0 -18
  486. data/apis/email/2010-12-01/waiters-2.json +0 -18
  487. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  488. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  489. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  490. data/apis/es/2015-01-01/api-2.json +0 -1584
  491. data/apis/es/2015-01-01/examples-1.json +0 -5
  492. data/apis/es/2015-01-01/paginators-1.json +0 -29
  493. data/apis/es/2015-01-01/smoke.json +0 -18
  494. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  495. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  496. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  497. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  498. data/apis/events/2015-10-07/api-2.json +0 -1462
  499. data/apis/events/2015-10-07/examples-1.json +0 -5
  500. data/apis/events/2015-10-07/paginators-1.json +0 -4
  501. data/apis/events/2015-10-07/smoke.json +0 -18
  502. data/apis/firehose/2015-08-04/api-2.json +0 -1445
  503. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  504. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  505. data/apis/firehose/2015-08-04/smoke.json +0 -18
  506. data/apis/fms/2018-01-01/api-2.json +0 -701
  507. data/apis/fms/2018-01-01/examples-1.json +0 -5
  508. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  509. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  510. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  511. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  512. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  513. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  514. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  515. data/apis/frauddetector/2019-11-15/api-2.json +0 -1541
  516. data/apis/frauddetector/2019-11-15/examples-1.json +0 -5
  517. data/apis/frauddetector/2019-11-15/paginators-1.json +0 -39
  518. data/apis/fsx/2018-03-01/api-2.json +0 -1063
  519. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  520. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  521. data/apis/gamelift/2015-10-01/api-2.json +0 -3495
  522. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  523. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  524. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  525. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  526. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  527. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  528. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  529. data/apis/glacier/2012-06-01/smoke.json +0 -18
  530. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  531. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  532. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  533. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  534. data/apis/glue/2017-03-31/api-2.json +0 -6302
  535. data/apis/glue/2017-03-31/examples-1.json +0 -5
  536. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  537. data/apis/glue/2017-03-31/smoke.json +0 -11
  538. data/apis/greengrass/2017-06-07/api-2.json +0 -5124
  539. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  540. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  541. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  542. data/apis/guardduty/2017-11-28/api-2.json +0 -3508
  543. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  544. data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
  545. data/apis/health/2016-08-04/api-2.json +0 -554
  546. data/apis/health/2016-08-04/examples-1.json +0 -5
  547. data/apis/health/2016-08-04/paginators-1.json +0 -31
  548. data/apis/health/2016-08-04/smoke.json +0 -11
  549. data/apis/iam/2010-05-08/api-2.json +0 -5787
  550. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  551. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  552. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  553. data/apis/iam/2010-05-08/smoke.json +0 -18
  554. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  555. data/apis/imagebuilder/2019-12-02/api-2.json +0 -2387
  556. data/apis/imagebuilder/2019-12-02/examples-1.json +0 -5
  557. data/apis/imagebuilder/2019-12-02/paginators-1.json +0 -49
  558. data/apis/importexport/2010-06-01/api-2.json +0 -667
  559. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  560. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  561. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  562. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  563. data/apis/inspector/2016-02-16/smoke.json +0 -18
  564. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  565. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  566. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  567. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  568. data/apis/iot/2015-05-28/api-2.json +0 -11037
  569. data/apis/iot/2015-05-28/examples-1.json +0 -5
  570. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  571. data/apis/iot/2015-05-28/smoke.json +0 -18
  572. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  573. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  574. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  575. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  576. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  577. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  578. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  579. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  580. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  581. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  582. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  583. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  584. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  585. data/apis/iotsecuretunneling/2018-10-05/api-2.json +0 -388
  586. data/apis/iotsecuretunneling/2018-10-05/examples-1.json +0 -5
  587. data/apis/iotsecuretunneling/2018-10-05/paginators-1.json +0 -9
  588. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  589. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  590. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  591. data/apis/kafka/2018-11-14/api-2.json +0 -1950
  592. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  593. data/apis/kendra/2019-02-03/api-2.json +0 -1737
  594. data/apis/kendra/2019-02-03/examples-1.json +0 -5
  595. data/apis/kendra/2019-02-03/paginators-1.json +0 -19
  596. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  597. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  598. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  599. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  600. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  601. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  602. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  603. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  604. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  605. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  606. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  607. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  608. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  609. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  610. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2265
  611. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  612. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  613. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  614. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  615. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  616. data/apis/kms/2014-11-01/api-2.json +0 -2141
  617. data/apis/kms/2014-11-01/examples-1.json +0 -906
  618. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  619. data/apis/kms/2014-11-01/smoke.json +0 -19
  620. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  621. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  622. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  623. data/apis/lambda/2014-11-11/api-2.json +0 -668
  624. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  625. data/apis/lambda/2015-03-31/api-2.json +0 -2682
  626. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  627. data/apis/lambda/2015-03-31/paginators-1.json +0 -46
  628. data/apis/lambda/2015-03-31/smoke.json +0 -18
  629. data/apis/lambda/2015-03-31/waiters-2.json +0 -74
  630. data/apis/lex-models/2017-04-19/api-2.json +0 -2265
  631. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  632. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  633. data/apis/license-manager/2018-08-01/api-2.json +0 -886
  634. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  635. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  636. data/apis/lightsail/2016-11-28/api-2.json +0 -5015
  637. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  638. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  639. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  640. data/apis/logs/2014-03-28/api-2.json +0 -1701
  641. data/apis/logs/2014-03-28/examples-1.json +0 -5
  642. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  643. data/apis/logs/2014-03-28/smoke.json +0 -19
  644. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  645. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  646. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  647. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  648. data/apis/macie/2017-12-19/api-2.json +0 -365
  649. data/apis/macie/2017-12-19/examples-1.json +0 -5
  650. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  651. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  652. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  653. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  654. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  655. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  656. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  657. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  658. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  659. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  660. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  661. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  662. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  663. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8581
  664. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  665. data/apis/medialive/2017-10-14/api-2.json +0 -10613
  666. data/apis/medialive/2017-10-14/paginators-1.json +0 -52
  667. data/apis/medialive/2017-10-14/waiters-2.json +0 -217
  668. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1526
  669. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  670. data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
  671. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  672. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  673. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  674. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  675. data/apis/mediastore/2017-09-01/api-2.json +0 -737
  676. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  677. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  678. data/apis/mediatailor/2018-04-23/api-2.json +0 -544
  679. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  680. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  681. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  682. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  683. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -207
  684. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  685. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  686. data/apis/mobile/2017-07-01/api-2.json +0 -551
  687. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  688. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  689. data/apis/monitoring/2010-08-01/api-2.json +0 -1867
  690. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  691. data/apis/monitoring/2010-08-01/paginators-1.json +0 -43
  692. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  693. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  694. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  695. data/apis/mq/2017-11-27/api-2.json +0 -2538
  696. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  697. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  698. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  699. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  700. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  701. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  702. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  703. data/apis/neptune/2014-10-31/smoke.json +0 -18
  704. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  705. data/apis/networkmanager/2019-07-05/api-2.json +0 -1588
  706. data/apis/networkmanager/2019-07-05/examples-1.json +0 -5
  707. data/apis/networkmanager/2019-07-05/paginators-1.json +0 -46
  708. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  709. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  710. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  711. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  712. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  713. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  714. data/apis/opsworkscm/2016-11-01/api-2.json +0 -817
  715. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  716. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  717. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  718. data/apis/organizations/2016-11-28/api-2.json +0 -2401
  719. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  720. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  721. data/apis/outposts/2019-12-03/api-2.json +0 -367
  722. data/apis/outposts/2019-12-03/examples-1.json +0 -5
  723. data/apis/outposts/2019-12-03/paginators-1.json +0 -14
  724. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  725. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  726. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  727. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  728. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  729. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  730. data/apis/personalize/2018-05-22/api-2.json +0 -1863
  731. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  732. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  733. data/apis/pi/2018-02-27/api-2.json +0 -253
  734. data/apis/pi/2018-02-27/examples-1.json +0 -5
  735. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  736. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  737. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  738. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  739. data/apis/pinpoint/2016-12-01/api-2.json +0 -11189
  740. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  741. data/apis/polly/2016-06-10/api-2.json +0 -832
  742. data/apis/polly/2016-06-10/examples-1.json +0 -171
  743. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  744. data/apis/polly/2016-06-10/smoke.json +0 -11
  745. data/apis/pricing/2017-10-15/api-2.json +0 -227
  746. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  747. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  748. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  749. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  750. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  751. data/apis/qldb/2019-01-02/api-2.json +0 -776
  752. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  753. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  754. data/apis/quicksight/2018-04-01/api-2.json +0 -5482
  755. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  756. data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
  757. data/apis/ram/2018-01-04/api-2.json +0 -1272
  758. data/apis/ram/2018-01-04/examples-1.json +0 -5
  759. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  760. data/apis/rds-data/2018-08-01/api-2.json +0 -552
  761. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  762. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  763. data/apis/rds/2013-01-10/api-2.json +0 -2903
  764. data/apis/rds/2013-01-10/examples-1.json +0 -5
  765. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  766. data/apis/rds/2013-01-10/smoke.json +0 -18
  767. data/apis/rds/2013-02-12/api-2.json +0 -3059
  768. data/apis/rds/2013-02-12/examples-1.json +0 -5
  769. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  770. data/apis/rds/2013-02-12/smoke.json +0 -18
  771. data/apis/rds/2013-09-09/api-2.json +0 -3160
  772. data/apis/rds/2013-09-09/examples-1.json +0 -5
  773. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  774. data/apis/rds/2013-09-09/smoke.json +0 -18
  775. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  776. data/apis/rds/2014-09-01/api-2.json +0 -3273
  777. data/apis/rds/2014-09-01/examples-1.json +0 -5
  778. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  779. data/apis/rds/2014-09-01/smoke.json +0 -18
  780. data/apis/rds/2014-10-31/api-2.json +0 -6881
  781. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  782. data/apis/rds/2014-10-31/paginators-1.json +0 -140
  783. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  784. data/apis/rds/2014-10-31/smoke.json +0 -18
  785. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  786. data/apis/rds/2015-11-12/api-2.json +0 -5509
  787. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  788. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  789. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  790. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  791. data/apis/redshift/2012-12-01/api-2.json +0 -5263
  792. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  793. data/apis/redshift/2012-12-01/paginators-1.json +0 -106
  794. data/apis/redshift/2012-12-01/smoke.json +0 -18
  795. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  796. data/apis/rekognition/2016-06-27/api-2.json +0 -2148
  797. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  798. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  799. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  800. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  801. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  802. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  803. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -532
  804. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  805. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -26
  806. data/apis/robomaker/2018-06-29/api-2.json +0 -2160
  807. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  808. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  809. data/apis/route53/2013-04-01/api-2.json +0 -3780
  810. data/apis/route53/2013-04-01/examples-1.json +0 -762
  811. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  812. data/apis/route53/2013-04-01/smoke.json +0 -18
  813. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  814. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  815. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  816. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  817. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  818. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  819. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  820. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  821. data/apis/runtime.lex/2016-11-28/api-2.json +0 -714
  822. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  823. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  824. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  825. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  826. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  827. data/apis/s3/2006-03-01/api-2.json +0 -6653
  828. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  829. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  830. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  831. data/apis/s3/2006-03-01/smoke.json +0 -11
  832. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  833. data/apis/s3control/2018-08-20/api-2.json +0 -1377
  834. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  835. data/apis/s3control/2018-08-20/paginators-1.json +0 -14
  836. data/apis/sagemaker-a2i-runtime/2019-11-07/api-2.json +0 -367
  837. data/apis/sagemaker-a2i-runtime/2019-11-07/examples-1.json +0 -5
  838. data/apis/sagemaker-a2i-runtime/2019-11-07/paginators-1.json +0 -10
  839. data/apis/sagemaker/2017-07-24/api-2.json +0 -5289
  840. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  841. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  842. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  843. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  844. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  845. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  846. data/apis/schemas/2019-12-02/api-2.json +0 -2700
  847. data/apis/schemas/2019-12-02/paginators-1.json +0 -34
  848. data/apis/schemas/2019-12-02/waiters-2.json +0 -36
  849. data/apis/sdb/2009-04-15/api-2.json +0 -955
  850. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  851. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  852. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  853. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  854. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  855. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  856. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  857. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  858. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1806
  859. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  860. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  861. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  862. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  863. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  864. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  865. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  866. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  867. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  868. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  869. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  870. data/apis/sesv2/2019-09-27/api-2.json +0 -2362
  871. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  872. data/apis/sesv2/2019-09-27/paginators-1.json +0 -39
  873. data/apis/shield/2016-06-02/api-2.json +0 -893
  874. data/apis/shield/2016-06-02/examples-1.json +0 -5
  875. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  876. data/apis/shield/2016-06-02/smoke.json +0 -11
  877. data/apis/signer/2017-08-25/api-2.json +0 -817
  878. data/apis/signer/2017-08-25/examples-1.json +0 -5
  879. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  880. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  881. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  882. data/apis/sms/2016-10-24/api-2.json +0 -1366
  883. data/apis/sms/2016-10-24/examples-1.json +0 -5
  884. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  885. data/apis/sms/2016-10-24/smoke.json +0 -18
  886. data/apis/snowball/2016-06-30/api-2.json +0 -955
  887. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  888. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  889. data/apis/snowball/2016-06-30/smoke.json +0 -11
  890. data/apis/sns/2010-03-31/api-2.json +0 -1468
  891. data/apis/sns/2010-03-31/examples-1.json +0 -5
  892. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  893. data/apis/sns/2010-03-31/resources-1.json +0 -327
  894. data/apis/sns/2010-03-31/smoke.json +0 -19
  895. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  896. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  897. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  898. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  899. data/apis/sqs/2012-11-05/smoke.json +0 -18
  900. data/apis/ssm/2014-11-06/api-2.json +0 -9150
  901. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  902. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  903. data/apis/ssm/2014-11-06/smoke.json +0 -18
  904. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  905. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  906. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  907. data/apis/sso/2019-06-10/api-2.json +0 -281
  908. data/apis/sso/2019-06-10/examples-1.json +0 -5
  909. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  910. data/apis/states/2016-11-23/api-2.json +0 -1409
  911. data/apis/states/2016-11-23/examples-1.json +0 -5
  912. data/apis/states/2016-11-23/paginators-1.json +0 -28
  913. data/apis/states/2016-11-23/smoke.json +0 -11
  914. data/apis/storagegateway/2013-06-30/api-2.json +0 -3259
  915. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  916. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  917. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  918. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  919. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  920. data/apis/sts/2011-06-15/api-2.json +0 -598
  921. data/apis/sts/2011-06-15/examples-1.json +0 -234
  922. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  923. data/apis/sts/2011-06-15/smoke.json +0 -19
  924. data/apis/support/2013-04-15/api-2.json +0 -773
  925. data/apis/support/2013-04-15/examples-1.json +0 -5
  926. data/apis/support/2013-04-15/paginators-1.json +0 -25
  927. data/apis/support/2013-04-15/smoke.json +0 -22
  928. data/apis/swf/2012-01-25/api-2.json +0 -2792
  929. data/apis/swf/2012-01-25/examples-1.json +0 -5
  930. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  931. data/apis/textract/2018-06-27/api-2.json +0 -653
  932. data/apis/textract/2018-06-27/examples-1.json +0 -5
  933. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  934. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  935. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  936. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  937. data/apis/transcribe/2017-10-26/api-2.json +0 -538
  938. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  939. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  940. data/apis/transfer/2018-11-05/api-2.json +0 -940
  941. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  942. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  943. data/apis/translate/2017-07-01/api-2.json +0 -408
  944. data/apis/translate/2017-07-01/examples-1.json +0 -5
  945. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  946. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  947. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  948. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  949. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  950. data/apis/waf/2015-08-24/api-2.json +0 -3857
  951. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  952. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  953. data/apis/waf/2015-08-24/smoke.json +0 -21
  954. data/apis/wafv2/2019-07-29/api-2.json +0 -2418
  955. data/apis/wafv2/2019-07-29/examples-1.json +0 -5
  956. data/apis/wafv2/2019-07-29/paginators-1.json +0 -4
  957. data/apis/wafv2/2019-07-29/smoke.json +0 -21
  958. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  959. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  960. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  961. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  962. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  963. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  964. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  965. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  966. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  967. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  968. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  969. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  970. data/apis/workspaces/2015-04-08/api-2.json +0 -1994
  971. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  972. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  973. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  974. data/apis/xray/2016-04-12/api-2.json +0 -1352
  975. data/apis/xray/2016-04-12/examples-1.json +0 -5
  976. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  977. data/bin/aws.rb +0 -180
  978. data/endpoints.json +0 -5701
  979. data/lib/aws-sdk-core/accessanalyzer.rb +0 -6
  980. data/lib/aws-sdk-core/acm.rb +0 -7
  981. data/lib/aws-sdk-core/acmpca.rb +0 -7
  982. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  983. data/lib/aws-sdk-core/amplify.rb +0 -6
  984. data/lib/aws-sdk-core/api/builder.rb +0 -129
  985. data/lib/aws-sdk-core/api/customizations.rb +0 -303
  986. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  987. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  988. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  989. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  990. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  991. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  992. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  993. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  994. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  995. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  996. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  997. data/lib/aws-sdk-core/apigateway.rb +0 -6
  998. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  999. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  1000. data/lib/aws-sdk-core/appconfig.rb +0 -6
  1001. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  1002. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  1003. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  1004. data/lib/aws-sdk-core/appmesh.rb +0 -6
  1005. data/lib/aws-sdk-core/appstream.rb +0 -7
  1006. data/lib/aws-sdk-core/appsync.rb +0 -6
  1007. data/lib/aws-sdk-core/athena.rb +0 -6
  1008. data/lib/aws-sdk-core/augmentedairuntime.rb +0 -6
  1009. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  1010. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  1011. data/lib/aws-sdk-core/backup.rb +0 -6
  1012. data/lib/aws-sdk-core/batch.rb +0 -6
  1013. data/lib/aws-sdk-core/budgets.rb +0 -6
  1014. data/lib/aws-sdk-core/checksums.rb +0 -51
  1015. data/lib/aws-sdk-core/chime.rb +0 -6
  1016. data/lib/aws-sdk-core/client.rb +0 -62
  1017. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  1018. data/lib/aws-sdk-core/cloud9.rb +0 -6
  1019. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  1020. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  1021. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  1022. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  1023. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  1024. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  1025. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  1026. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  1027. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  1028. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  1029. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  1030. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  1031. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  1032. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  1033. data/lib/aws-sdk-core/codebuild.rb +0 -6
  1034. data/lib/aws-sdk-core/codecommit.rb +0 -6
  1035. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  1036. data/lib/aws-sdk-core/codeguruprofiler.rb +0 -6
  1037. data/lib/aws-sdk-core/codegurureviewer.rb +0 -6
  1038. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  1039. data/lib/aws-sdk-core/codestar.rb +0 -6
  1040. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  1041. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  1042. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  1043. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  1044. data/lib/aws-sdk-core/comprehend.rb +0 -6
  1045. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  1046. data/lib/aws-sdk-core/computeoptimizer.rb +0 -6
  1047. data/lib/aws-sdk-core/configservice.rb +0 -6
  1048. data/lib/aws-sdk-core/connect.rb +0 -6
  1049. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  1050. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  1051. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1052. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1053. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1054. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1055. data/lib/aws-sdk-core/datasync.rb +0 -6
  1056. data/lib/aws-sdk-core/dax.rb +0 -6
  1057. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1058. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1059. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1060. data/lib/aws-sdk-core/dlm.rb +0 -6
  1061. data/lib/aws-sdk-core/docdb.rb +0 -7
  1062. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1063. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1064. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1065. data/lib/aws-sdk-core/ec2.rb +0 -8
  1066. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1067. data/lib/aws-sdk-core/ecr.rb +0 -6
  1068. data/lib/aws-sdk-core/ecs.rb +0 -7
  1069. data/lib/aws-sdk-core/efs.rb +0 -6
  1070. data/lib/aws-sdk-core/eks.rb +0 -7
  1071. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1072. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1073. data/lib/aws-sdk-core/elasticinference.rb +0 -6
  1074. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1075. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1076. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1077. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1078. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1079. data/lib/aws-sdk-core/emr.rb +0 -7
  1080. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1081. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1082. data/lib/aws-sdk-core/firehose.rb +0 -6
  1083. data/lib/aws-sdk-core/fms.rb +0 -6
  1084. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1085. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1086. data/lib/aws-sdk-core/frauddetector.rb +0 -6
  1087. data/lib/aws-sdk-core/fsx.rb +0 -6
  1088. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1089. data/lib/aws-sdk-core/glacier.rb +0 -8
  1090. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1091. data/lib/aws-sdk-core/glue.rb +0 -6
  1092. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1093. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1094. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1095. data/lib/aws-sdk-core/health.rb +0 -6
  1096. data/lib/aws-sdk-core/iam.rb +0 -8
  1097. data/lib/aws-sdk-core/imagebuilder.rb +0 -6
  1098. data/lib/aws-sdk-core/importexport.rb +0 -5
  1099. data/lib/aws-sdk-core/inspector.rb +0 -6
  1100. data/lib/aws-sdk-core/iot.rb +0 -6
  1101. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1102. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1103. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1104. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1105. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1106. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1107. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1108. data/lib/aws-sdk-core/iotsecuretunneling.rb +0 -6
  1109. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1110. data/lib/aws-sdk-core/kafka.rb +0 -5
  1111. data/lib/aws-sdk-core/kendra.rb +0 -6
  1112. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1113. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1114. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1115. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1116. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1117. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1118. data/lib/aws-sdk-core/kms.rb +0 -6
  1119. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1120. data/lib/aws-sdk-core/lambda.rb +0 -7
  1121. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1122. data/lib/aws-sdk-core/lex.rb +0 -6
  1123. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1124. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1125. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1126. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1127. data/lib/aws-sdk-core/macie.rb +0 -6
  1128. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1129. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1130. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1131. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1132. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1133. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1134. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1135. data/lib/aws-sdk-core/medialive.rb +0 -6
  1136. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1137. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1138. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1139. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1140. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1141. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1142. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1143. data/lib/aws-sdk-core/mobile.rb +0 -6
  1144. data/lib/aws-sdk-core/mq.rb +0 -5
  1145. data/lib/aws-sdk-core/mturk.rb +0 -6
  1146. data/lib/aws-sdk-core/neptune.rb +0 -7
  1147. data/lib/aws-sdk-core/networkmanager.rb +0 -6
  1148. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1149. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1150. data/lib/aws-sdk-core/organizations.rb +0 -6
  1151. data/lib/aws-sdk-core/outposts.rb +0 -6
  1152. data/lib/aws-sdk-core/partitions.rb +0 -174
  1153. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1154. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1155. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1156. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1157. data/lib/aws-sdk-core/personalize.rb +0 -6
  1158. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1159. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1160. data/lib/aws-sdk-core/pi.rb +0 -6
  1161. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1162. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1163. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1164. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1165. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1166. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1167. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1168. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1169. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1170. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1171. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1172. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1173. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1174. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1175. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1176. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1177. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1178. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1179. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1180. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1181. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1182. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1183. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1184. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1185. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1186. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1187. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1188. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1189. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1190. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1191. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1192. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1193. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1194. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1195. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1196. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1197. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1198. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1199. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1200. data/lib/aws-sdk-core/polly.rb +0 -14
  1201. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1202. data/lib/aws-sdk-core/pricing.rb +0 -6
  1203. data/lib/aws-sdk-core/qldb.rb +0 -6
  1204. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1205. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1206. data/lib/aws-sdk-core/ram.rb +0 -6
  1207. data/lib/aws-sdk-core/rds.rb +0 -16
  1208. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1209. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1210. data/lib/aws-sdk-core/redshift.rb +0 -7
  1211. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1212. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1213. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1214. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1215. data/lib/aws-sdk-core/route53.rb +0 -7
  1216. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1217. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1218. data/lib/aws-sdk-core/s3.rb +0 -26
  1219. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1220. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1221. data/lib/aws-sdk-core/s3control.rb +0 -6
  1222. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1223. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1224. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1225. data/lib/aws-sdk-core/schemas.rb +0 -6
  1226. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1227. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1228. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1229. data/lib/aws-sdk-core/service.rb +0 -4
  1230. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1231. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1232. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1233. data/lib/aws-sdk-core/ses.rb +0 -7
  1234. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1235. data/lib/aws-sdk-core/shield.rb +0 -6
  1236. data/lib/aws-sdk-core/signer.rb +0 -7
  1237. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1238. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1239. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1240. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1241. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1242. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1243. data/lib/aws-sdk-core/sms.rb +0 -6
  1244. data/lib/aws-sdk-core/snowball.rb +0 -6
  1245. data/lib/aws-sdk-core/sns.rb +0 -7
  1246. data/lib/aws-sdk-core/sqs.rb +0 -7
  1247. data/lib/aws-sdk-core/ssm.rb +0 -6
  1248. data/lib/aws-sdk-core/sso.rb +0 -6
  1249. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1250. data/lib/aws-sdk-core/states.rb +0 -6
  1251. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1252. data/lib/aws-sdk-core/sts.rb +0 -6
  1253. data/lib/aws-sdk-core/support.rb +0 -6
  1254. data/lib/aws-sdk-core/swf.rb +0 -6
  1255. data/lib/aws-sdk-core/textract.rb +0 -6
  1256. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1257. data/lib/aws-sdk-core/transfer.rb +0 -6
  1258. data/lib/aws-sdk-core/translate.rb +0 -6
  1259. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1260. data/lib/aws-sdk-core/version.rb +0 -3
  1261. data/lib/aws-sdk-core/waf.rb +0 -6
  1262. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1263. data/lib/aws-sdk-core/wafv2.rb +0 -6
  1264. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1265. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1266. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1267. data/lib/aws-sdk-core/worklink.rb +0 -6
  1268. data/lib/aws-sdk-core/workmail.rb +0 -6
  1269. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1270. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1271. data/lib/aws-sdk-core/xray.rb +0 -6
  1272. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1273. data/service-models.json +0 -865
@@ -1,4 +0,0 @@
1
- {
2
- "pagination": {
3
- }
4
- }
@@ -1,21 +0,0 @@
1
- {
2
- "version": 1,
3
- "defaultRegion": "us-east-1",
4
- "testCases": [
5
- {
6
- "operationName": "ListRules",
7
- "input": {
8
- "Limit": 20
9
- },
10
- "errorExpectedFromService": false
11
- },
12
- {
13
- "operationName": "CreateSqlInjectionMatchSet",
14
- "input": {
15
- "Name": "fake_name",
16
- "ChangeToken": "fake_token"
17
- },
18
- "errorExpectedFromService": true
19
- }
20
- ]
21
- }
@@ -1,2418 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2019-07-29",
5
- "endpointPrefix":"wafv2",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceAbbreviation":"WAFV2",
9
- "serviceFullName":"AWS WAFV2",
10
- "serviceId":"WAFV2",
11
- "signatureVersion":"v4",
12
- "targetPrefix":"AWSWAF_20190729",
13
- "uid":"wafv2-2019-07-29"
14
- },
15
- "operations":{
16
- "AssociateWebACL":{
17
- "name":"AssociateWebACL",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"AssociateWebACLRequest"},
23
- "output":{"shape":"AssociateWebACLResponse"},
24
- "errors":[
25
- {"shape":"WAFInternalErrorException"},
26
- {"shape":"WAFInvalidParameterException"},
27
- {"shape":"WAFNonexistentItemException"},
28
- {"shape":"WAFUnavailableEntityException"}
29
- ]
30
- },
31
- "CheckCapacity":{
32
- "name":"CheckCapacity",
33
- "http":{
34
- "method":"POST",
35
- "requestUri":"/"
36
- },
37
- "input":{"shape":"CheckCapacityRequest"},
38
- "output":{"shape":"CheckCapacityResponse"},
39
- "errors":[
40
- {"shape":"WAFInternalErrorException"},
41
- {"shape":"WAFInvalidParameterException"},
42
- {"shape":"WAFNonexistentItemException"},
43
- {"shape":"WAFLimitsExceededException"},
44
- {"shape":"WAFInvalidResourceException"},
45
- {"shape":"WAFUnavailableEntityException"}
46
- ]
47
- },
48
- "CreateIPSet":{
49
- "name":"CreateIPSet",
50
- "http":{
51
- "method":"POST",
52
- "requestUri":"/"
53
- },
54
- "input":{"shape":"CreateIPSetRequest"},
55
- "output":{"shape":"CreateIPSetResponse"},
56
- "errors":[
57
- {"shape":"WAFInternalErrorException"},
58
- {"shape":"WAFInvalidParameterException"},
59
- {"shape":"WAFDuplicateItemException"},
60
- {"shape":"WAFOptimisticLockException"},
61
- {"shape":"WAFLimitsExceededException"},
62
- {"shape":"WAFTagOperationException"},
63
- {"shape":"WAFTagOperationInternalErrorException"}
64
- ]
65
- },
66
- "CreateRegexPatternSet":{
67
- "name":"CreateRegexPatternSet",
68
- "http":{
69
- "method":"POST",
70
- "requestUri":"/"
71
- },
72
- "input":{"shape":"CreateRegexPatternSetRequest"},
73
- "output":{"shape":"CreateRegexPatternSetResponse"},
74
- "errors":[
75
- {"shape":"WAFInternalErrorException"},
76
- {"shape":"WAFInvalidParameterException"},
77
- {"shape":"WAFDuplicateItemException"},
78
- {"shape":"WAFOptimisticLockException"},
79
- {"shape":"WAFLimitsExceededException"},
80
- {"shape":"WAFTagOperationException"},
81
- {"shape":"WAFTagOperationInternalErrorException"}
82
- ]
83
- },
84
- "CreateRuleGroup":{
85
- "name":"CreateRuleGroup",
86
- "http":{
87
- "method":"POST",
88
- "requestUri":"/"
89
- },
90
- "input":{"shape":"CreateRuleGroupRequest"},
91
- "output":{"shape":"CreateRuleGroupResponse"},
92
- "errors":[
93
- {"shape":"WAFInternalErrorException"},
94
- {"shape":"WAFInvalidParameterException"},
95
- {"shape":"WAFDuplicateItemException"},
96
- {"shape":"WAFOptimisticLockException"},
97
- {"shape":"WAFLimitsExceededException"},
98
- {"shape":"WAFUnavailableEntityException"},
99
- {"shape":"WAFTagOperationException"},
100
- {"shape":"WAFTagOperationInternalErrorException"}
101
- ]
102
- },
103
- "CreateWebACL":{
104
- "name":"CreateWebACL",
105
- "http":{
106
- "method":"POST",
107
- "requestUri":"/"
108
- },
109
- "input":{"shape":"CreateWebACLRequest"},
110
- "output":{"shape":"CreateWebACLResponse"},
111
- "errors":[
112
- {"shape":"WAFInternalErrorException"},
113
- {"shape":"WAFInvalidParameterException"},
114
- {"shape":"WAFDuplicateItemException"},
115
- {"shape":"WAFOptimisticLockException"},
116
- {"shape":"WAFLimitsExceededException"},
117
- {"shape":"WAFInvalidResourceException"},
118
- {"shape":"WAFUnavailableEntityException"},
119
- {"shape":"WAFNonexistentItemException"},
120
- {"shape":"WAFTagOperationException"},
121
- {"shape":"WAFTagOperationInternalErrorException"}
122
- ]
123
- },
124
- "DeleteIPSet":{
125
- "name":"DeleteIPSet",
126
- "http":{
127
- "method":"POST",
128
- "requestUri":"/"
129
- },
130
- "input":{"shape":"DeleteIPSetRequest"},
131
- "output":{"shape":"DeleteIPSetResponse"},
132
- "errors":[
133
- {"shape":"WAFInternalErrorException"},
134
- {"shape":"WAFInvalidParameterException"},
135
- {"shape":"WAFNonexistentItemException"},
136
- {"shape":"WAFOptimisticLockException"},
137
- {"shape":"WAFTagOperationException"},
138
- {"shape":"WAFTagOperationInternalErrorException"}
139
- ]
140
- },
141
- "DeleteLoggingConfiguration":{
142
- "name":"DeleteLoggingConfiguration",
143
- "http":{
144
- "method":"POST",
145
- "requestUri":"/"
146
- },
147
- "input":{"shape":"DeleteLoggingConfigurationRequest"},
148
- "output":{"shape":"DeleteLoggingConfigurationResponse"},
149
- "errors":[
150
- {"shape":"WAFInternalErrorException"},
151
- {"shape":"WAFNonexistentItemException"},
152
- {"shape":"WAFOptimisticLockException"}
153
- ]
154
- },
155
- "DeleteRegexPatternSet":{
156
- "name":"DeleteRegexPatternSet",
157
- "http":{
158
- "method":"POST",
159
- "requestUri":"/"
160
- },
161
- "input":{"shape":"DeleteRegexPatternSetRequest"},
162
- "output":{"shape":"DeleteRegexPatternSetResponse"},
163
- "errors":[
164
- {"shape":"WAFInternalErrorException"},
165
- {"shape":"WAFInvalidParameterException"},
166
- {"shape":"WAFNonexistentItemException"},
167
- {"shape":"WAFOptimisticLockException"},
168
- {"shape":"WAFTagOperationException"},
169
- {"shape":"WAFTagOperationInternalErrorException"}
170
- ]
171
- },
172
- "DeleteRuleGroup":{
173
- "name":"DeleteRuleGroup",
174
- "http":{
175
- "method":"POST",
176
- "requestUri":"/"
177
- },
178
- "input":{"shape":"DeleteRuleGroupRequest"},
179
- "output":{"shape":"DeleteRuleGroupResponse"},
180
- "errors":[
181
- {"shape":"WAFInternalErrorException"},
182
- {"shape":"WAFInvalidParameterException"},
183
- {"shape":"WAFNonexistentItemException"},
184
- {"shape":"WAFOptimisticLockException"},
185
- {"shape":"WAFTagOperationException"},
186
- {"shape":"WAFTagOperationInternalErrorException"}
187
- ]
188
- },
189
- "DeleteWebACL":{
190
- "name":"DeleteWebACL",
191
- "http":{
192
- "method":"POST",
193
- "requestUri":"/"
194
- },
195
- "input":{"shape":"DeleteWebACLRequest"},
196
- "output":{"shape":"DeleteWebACLResponse"},
197
- "errors":[
198
- {"shape":"WAFInternalErrorException"},
199
- {"shape":"WAFInvalidParameterException"},
200
- {"shape":"WAFNonexistentItemException"},
201
- {"shape":"WAFOptimisticLockException"},
202
- {"shape":"WAFAssociatedItemException"},
203
- {"shape":"WAFTagOperationException"},
204
- {"shape":"WAFTagOperationInternalErrorException"}
205
- ]
206
- },
207
- "DescribeManagedRuleGroup":{
208
- "name":"DescribeManagedRuleGroup",
209
- "http":{
210
- "method":"POST",
211
- "requestUri":"/"
212
- },
213
- "input":{"shape":"DescribeManagedRuleGroupRequest"},
214
- "output":{"shape":"DescribeManagedRuleGroupResponse"},
215
- "errors":[
216
- {"shape":"WAFInternalErrorException"},
217
- {"shape":"WAFInvalidParameterException"},
218
- {"shape":"WAFInvalidResourceException"},
219
- {"shape":"WAFNonexistentItemException"}
220
- ]
221
- },
222
- "DisassociateWebACL":{
223
- "name":"DisassociateWebACL",
224
- "http":{
225
- "method":"POST",
226
- "requestUri":"/"
227
- },
228
- "input":{"shape":"DisassociateWebACLRequest"},
229
- "output":{"shape":"DisassociateWebACLResponse"},
230
- "errors":[
231
- {"shape":"WAFInternalErrorException"},
232
- {"shape":"WAFInvalidParameterException"},
233
- {"shape":"WAFNonexistentItemException"}
234
- ]
235
- },
236
- "GetIPSet":{
237
- "name":"GetIPSet",
238
- "http":{
239
- "method":"POST",
240
- "requestUri":"/"
241
- },
242
- "input":{"shape":"GetIPSetRequest"},
243
- "output":{"shape":"GetIPSetResponse"},
244
- "errors":[
245
- {"shape":"WAFInternalErrorException"},
246
- {"shape":"WAFInvalidParameterException"},
247
- {"shape":"WAFNonexistentItemException"}
248
- ]
249
- },
250
- "GetLoggingConfiguration":{
251
- "name":"GetLoggingConfiguration",
252
- "http":{
253
- "method":"POST",
254
- "requestUri":"/"
255
- },
256
- "input":{"shape":"GetLoggingConfigurationRequest"},
257
- "output":{"shape":"GetLoggingConfigurationResponse"},
258
- "errors":[
259
- {"shape":"WAFInternalErrorException"},
260
- {"shape":"WAFNonexistentItemException"}
261
- ]
262
- },
263
- "GetRateBasedStatementManagedKeys":{
264
- "name":"GetRateBasedStatementManagedKeys",
265
- "http":{
266
- "method":"POST",
267
- "requestUri":"/"
268
- },
269
- "input":{"shape":"GetRateBasedStatementManagedKeysRequest"},
270
- "output":{"shape":"GetRateBasedStatementManagedKeysResponse"},
271
- "errors":[
272
- {"shape":"WAFInternalErrorException"},
273
- {"shape":"WAFInvalidParameterException"},
274
- {"shape":"WAFNonexistentItemException"}
275
- ]
276
- },
277
- "GetRegexPatternSet":{
278
- "name":"GetRegexPatternSet",
279
- "http":{
280
- "method":"POST",
281
- "requestUri":"/"
282
- },
283
- "input":{"shape":"GetRegexPatternSetRequest"},
284
- "output":{"shape":"GetRegexPatternSetResponse"},
285
- "errors":[
286
- {"shape":"WAFInternalErrorException"},
287
- {"shape":"WAFInvalidParameterException"},
288
- {"shape":"WAFNonexistentItemException"}
289
- ]
290
- },
291
- "GetRuleGroup":{
292
- "name":"GetRuleGroup",
293
- "http":{
294
- "method":"POST",
295
- "requestUri":"/"
296
- },
297
- "input":{"shape":"GetRuleGroupRequest"},
298
- "output":{"shape":"GetRuleGroupResponse"},
299
- "errors":[
300
- {"shape":"WAFInternalErrorException"},
301
- {"shape":"WAFInvalidParameterException"},
302
- {"shape":"WAFNonexistentItemException"}
303
- ]
304
- },
305
- "GetSampledRequests":{
306
- "name":"GetSampledRequests",
307
- "http":{
308
- "method":"POST",
309
- "requestUri":"/"
310
- },
311
- "input":{"shape":"GetSampledRequestsRequest"},
312
- "output":{"shape":"GetSampledRequestsResponse"},
313
- "errors":[
314
- {"shape":"WAFNonexistentItemException"},
315
- {"shape":"WAFInternalErrorException"},
316
- {"shape":"WAFInvalidParameterException"}
317
- ]
318
- },
319
- "GetWebACL":{
320
- "name":"GetWebACL",
321
- "http":{
322
- "method":"POST",
323
- "requestUri":"/"
324
- },
325
- "input":{"shape":"GetWebACLRequest"},
326
- "output":{"shape":"GetWebACLResponse"},
327
- "errors":[
328
- {"shape":"WAFInternalErrorException"},
329
- {"shape":"WAFInvalidParameterException"},
330
- {"shape":"WAFNonexistentItemException"}
331
- ]
332
- },
333
- "GetWebACLForResource":{
334
- "name":"GetWebACLForResource",
335
- "http":{
336
- "method":"POST",
337
- "requestUri":"/"
338
- },
339
- "input":{"shape":"GetWebACLForResourceRequest"},
340
- "output":{"shape":"GetWebACLForResourceResponse"},
341
- "errors":[
342
- {"shape":"WAFInternalErrorException"},
343
- {"shape":"WAFNonexistentItemException"},
344
- {"shape":"WAFInvalidParameterException"},
345
- {"shape":"WAFUnavailableEntityException"}
346
- ]
347
- },
348
- "ListAvailableManagedRuleGroups":{
349
- "name":"ListAvailableManagedRuleGroups",
350
- "http":{
351
- "method":"POST",
352
- "requestUri":"/"
353
- },
354
- "input":{"shape":"ListAvailableManagedRuleGroupsRequest"},
355
- "output":{"shape":"ListAvailableManagedRuleGroupsResponse"},
356
- "errors":[
357
- {"shape":"WAFInternalErrorException"},
358
- {"shape":"WAFInvalidParameterException"}
359
- ]
360
- },
361
- "ListIPSets":{
362
- "name":"ListIPSets",
363
- "http":{
364
- "method":"POST",
365
- "requestUri":"/"
366
- },
367
- "input":{"shape":"ListIPSetsRequest"},
368
- "output":{"shape":"ListIPSetsResponse"},
369
- "errors":[
370
- {"shape":"WAFInternalErrorException"},
371
- {"shape":"WAFInvalidParameterException"}
372
- ]
373
- },
374
- "ListLoggingConfigurations":{
375
- "name":"ListLoggingConfigurations",
376
- "http":{
377
- "method":"POST",
378
- "requestUri":"/"
379
- },
380
- "input":{"shape":"ListLoggingConfigurationsRequest"},
381
- "output":{"shape":"ListLoggingConfigurationsResponse"},
382
- "errors":[
383
- {"shape":"WAFInternalErrorException"},
384
- {"shape":"WAFInvalidParameterException"}
385
- ]
386
- },
387
- "ListRegexPatternSets":{
388
- "name":"ListRegexPatternSets",
389
- "http":{
390
- "method":"POST",
391
- "requestUri":"/"
392
- },
393
- "input":{"shape":"ListRegexPatternSetsRequest"},
394
- "output":{"shape":"ListRegexPatternSetsResponse"},
395
- "errors":[
396
- {"shape":"WAFInternalErrorException"},
397
- {"shape":"WAFInvalidParameterException"}
398
- ]
399
- },
400
- "ListResourcesForWebACL":{
401
- "name":"ListResourcesForWebACL",
402
- "http":{
403
- "method":"POST",
404
- "requestUri":"/"
405
- },
406
- "input":{"shape":"ListResourcesForWebACLRequest"},
407
- "output":{"shape":"ListResourcesForWebACLResponse"},
408
- "errors":[
409
- {"shape":"WAFInternalErrorException"},
410
- {"shape":"WAFNonexistentItemException"},
411
- {"shape":"WAFInvalidParameterException"}
412
- ]
413
- },
414
- "ListRuleGroups":{
415
- "name":"ListRuleGroups",
416
- "http":{
417
- "method":"POST",
418
- "requestUri":"/"
419
- },
420
- "input":{"shape":"ListRuleGroupsRequest"},
421
- "output":{"shape":"ListRuleGroupsResponse"},
422
- "errors":[
423
- {"shape":"WAFInternalErrorException"},
424
- {"shape":"WAFInvalidParameterException"}
425
- ]
426
- },
427
- "ListTagsForResource":{
428
- "name":"ListTagsForResource",
429
- "http":{
430
- "method":"POST",
431
- "requestUri":"/"
432
- },
433
- "input":{"shape":"ListTagsForResourceRequest"},
434
- "output":{"shape":"ListTagsForResourceResponse"},
435
- "errors":[
436
- {"shape":"WAFInternalErrorException"},
437
- {"shape":"WAFInvalidParameterException"},
438
- {"shape":"WAFNonexistentItemException"},
439
- {"shape":"WAFTagOperationException"},
440
- {"shape":"WAFTagOperationInternalErrorException"}
441
- ]
442
- },
443
- "ListWebACLs":{
444
- "name":"ListWebACLs",
445
- "http":{
446
- "method":"POST",
447
- "requestUri":"/"
448
- },
449
- "input":{"shape":"ListWebACLsRequest"},
450
- "output":{"shape":"ListWebACLsResponse"},
451
- "errors":[
452
- {"shape":"WAFInternalErrorException"},
453
- {"shape":"WAFInvalidParameterException"}
454
- ]
455
- },
456
- "PutLoggingConfiguration":{
457
- "name":"PutLoggingConfiguration",
458
- "http":{
459
- "method":"POST",
460
- "requestUri":"/"
461
- },
462
- "input":{"shape":"PutLoggingConfigurationRequest"},
463
- "output":{"shape":"PutLoggingConfigurationResponse"},
464
- "errors":[
465
- {"shape":"WAFInternalErrorException"},
466
- {"shape":"WAFNonexistentItemException"},
467
- {"shape":"WAFOptimisticLockException"},
468
- {"shape":"WAFServiceLinkedRoleErrorException"},
469
- {"shape":"WAFInvalidParameterException"}
470
- ]
471
- },
472
- "TagResource":{
473
- "name":"TagResource",
474
- "http":{
475
- "method":"POST",
476
- "requestUri":"/"
477
- },
478
- "input":{"shape":"TagResourceRequest"},
479
- "output":{"shape":"TagResourceResponse"},
480
- "errors":[
481
- {"shape":"WAFInternalErrorException"},
482
- {"shape":"WAFInvalidParameterException"},
483
- {"shape":"WAFLimitsExceededException"},
484
- {"shape":"WAFNonexistentItemException"},
485
- {"shape":"WAFTagOperationException"},
486
- {"shape":"WAFTagOperationInternalErrorException"}
487
- ]
488
- },
489
- "UntagResource":{
490
- "name":"UntagResource",
491
- "http":{
492
- "method":"POST",
493
- "requestUri":"/"
494
- },
495
- "input":{"shape":"UntagResourceRequest"},
496
- "output":{"shape":"UntagResourceResponse"},
497
- "errors":[
498
- {"shape":"WAFInternalErrorException"},
499
- {"shape":"WAFInvalidParameterException"},
500
- {"shape":"WAFNonexistentItemException"},
501
- {"shape":"WAFTagOperationException"},
502
- {"shape":"WAFTagOperationInternalErrorException"}
503
- ]
504
- },
505
- "UpdateIPSet":{
506
- "name":"UpdateIPSet",
507
- "http":{
508
- "method":"POST",
509
- "requestUri":"/"
510
- },
511
- "input":{"shape":"UpdateIPSetRequest"},
512
- "output":{"shape":"UpdateIPSetResponse"},
513
- "errors":[
514
- {"shape":"WAFInternalErrorException"},
515
- {"shape":"WAFInvalidParameterException"},
516
- {"shape":"WAFNonexistentItemException"},
517
- {"shape":"WAFDuplicateItemException"},
518
- {"shape":"WAFOptimisticLockException"},
519
- {"shape":"WAFLimitsExceededException"}
520
- ]
521
- },
522
- "UpdateRegexPatternSet":{
523
- "name":"UpdateRegexPatternSet",
524
- "http":{
525
- "method":"POST",
526
- "requestUri":"/"
527
- },
528
- "input":{"shape":"UpdateRegexPatternSetRequest"},
529
- "output":{"shape":"UpdateRegexPatternSetResponse"},
530
- "errors":[
531
- {"shape":"WAFInternalErrorException"},
532
- {"shape":"WAFInvalidParameterException"},
533
- {"shape":"WAFNonexistentItemException"},
534
- {"shape":"WAFDuplicateItemException"},
535
- {"shape":"WAFOptimisticLockException"},
536
- {"shape":"WAFLimitsExceededException"}
537
- ]
538
- },
539
- "UpdateRuleGroup":{
540
- "name":"UpdateRuleGroup",
541
- "http":{
542
- "method":"POST",
543
- "requestUri":"/"
544
- },
545
- "input":{"shape":"UpdateRuleGroupRequest"},
546
- "output":{"shape":"UpdateRuleGroupResponse"},
547
- "errors":[
548
- {"shape":"WAFInternalErrorException"},
549
- {"shape":"WAFInvalidParameterException"},
550
- {"shape":"WAFNonexistentItemException"},
551
- {"shape":"WAFDuplicateItemException"},
552
- {"shape":"WAFOptimisticLockException"},
553
- {"shape":"WAFLimitsExceededException"},
554
- {"shape":"WAFUnavailableEntityException"}
555
- ]
556
- },
557
- "UpdateWebACL":{
558
- "name":"UpdateWebACL",
559
- "http":{
560
- "method":"POST",
561
- "requestUri":"/"
562
- },
563
- "input":{"shape":"UpdateWebACLRequest"},
564
- "output":{"shape":"UpdateWebACLResponse"},
565
- "errors":[
566
- {"shape":"WAFInternalErrorException"},
567
- {"shape":"WAFInvalidParameterException"},
568
- {"shape":"WAFNonexistentItemException"},
569
- {"shape":"WAFDuplicateItemException"},
570
- {"shape":"WAFOptimisticLockException"},
571
- {"shape":"WAFLimitsExceededException"},
572
- {"shape":"WAFInvalidResourceException"},
573
- {"shape":"WAFUnavailableEntityException"}
574
- ]
575
- }
576
- },
577
- "shapes":{
578
- "Action":{"type":"string"},
579
- "AllQueryArguments":{
580
- "type":"structure",
581
- "members":{
582
- }
583
- },
584
- "AllowAction":{
585
- "type":"structure",
586
- "members":{
587
- }
588
- },
589
- "AndStatement":{
590
- "type":"structure",
591
- "required":["Statements"],
592
- "members":{
593
- "Statements":{"shape":"Statements"}
594
- }
595
- },
596
- "AssociateWebACLRequest":{
597
- "type":"structure",
598
- "required":[
599
- "WebACLArn",
600
- "ResourceArn"
601
- ],
602
- "members":{
603
- "WebACLArn":{"shape":"ResourceArn"},
604
- "ResourceArn":{"shape":"ResourceArn"}
605
- }
606
- },
607
- "AssociateWebACLResponse":{
608
- "type":"structure",
609
- "members":{
610
- }
611
- },
612
- "BlockAction":{
613
- "type":"structure",
614
- "members":{
615
- }
616
- },
617
- "Body":{
618
- "type":"structure",
619
- "members":{
620
- }
621
- },
622
- "Boolean":{"type":"boolean"},
623
- "ByteMatchStatement":{
624
- "type":"structure",
625
- "required":[
626
- "SearchString",
627
- "FieldToMatch",
628
- "TextTransformations",
629
- "PositionalConstraint"
630
- ],
631
- "members":{
632
- "SearchString":{"shape":"SearchString"},
633
- "FieldToMatch":{"shape":"FieldToMatch"},
634
- "TextTransformations":{"shape":"TextTransformations"},
635
- "PositionalConstraint":{"shape":"PositionalConstraint"}
636
- }
637
- },
638
- "CapacityUnit":{
639
- "type":"long",
640
- "min":1
641
- },
642
- "CheckCapacityRequest":{
643
- "type":"structure",
644
- "required":[
645
- "Scope",
646
- "Rules"
647
- ],
648
- "members":{
649
- "Scope":{"shape":"Scope"},
650
- "Rules":{"shape":"Rules"}
651
- }
652
- },
653
- "CheckCapacityResponse":{
654
- "type":"structure",
655
- "members":{
656
- "Capacity":{"shape":"ConsumedCapacity"}
657
- }
658
- },
659
- "ComparisonOperator":{
660
- "type":"string",
661
- "enum":[
662
- "EQ",
663
- "NE",
664
- "LE",
665
- "LT",
666
- "GE",
667
- "GT"
668
- ]
669
- },
670
- "ConsumedCapacity":{
671
- "type":"long",
672
- "min":0
673
- },
674
- "CountAction":{
675
- "type":"structure",
676
- "members":{
677
- }
678
- },
679
- "Country":{"type":"string"},
680
- "CountryCode":{
681
- "type":"string",
682
- "enum":[
683
- "AF",
684
- "AX",
685
- "AL",
686
- "DZ",
687
- "AS",
688
- "AD",
689
- "AO",
690
- "AI",
691
- "AQ",
692
- "AG",
693
- "AR",
694
- "AM",
695
- "AW",
696
- "AU",
697
- "AT",
698
- "AZ",
699
- "BS",
700
- "BH",
701
- "BD",
702
- "BB",
703
- "BY",
704
- "BE",
705
- "BZ",
706
- "BJ",
707
- "BM",
708
- "BT",
709
- "BO",
710
- "BQ",
711
- "BA",
712
- "BW",
713
- "BV",
714
- "BR",
715
- "IO",
716
- "BN",
717
- "BG",
718
- "BF",
719
- "BI",
720
- "KH",
721
- "CM",
722
- "CA",
723
- "CV",
724
- "KY",
725
- "CF",
726
- "TD",
727
- "CL",
728
- "CN",
729
- "CX",
730
- "CC",
731
- "CO",
732
- "KM",
733
- "CG",
734
- "CD",
735
- "CK",
736
- "CR",
737
- "CI",
738
- "HR",
739
- "CU",
740
- "CW",
741
- "CY",
742
- "CZ",
743
- "DK",
744
- "DJ",
745
- "DM",
746
- "DO",
747
- "EC",
748
- "EG",
749
- "SV",
750
- "GQ",
751
- "ER",
752
- "EE",
753
- "ET",
754
- "FK",
755
- "FO",
756
- "FJ",
757
- "FI",
758
- "FR",
759
- "GF",
760
- "PF",
761
- "TF",
762
- "GA",
763
- "GM",
764
- "GE",
765
- "DE",
766
- "GH",
767
- "GI",
768
- "GR",
769
- "GL",
770
- "GD",
771
- "GP",
772
- "GU",
773
- "GT",
774
- "GG",
775
- "GN",
776
- "GW",
777
- "GY",
778
- "HT",
779
- "HM",
780
- "VA",
781
- "HN",
782
- "HK",
783
- "HU",
784
- "IS",
785
- "IN",
786
- "ID",
787
- "IR",
788
- "IQ",
789
- "IE",
790
- "IM",
791
- "IL",
792
- "IT",
793
- "JM",
794
- "JP",
795
- "JE",
796
- "JO",
797
- "KZ",
798
- "KE",
799
- "KI",
800
- "KP",
801
- "KR",
802
- "KW",
803
- "KG",
804
- "LA",
805
- "LV",
806
- "LB",
807
- "LS",
808
- "LR",
809
- "LY",
810
- "LI",
811
- "LT",
812
- "LU",
813
- "MO",
814
- "MK",
815
- "MG",
816
- "MW",
817
- "MY",
818
- "MV",
819
- "ML",
820
- "MT",
821
- "MH",
822
- "MQ",
823
- "MR",
824
- "MU",
825
- "YT",
826
- "MX",
827
- "FM",
828
- "MD",
829
- "MC",
830
- "MN",
831
- "ME",
832
- "MS",
833
- "MA",
834
- "MZ",
835
- "MM",
836
- "NA",
837
- "NR",
838
- "NP",
839
- "NL",
840
- "NC",
841
- "NZ",
842
- "NI",
843
- "NE",
844
- "NG",
845
- "NU",
846
- "NF",
847
- "MP",
848
- "NO",
849
- "OM",
850
- "PK",
851
- "PW",
852
- "PS",
853
- "PA",
854
- "PG",
855
- "PY",
856
- "PE",
857
- "PH",
858
- "PN",
859
- "PL",
860
- "PT",
861
- "PR",
862
- "QA",
863
- "RE",
864
- "RO",
865
- "RU",
866
- "RW",
867
- "BL",
868
- "SH",
869
- "KN",
870
- "LC",
871
- "MF",
872
- "PM",
873
- "VC",
874
- "WS",
875
- "SM",
876
- "ST",
877
- "SA",
878
- "SN",
879
- "RS",
880
- "SC",
881
- "SL",
882
- "SG",
883
- "SX",
884
- "SK",
885
- "SI",
886
- "SB",
887
- "SO",
888
- "ZA",
889
- "GS",
890
- "SS",
891
- "ES",
892
- "LK",
893
- "SD",
894
- "SR",
895
- "SJ",
896
- "SZ",
897
- "SE",
898
- "CH",
899
- "SY",
900
- "TW",
901
- "TJ",
902
- "TZ",
903
- "TH",
904
- "TL",
905
- "TG",
906
- "TK",
907
- "TO",
908
- "TT",
909
- "TN",
910
- "TR",
911
- "TM",
912
- "TC",
913
- "TV",
914
- "UG",
915
- "UA",
916
- "AE",
917
- "GB",
918
- "US",
919
- "UM",
920
- "UY",
921
- "UZ",
922
- "VU",
923
- "VE",
924
- "VN",
925
- "VG",
926
- "VI",
927
- "WF",
928
- "EH",
929
- "YE",
930
- "ZM",
931
- "ZW"
932
- ]
933
- },
934
- "CountryCodes":{
935
- "type":"list",
936
- "member":{"shape":"CountryCode"},
937
- "min":1
938
- },
939
- "CreateIPSetRequest":{
940
- "type":"structure",
941
- "required":[
942
- "Name",
943
- "Scope",
944
- "IPAddressVersion",
945
- "Addresses"
946
- ],
947
- "members":{
948
- "Name":{"shape":"EntityName"},
949
- "Scope":{"shape":"Scope"},
950
- "Description":{"shape":"EntityDescription"},
951
- "IPAddressVersion":{"shape":"IPAddressVersion"},
952
- "Addresses":{"shape":"IPAddresses"},
953
- "Tags":{"shape":"TagList"}
954
- }
955
- },
956
- "CreateIPSetResponse":{
957
- "type":"structure",
958
- "members":{
959
- "Summary":{"shape":"IPSetSummary"}
960
- }
961
- },
962
- "CreateRegexPatternSetRequest":{
963
- "type":"structure",
964
- "required":[
965
- "Name",
966
- "Scope",
967
- "RegularExpressionList"
968
- ],
969
- "members":{
970
- "Name":{"shape":"EntityName"},
971
- "Scope":{"shape":"Scope"},
972
- "Description":{"shape":"EntityDescription"},
973
- "RegularExpressionList":{"shape":"RegularExpressionList"},
974
- "Tags":{"shape":"TagList"}
975
- }
976
- },
977
- "CreateRegexPatternSetResponse":{
978
- "type":"structure",
979
- "members":{
980
- "Summary":{"shape":"RegexPatternSetSummary"}
981
- }
982
- },
983
- "CreateRuleGroupRequest":{
984
- "type":"structure",
985
- "required":[
986
- "Name",
987
- "Scope",
988
- "Capacity",
989
- "VisibilityConfig"
990
- ],
991
- "members":{
992
- "Name":{"shape":"EntityName"},
993
- "Scope":{"shape":"Scope"},
994
- "Capacity":{"shape":"CapacityUnit"},
995
- "Description":{"shape":"EntityDescription"},
996
- "Rules":{"shape":"Rules"},
997
- "VisibilityConfig":{"shape":"VisibilityConfig"},
998
- "Tags":{"shape":"TagList"}
999
- }
1000
- },
1001
- "CreateRuleGroupResponse":{
1002
- "type":"structure",
1003
- "members":{
1004
- "Summary":{"shape":"RuleGroupSummary"}
1005
- }
1006
- },
1007
- "CreateWebACLRequest":{
1008
- "type":"structure",
1009
- "required":[
1010
- "Name",
1011
- "Scope",
1012
- "DefaultAction",
1013
- "VisibilityConfig"
1014
- ],
1015
- "members":{
1016
- "Name":{"shape":"EntityName"},
1017
- "Scope":{"shape":"Scope"},
1018
- "DefaultAction":{"shape":"DefaultAction"},
1019
- "Description":{"shape":"EntityDescription"},
1020
- "Rules":{"shape":"Rules"},
1021
- "VisibilityConfig":{"shape":"VisibilityConfig"},
1022
- "Tags":{"shape":"TagList"}
1023
- }
1024
- },
1025
- "CreateWebACLResponse":{
1026
- "type":"structure",
1027
- "members":{
1028
- "Summary":{"shape":"WebACLSummary"}
1029
- }
1030
- },
1031
- "DefaultAction":{
1032
- "type":"structure",
1033
- "members":{
1034
- "Block":{"shape":"BlockAction"},
1035
- "Allow":{"shape":"AllowAction"}
1036
- }
1037
- },
1038
- "DeleteIPSetRequest":{
1039
- "type":"structure",
1040
- "required":[
1041
- "Name",
1042
- "Scope",
1043
- "Id",
1044
- "LockToken"
1045
- ],
1046
- "members":{
1047
- "Name":{"shape":"EntityName"},
1048
- "Scope":{"shape":"Scope"},
1049
- "Id":{"shape":"EntityId"},
1050
- "LockToken":{"shape":"LockToken"}
1051
- }
1052
- },
1053
- "DeleteIPSetResponse":{
1054
- "type":"structure",
1055
- "members":{
1056
- }
1057
- },
1058
- "DeleteLoggingConfigurationRequest":{
1059
- "type":"structure",
1060
- "required":["ResourceArn"],
1061
- "members":{
1062
- "ResourceArn":{"shape":"ResourceArn"}
1063
- }
1064
- },
1065
- "DeleteLoggingConfigurationResponse":{
1066
- "type":"structure",
1067
- "members":{
1068
- }
1069
- },
1070
- "DeleteRegexPatternSetRequest":{
1071
- "type":"structure",
1072
- "required":[
1073
- "Name",
1074
- "Scope",
1075
- "Id",
1076
- "LockToken"
1077
- ],
1078
- "members":{
1079
- "Name":{"shape":"EntityName"},
1080
- "Scope":{"shape":"Scope"},
1081
- "Id":{"shape":"EntityId"},
1082
- "LockToken":{"shape":"LockToken"}
1083
- }
1084
- },
1085
- "DeleteRegexPatternSetResponse":{
1086
- "type":"structure",
1087
- "members":{
1088
- }
1089
- },
1090
- "DeleteRuleGroupRequest":{
1091
- "type":"structure",
1092
- "required":[
1093
- "Name",
1094
- "Scope",
1095
- "Id",
1096
- "LockToken"
1097
- ],
1098
- "members":{
1099
- "Name":{"shape":"EntityName"},
1100
- "Scope":{"shape":"Scope"},
1101
- "Id":{"shape":"EntityId"},
1102
- "LockToken":{"shape":"LockToken"}
1103
- }
1104
- },
1105
- "DeleteRuleGroupResponse":{
1106
- "type":"structure",
1107
- "members":{
1108
- }
1109
- },
1110
- "DeleteWebACLRequest":{
1111
- "type":"structure",
1112
- "required":[
1113
- "Name",
1114
- "Scope",
1115
- "Id",
1116
- "LockToken"
1117
- ],
1118
- "members":{
1119
- "Name":{"shape":"EntityName"},
1120
- "Scope":{"shape":"Scope"},
1121
- "Id":{"shape":"EntityId"},
1122
- "LockToken":{"shape":"LockToken"}
1123
- }
1124
- },
1125
- "DeleteWebACLResponse":{
1126
- "type":"structure",
1127
- "members":{
1128
- }
1129
- },
1130
- "DescribeManagedRuleGroupRequest":{
1131
- "type":"structure",
1132
- "required":[
1133
- "VendorName",
1134
- "Name",
1135
- "Scope"
1136
- ],
1137
- "members":{
1138
- "VendorName":{"shape":"VendorName"},
1139
- "Name":{"shape":"EntityName"},
1140
- "Scope":{"shape":"Scope"}
1141
- }
1142
- },
1143
- "DescribeManagedRuleGroupResponse":{
1144
- "type":"structure",
1145
- "members":{
1146
- "Capacity":{"shape":"CapacityUnit"},
1147
- "Rules":{"shape":"RuleSummaries"}
1148
- }
1149
- },
1150
- "DisassociateWebACLRequest":{
1151
- "type":"structure",
1152
- "required":["ResourceArn"],
1153
- "members":{
1154
- "ResourceArn":{"shape":"ResourceArn"}
1155
- }
1156
- },
1157
- "DisassociateWebACLResponse":{
1158
- "type":"structure",
1159
- "members":{
1160
- }
1161
- },
1162
- "EntityDescription":{
1163
- "type":"string",
1164
- "max":256,
1165
- "min":1,
1166
- "pattern":"^[\\w+=:#@/\\-,\\.][\\w+=:#@/\\-,\\.\\s]+[\\w+=:#@/\\-,\\.]$"
1167
- },
1168
- "EntityId":{
1169
- "type":"string",
1170
- "max":36,
1171
- "min":1,
1172
- "pattern":"^[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$"
1173
- },
1174
- "EntityName":{
1175
- "type":"string",
1176
- "max":128,
1177
- "min":1,
1178
- "pattern":"^[\\w\\-]+$"
1179
- },
1180
- "ErrorMessage":{"type":"string"},
1181
- "ErrorReason":{"type":"string"},
1182
- "ExcludedRule":{
1183
- "type":"structure",
1184
- "required":["Name"],
1185
- "members":{
1186
- "Name":{"shape":"EntityName"}
1187
- }
1188
- },
1189
- "ExcludedRules":{
1190
- "type":"list",
1191
- "member":{"shape":"ExcludedRule"}
1192
- },
1193
- "FieldToMatch":{
1194
- "type":"structure",
1195
- "members":{
1196
- "SingleHeader":{"shape":"SingleHeader"},
1197
- "SingleQueryArgument":{"shape":"SingleQueryArgument"},
1198
- "AllQueryArguments":{"shape":"AllQueryArguments"},
1199
- "UriPath":{"shape":"UriPath"},
1200
- "QueryString":{"shape":"QueryString"},
1201
- "Body":{"shape":"Body"},
1202
- "Method":{"shape":"Method"}
1203
- }
1204
- },
1205
- "FieldToMatchData":{
1206
- "type":"string",
1207
- "max":64,
1208
- "min":1,
1209
- "pattern":".*\\S.*"
1210
- },
1211
- "GeoMatchStatement":{
1212
- "type":"structure",
1213
- "members":{
1214
- "CountryCodes":{"shape":"CountryCodes"}
1215
- }
1216
- },
1217
- "GetIPSetRequest":{
1218
- "type":"structure",
1219
- "required":[
1220
- "Name",
1221
- "Scope",
1222
- "Id"
1223
- ],
1224
- "members":{
1225
- "Name":{"shape":"EntityName"},
1226
- "Scope":{"shape":"Scope"},
1227
- "Id":{"shape":"EntityId"}
1228
- }
1229
- },
1230
- "GetIPSetResponse":{
1231
- "type":"structure",
1232
- "members":{
1233
- "IPSet":{"shape":"IPSet"},
1234
- "LockToken":{"shape":"LockToken"}
1235
- }
1236
- },
1237
- "GetLoggingConfigurationRequest":{
1238
- "type":"structure",
1239
- "required":["ResourceArn"],
1240
- "members":{
1241
- "ResourceArn":{"shape":"ResourceArn"}
1242
- }
1243
- },
1244
- "GetLoggingConfigurationResponse":{
1245
- "type":"structure",
1246
- "members":{
1247
- "LoggingConfiguration":{"shape":"LoggingConfiguration"}
1248
- }
1249
- },
1250
- "GetRateBasedStatementManagedKeysRequest":{
1251
- "type":"structure",
1252
- "required":[
1253
- "Scope",
1254
- "WebACLName",
1255
- "WebACLId",
1256
- "RuleName"
1257
- ],
1258
- "members":{
1259
- "Scope":{"shape":"Scope"},
1260
- "WebACLName":{"shape":"EntityName"},
1261
- "WebACLId":{"shape":"EntityId"},
1262
- "RuleName":{"shape":"EntityName"}
1263
- }
1264
- },
1265
- "GetRateBasedStatementManagedKeysResponse":{
1266
- "type":"structure",
1267
- "members":{
1268
- "ManagedKeysIPV4":{"shape":"RateBasedStatementManagedKeysIPSet"},
1269
- "ManagedKeysIPV6":{"shape":"RateBasedStatementManagedKeysIPSet"}
1270
- }
1271
- },
1272
- "GetRegexPatternSetRequest":{
1273
- "type":"structure",
1274
- "required":[
1275
- "Name",
1276
- "Scope",
1277
- "Id"
1278
- ],
1279
- "members":{
1280
- "Name":{"shape":"EntityName"},
1281
- "Scope":{"shape":"Scope"},
1282
- "Id":{"shape":"EntityId"}
1283
- }
1284
- },
1285
- "GetRegexPatternSetResponse":{
1286
- "type":"structure",
1287
- "members":{
1288
- "RegexPatternSet":{"shape":"RegexPatternSet"},
1289
- "LockToken":{"shape":"LockToken"}
1290
- }
1291
- },
1292
- "GetRuleGroupRequest":{
1293
- "type":"structure",
1294
- "required":[
1295
- "Name",
1296
- "Scope",
1297
- "Id"
1298
- ],
1299
- "members":{
1300
- "Name":{"shape":"EntityName"},
1301
- "Scope":{"shape":"Scope"},
1302
- "Id":{"shape":"EntityId"}
1303
- }
1304
- },
1305
- "GetRuleGroupResponse":{
1306
- "type":"structure",
1307
- "members":{
1308
- "RuleGroup":{"shape":"RuleGroup"},
1309
- "LockToken":{"shape":"LockToken"}
1310
- }
1311
- },
1312
- "GetSampledRequestsRequest":{
1313
- "type":"structure",
1314
- "required":[
1315
- "WebAclArn",
1316
- "RuleMetricName",
1317
- "Scope",
1318
- "TimeWindow",
1319
- "MaxItems"
1320
- ],
1321
- "members":{
1322
- "WebAclArn":{"shape":"ResourceArn"},
1323
- "RuleMetricName":{"shape":"MetricName"},
1324
- "Scope":{"shape":"Scope"},
1325
- "TimeWindow":{"shape":"TimeWindow"},
1326
- "MaxItems":{"shape":"ListMaxItems"}
1327
- }
1328
- },
1329
- "GetSampledRequestsResponse":{
1330
- "type":"structure",
1331
- "members":{
1332
- "SampledRequests":{"shape":"SampledHTTPRequests"},
1333
- "PopulationSize":{"shape":"PopulationSize"},
1334
- "TimeWindow":{"shape":"TimeWindow"}
1335
- }
1336
- },
1337
- "GetWebACLForResourceRequest":{
1338
- "type":"structure",
1339
- "required":["ResourceArn"],
1340
- "members":{
1341
- "ResourceArn":{"shape":"ResourceArn"}
1342
- }
1343
- },
1344
- "GetWebACLForResourceResponse":{
1345
- "type":"structure",
1346
- "members":{
1347
- "WebACL":{"shape":"WebACL"}
1348
- }
1349
- },
1350
- "GetWebACLRequest":{
1351
- "type":"structure",
1352
- "required":[
1353
- "Name",
1354
- "Scope",
1355
- "Id"
1356
- ],
1357
- "members":{
1358
- "Name":{"shape":"EntityName"},
1359
- "Scope":{"shape":"Scope"},
1360
- "Id":{"shape":"EntityId"}
1361
- }
1362
- },
1363
- "GetWebACLResponse":{
1364
- "type":"structure",
1365
- "members":{
1366
- "WebACL":{"shape":"WebACL"},
1367
- "LockToken":{"shape":"LockToken"}
1368
- }
1369
- },
1370
- "HTTPHeader":{
1371
- "type":"structure",
1372
- "members":{
1373
- "Name":{"shape":"HeaderName"},
1374
- "Value":{"shape":"HeaderValue"}
1375
- }
1376
- },
1377
- "HTTPHeaders":{
1378
- "type":"list",
1379
- "member":{"shape":"HTTPHeader"}
1380
- },
1381
- "HTTPMethod":{"type":"string"},
1382
- "HTTPRequest":{
1383
- "type":"structure",
1384
- "members":{
1385
- "ClientIP":{"shape":"IPString"},
1386
- "Country":{"shape":"Country"},
1387
- "URI":{"shape":"URIString"},
1388
- "Method":{"shape":"HTTPMethod"},
1389
- "HTTPVersion":{"shape":"HTTPVersion"},
1390
- "Headers":{"shape":"HTTPHeaders"}
1391
- }
1392
- },
1393
- "HTTPVersion":{"type":"string"},
1394
- "HeaderName":{"type":"string"},
1395
- "HeaderValue":{"type":"string"},
1396
- "IPAddress":{
1397
- "type":"string",
1398
- "max":50,
1399
- "min":1,
1400
- "pattern":".*\\S.*"
1401
- },
1402
- "IPAddressVersion":{
1403
- "type":"string",
1404
- "enum":[
1405
- "IPV4",
1406
- "IPV6"
1407
- ]
1408
- },
1409
- "IPAddresses":{
1410
- "type":"list",
1411
- "member":{"shape":"IPAddress"}
1412
- },
1413
- "IPSet":{
1414
- "type":"structure",
1415
- "required":[
1416
- "Name",
1417
- "Id",
1418
- "ARN",
1419
- "IPAddressVersion",
1420
- "Addresses"
1421
- ],
1422
- "members":{
1423
- "Name":{"shape":"EntityName"},
1424
- "Id":{"shape":"EntityId"},
1425
- "ARN":{"shape":"ResourceArn"},
1426
- "Description":{"shape":"EntityDescription"},
1427
- "IPAddressVersion":{"shape":"IPAddressVersion"},
1428
- "Addresses":{"shape":"IPAddresses"}
1429
- }
1430
- },
1431
- "IPSetReferenceStatement":{
1432
- "type":"structure",
1433
- "required":["ARN"],
1434
- "members":{
1435
- "ARN":{"shape":"ResourceArn"}
1436
- }
1437
- },
1438
- "IPSetSummaries":{
1439
- "type":"list",
1440
- "member":{"shape":"IPSetSummary"}
1441
- },
1442
- "IPSetSummary":{
1443
- "type":"structure",
1444
- "members":{
1445
- "Name":{"shape":"EntityName"},
1446
- "Id":{"shape":"EntityId"},
1447
- "Description":{"shape":"EntityDescription"},
1448
- "LockToken":{"shape":"LockToken"},
1449
- "ARN":{"shape":"ResourceArn"}
1450
- }
1451
- },
1452
- "IPString":{"type":"string"},
1453
- "ListAvailableManagedRuleGroupsRequest":{
1454
- "type":"structure",
1455
- "required":["Scope"],
1456
- "members":{
1457
- "Scope":{"shape":"Scope"},
1458
- "NextMarker":{"shape":"NextMarker"},
1459
- "Limit":{"shape":"PaginationLimit"}
1460
- }
1461
- },
1462
- "ListAvailableManagedRuleGroupsResponse":{
1463
- "type":"structure",
1464
- "members":{
1465
- "NextMarker":{"shape":"NextMarker"},
1466
- "ManagedRuleGroups":{"shape":"ManagedRuleGroupSummaries"}
1467
- }
1468
- },
1469
- "ListIPSetsRequest":{
1470
- "type":"structure",
1471
- "required":["Scope"],
1472
- "members":{
1473
- "Scope":{"shape":"Scope"},
1474
- "NextMarker":{"shape":"NextMarker"},
1475
- "Limit":{"shape":"PaginationLimit"}
1476
- }
1477
- },
1478
- "ListIPSetsResponse":{
1479
- "type":"structure",
1480
- "members":{
1481
- "NextMarker":{"shape":"NextMarker"},
1482
- "IPSets":{"shape":"IPSetSummaries"}
1483
- }
1484
- },
1485
- "ListLoggingConfigurationsRequest":{
1486
- "type":"structure",
1487
- "members":{
1488
- "Scope":{"shape":"Scope"},
1489
- "NextMarker":{"shape":"NextMarker"},
1490
- "Limit":{"shape":"PaginationLimit"}
1491
- }
1492
- },
1493
- "ListLoggingConfigurationsResponse":{
1494
- "type":"structure",
1495
- "members":{
1496
- "LoggingConfigurations":{"shape":"LoggingConfigurations"},
1497
- "NextMarker":{"shape":"NextMarker"}
1498
- }
1499
- },
1500
- "ListMaxItems":{
1501
- "type":"long",
1502
- "max":500,
1503
- "min":1
1504
- },
1505
- "ListRegexPatternSetsRequest":{
1506
- "type":"structure",
1507
- "required":["Scope"],
1508
- "members":{
1509
- "Scope":{"shape":"Scope"},
1510
- "NextMarker":{"shape":"NextMarker"},
1511
- "Limit":{"shape":"PaginationLimit"}
1512
- }
1513
- },
1514
- "ListRegexPatternSetsResponse":{
1515
- "type":"structure",
1516
- "members":{
1517
- "NextMarker":{"shape":"NextMarker"},
1518
- "RegexPatternSets":{"shape":"RegexPatternSetSummaries"}
1519
- }
1520
- },
1521
- "ListResourcesForWebACLRequest":{
1522
- "type":"structure",
1523
- "required":["WebACLArn"],
1524
- "members":{
1525
- "WebACLArn":{"shape":"ResourceArn"},
1526
- "ResourceType":{"shape":"ResourceType"}
1527
- }
1528
- },
1529
- "ListResourcesForWebACLResponse":{
1530
- "type":"structure",
1531
- "members":{
1532
- "ResourceArns":{"shape":"ResourceArns"}
1533
- }
1534
- },
1535
- "ListRuleGroupsRequest":{
1536
- "type":"structure",
1537
- "required":["Scope"],
1538
- "members":{
1539
- "Scope":{"shape":"Scope"},
1540
- "NextMarker":{"shape":"NextMarker"},
1541
- "Limit":{"shape":"PaginationLimit"}
1542
- }
1543
- },
1544
- "ListRuleGroupsResponse":{
1545
- "type":"structure",
1546
- "members":{
1547
- "NextMarker":{"shape":"NextMarker"},
1548
- "RuleGroups":{"shape":"RuleGroupSummaries"}
1549
- }
1550
- },
1551
- "ListTagsForResourceRequest":{
1552
- "type":"structure",
1553
- "required":["ResourceARN"],
1554
- "members":{
1555
- "NextMarker":{"shape":"NextMarker"},
1556
- "Limit":{"shape":"PaginationLimit"},
1557
- "ResourceARN":{"shape":"ResourceArn"}
1558
- }
1559
- },
1560
- "ListTagsForResourceResponse":{
1561
- "type":"structure",
1562
- "members":{
1563
- "NextMarker":{"shape":"NextMarker"},
1564
- "TagInfoForResource":{"shape":"TagInfoForResource"}
1565
- }
1566
- },
1567
- "ListWebACLsRequest":{
1568
- "type":"structure",
1569
- "required":["Scope"],
1570
- "members":{
1571
- "Scope":{"shape":"Scope"},
1572
- "NextMarker":{"shape":"NextMarker"},
1573
- "Limit":{"shape":"PaginationLimit"}
1574
- }
1575
- },
1576
- "ListWebACLsResponse":{
1577
- "type":"structure",
1578
- "members":{
1579
- "NextMarker":{"shape":"NextMarker"},
1580
- "WebACLs":{"shape":"WebACLSummaries"}
1581
- }
1582
- },
1583
- "LockToken":{
1584
- "type":"string",
1585
- "max":36,
1586
- "min":1,
1587
- "pattern":"^[0-9a-f]{8}-(?:[0-9a-f]{4}-){3}[0-9a-f]{12}$"
1588
- },
1589
- "LogDestinationConfigs":{
1590
- "type":"list",
1591
- "member":{"shape":"ResourceArn"},
1592
- "max":100,
1593
- "min":1
1594
- },
1595
- "LoggingConfiguration":{
1596
- "type":"structure",
1597
- "required":[
1598
- "ResourceArn",
1599
- "LogDestinationConfigs"
1600
- ],
1601
- "members":{
1602
- "ResourceArn":{"shape":"ResourceArn"},
1603
- "LogDestinationConfigs":{"shape":"LogDestinationConfigs"},
1604
- "RedactedFields":{"shape":"RedactedFields"}
1605
- }
1606
- },
1607
- "LoggingConfigurations":{
1608
- "type":"list",
1609
- "member":{"shape":"LoggingConfiguration"}
1610
- },
1611
- "ManagedRuleGroupStatement":{
1612
- "type":"structure",
1613
- "required":[
1614
- "VendorName",
1615
- "Name"
1616
- ],
1617
- "members":{
1618
- "VendorName":{"shape":"VendorName"},
1619
- "Name":{"shape":"EntityName"},
1620
- "ExcludedRules":{"shape":"ExcludedRules"}
1621
- }
1622
- },
1623
- "ManagedRuleGroupSummaries":{
1624
- "type":"list",
1625
- "member":{"shape":"ManagedRuleGroupSummary"}
1626
- },
1627
- "ManagedRuleGroupSummary":{
1628
- "type":"structure",
1629
- "members":{
1630
- "VendorName":{"shape":"VendorName"},
1631
- "Name":{"shape":"EntityName"},
1632
- "Description":{"shape":"EntityDescription"}
1633
- }
1634
- },
1635
- "Method":{
1636
- "type":"structure",
1637
- "members":{
1638
- }
1639
- },
1640
- "MetricName":{
1641
- "type":"string",
1642
- "max":255,
1643
- "min":1,
1644
- "pattern":"^[\\w#:\\.\\-/]+$"
1645
- },
1646
- "NextMarker":{
1647
- "type":"string",
1648
- "max":256,
1649
- "min":1,
1650
- "pattern":".*\\S.*"
1651
- },
1652
- "NoneAction":{
1653
- "type":"structure",
1654
- "members":{
1655
- }
1656
- },
1657
- "NotStatement":{
1658
- "type":"structure",
1659
- "required":["Statement"],
1660
- "members":{
1661
- "Statement":{"shape":"Statement"}
1662
- }
1663
- },
1664
- "OrStatement":{
1665
- "type":"structure",
1666
- "required":["Statements"],
1667
- "members":{
1668
- "Statements":{"shape":"Statements"}
1669
- }
1670
- },
1671
- "OverrideAction":{
1672
- "type":"structure",
1673
- "members":{
1674
- "Count":{"shape":"CountAction"},
1675
- "None":{"shape":"NoneAction"}
1676
- }
1677
- },
1678
- "PaginationLimit":{
1679
- "type":"integer",
1680
- "max":100,
1681
- "min":1
1682
- },
1683
- "ParameterExceptionField":{
1684
- "type":"string",
1685
- "enum":[
1686
- "WEB_ACL",
1687
- "RULE_GROUP",
1688
- "REGEX_PATTERN_SET",
1689
- "IP_SET",
1690
- "MANAGED_RULE_SET",
1691
- "RULE",
1692
- "EXCLUDED_RULE",
1693
- "STATEMENT",
1694
- "BYTE_MATCH_STATEMENT",
1695
- "SQLI_MATCH_STATEMENT",
1696
- "XSS_MATCH_STATEMENT",
1697
- "SIZE_CONSTRAINT_STATEMENT",
1698
- "GEO_MATCH_STATEMENT",
1699
- "RATE_BASED_STATEMENT",
1700
- "RULE_GROUP_REFERENCE_STATEMENT",
1701
- "REGEX_PATTERN_REFERENCE_STATEMENT",
1702
- "IP_SET_REFERENCE_STATEMENT",
1703
- "MANAGED_RULE_SET_STATEMENT",
1704
- "AND_STATEMENT",
1705
- "OR_STATEMENT",
1706
- "NOT_STATEMENT",
1707
- "IP_ADDRESS",
1708
- "IP_ADDRESS_VERSION",
1709
- "FIELD_TO_MATCH",
1710
- "TEXT_TRANSFORMATION",
1711
- "SINGLE_QUERY_ARGUMENT",
1712
- "SINGLE_HEADER",
1713
- "DEFAULT_ACTION",
1714
- "RULE_ACTION",
1715
- "ENTITY_LIMIT",
1716
- "OVERRIDE_ACTION",
1717
- "SCOPE_VALUE",
1718
- "RESOURCE_ARN",
1719
- "RESOURCE_TYPE",
1720
- "TAGS",
1721
- "TAG_KEYS"
1722
- ]
1723
- },
1724
- "ParameterExceptionParameter":{
1725
- "type":"string",
1726
- "min":1
1727
- },
1728
- "PopulationSize":{"type":"long"},
1729
- "PositionalConstraint":{
1730
- "type":"string",
1731
- "enum":[
1732
- "EXACTLY",
1733
- "STARTS_WITH",
1734
- "ENDS_WITH",
1735
- "CONTAINS",
1736
- "CONTAINS_WORD"
1737
- ]
1738
- },
1739
- "PutLoggingConfigurationRequest":{
1740
- "type":"structure",
1741
- "required":["LoggingConfiguration"],
1742
- "members":{
1743
- "LoggingConfiguration":{"shape":"LoggingConfiguration"}
1744
- }
1745
- },
1746
- "PutLoggingConfigurationResponse":{
1747
- "type":"structure",
1748
- "members":{
1749
- "LoggingConfiguration":{"shape":"LoggingConfiguration"}
1750
- }
1751
- },
1752
- "QueryString":{
1753
- "type":"structure",
1754
- "members":{
1755
- }
1756
- },
1757
- "RateBasedStatement":{
1758
- "type":"structure",
1759
- "required":[
1760
- "Limit",
1761
- "AggregateKeyType"
1762
- ],
1763
- "members":{
1764
- "Limit":{"shape":"RateLimit"},
1765
- "AggregateKeyType":{"shape":"RateBasedStatementAggregateKeyType"},
1766
- "ScopeDownStatement":{"shape":"Statement"}
1767
- }
1768
- },
1769
- "RateBasedStatementAggregateKeyType":{
1770
- "type":"string",
1771
- "enum":["IP"]
1772
- },
1773
- "RateBasedStatementManagedKeysIPSet":{
1774
- "type":"structure",
1775
- "members":{
1776
- "IPAddressVersion":{"shape":"IPAddressVersion"},
1777
- "Addresses":{"shape":"IPAddresses"}
1778
- }
1779
- },
1780
- "RateLimit":{
1781
- "type":"long",
1782
- "max":2000000000,
1783
- "min":100
1784
- },
1785
- "RedactedFields":{
1786
- "type":"list",
1787
- "member":{"shape":"FieldToMatch"},
1788
- "max":100
1789
- },
1790
- "Regex":{
1791
- "type":"structure",
1792
- "members":{
1793
- "RegexString":{"shape":"RegexPatternString"}
1794
- }
1795
- },
1796
- "RegexPatternSet":{
1797
- "type":"structure",
1798
- "members":{
1799
- "Name":{"shape":"EntityName"},
1800
- "Id":{"shape":"EntityId"},
1801
- "ARN":{"shape":"ResourceArn"},
1802
- "Description":{"shape":"EntityDescription"},
1803
- "RegularExpressionList":{"shape":"RegularExpressionList"}
1804
- }
1805
- },
1806
- "RegexPatternSetReferenceStatement":{
1807
- "type":"structure",
1808
- "required":[
1809
- "ARN",
1810
- "FieldToMatch",
1811
- "TextTransformations"
1812
- ],
1813
- "members":{
1814
- "ARN":{"shape":"ResourceArn"},
1815
- "FieldToMatch":{"shape":"FieldToMatch"},
1816
- "TextTransformations":{"shape":"TextTransformations"}
1817
- }
1818
- },
1819
- "RegexPatternSetSummaries":{
1820
- "type":"list",
1821
- "member":{"shape":"RegexPatternSetSummary"}
1822
- },
1823
- "RegexPatternSetSummary":{
1824
- "type":"structure",
1825
- "members":{
1826
- "Name":{"shape":"EntityName"},
1827
- "Id":{"shape":"EntityId"},
1828
- "Description":{"shape":"EntityDescription"},
1829
- "LockToken":{"shape":"LockToken"},
1830
- "ARN":{"shape":"ResourceArn"}
1831
- }
1832
- },
1833
- "RegexPatternString":{
1834
- "type":"string",
1835
- "max":512,
1836
- "min":1,
1837
- "pattern":".*"
1838
- },
1839
- "RegularExpressionList":{
1840
- "type":"list",
1841
- "member":{"shape":"Regex"},
1842
- "min":1
1843
- },
1844
- "ResourceArn":{
1845
- "type":"string",
1846
- "max":2048,
1847
- "min":20,
1848
- "pattern":".*\\S.*"
1849
- },
1850
- "ResourceArns":{
1851
- "type":"list",
1852
- "member":{"shape":"ResourceArn"}
1853
- },
1854
- "ResourceType":{
1855
- "type":"string",
1856
- "enum":[
1857
- "APPLICATION_LOAD_BALANCER",
1858
- "API_GATEWAY"
1859
- ]
1860
- },
1861
- "Rule":{
1862
- "type":"structure",
1863
- "required":[
1864
- "Name",
1865
- "Priority",
1866
- "Statement",
1867
- "VisibilityConfig"
1868
- ],
1869
- "members":{
1870
- "Name":{"shape":"EntityName"},
1871
- "Priority":{"shape":"RulePriority"},
1872
- "Statement":{"shape":"Statement"},
1873
- "Action":{"shape":"RuleAction"},
1874
- "OverrideAction":{"shape":"OverrideAction"},
1875
- "VisibilityConfig":{"shape":"VisibilityConfig"}
1876
- }
1877
- },
1878
- "RuleAction":{
1879
- "type":"structure",
1880
- "members":{
1881
- "Block":{"shape":"BlockAction"},
1882
- "Allow":{"shape":"AllowAction"},
1883
- "Count":{"shape":"CountAction"}
1884
- }
1885
- },
1886
- "RuleGroup":{
1887
- "type":"structure",
1888
- "required":[
1889
- "Name",
1890
- "Id",
1891
- "Capacity",
1892
- "ARN",
1893
- "VisibilityConfig"
1894
- ],
1895
- "members":{
1896
- "Name":{"shape":"EntityName"},
1897
- "Id":{"shape":"EntityId"},
1898
- "Capacity":{"shape":"CapacityUnit"},
1899
- "ARN":{"shape":"ResourceArn"},
1900
- "Description":{"shape":"EntityDescription"},
1901
- "Rules":{"shape":"Rules"},
1902
- "VisibilityConfig":{"shape":"VisibilityConfig"}
1903
- }
1904
- },
1905
- "RuleGroupReferenceStatement":{
1906
- "type":"structure",
1907
- "required":["ARN"],
1908
- "members":{
1909
- "ARN":{"shape":"ResourceArn"},
1910
- "ExcludedRules":{"shape":"ExcludedRules"}
1911
- }
1912
- },
1913
- "RuleGroupSummaries":{
1914
- "type":"list",
1915
- "member":{"shape":"RuleGroupSummary"}
1916
- },
1917
- "RuleGroupSummary":{
1918
- "type":"structure",
1919
- "members":{
1920
- "Name":{"shape":"EntityName"},
1921
- "Id":{"shape":"EntityId"},
1922
- "Description":{"shape":"EntityDescription"},
1923
- "LockToken":{"shape":"LockToken"},
1924
- "ARN":{"shape":"ResourceArn"}
1925
- }
1926
- },
1927
- "RulePriority":{
1928
- "type":"integer",
1929
- "min":0
1930
- },
1931
- "RuleSummaries":{
1932
- "type":"list",
1933
- "member":{"shape":"RuleSummary"}
1934
- },
1935
- "RuleSummary":{
1936
- "type":"structure",
1937
- "members":{
1938
- "Name":{"shape":"EntityName"},
1939
- "Action":{"shape":"RuleAction"}
1940
- }
1941
- },
1942
- "Rules":{
1943
- "type":"list",
1944
- "member":{"shape":"Rule"}
1945
- },
1946
- "SampleWeight":{
1947
- "type":"long",
1948
- "min":0
1949
- },
1950
- "SampledHTTPRequest":{
1951
- "type":"structure",
1952
- "required":[
1953
- "Request",
1954
- "Weight"
1955
- ],
1956
- "members":{
1957
- "Request":{"shape":"HTTPRequest"},
1958
- "Weight":{"shape":"SampleWeight"},
1959
- "Timestamp":{"shape":"Timestamp"},
1960
- "Action":{"shape":"Action"},
1961
- "RuleNameWithinRuleGroup":{"shape":"EntityName"}
1962
- }
1963
- },
1964
- "SampledHTTPRequests":{
1965
- "type":"list",
1966
- "member":{"shape":"SampledHTTPRequest"}
1967
- },
1968
- "Scope":{
1969
- "type":"string",
1970
- "enum":[
1971
- "CLOUDFRONT",
1972
- "REGIONAL"
1973
- ]
1974
- },
1975
- "SearchString":{"type":"blob"},
1976
- "SingleHeader":{
1977
- "type":"structure",
1978
- "required":["Name"],
1979
- "members":{
1980
- "Name":{"shape":"FieldToMatchData"}
1981
- }
1982
- },
1983
- "SingleQueryArgument":{
1984
- "type":"structure",
1985
- "required":["Name"],
1986
- "members":{
1987
- "Name":{"shape":"FieldToMatchData"}
1988
- }
1989
- },
1990
- "Size":{
1991
- "type":"long",
1992
- "max":21474836480,
1993
- "min":0
1994
- },
1995
- "SizeConstraintStatement":{
1996
- "type":"structure",
1997
- "required":[
1998
- "FieldToMatch",
1999
- "ComparisonOperator",
2000
- "Size",
2001
- "TextTransformations"
2002
- ],
2003
- "members":{
2004
- "FieldToMatch":{"shape":"FieldToMatch"},
2005
- "ComparisonOperator":{"shape":"ComparisonOperator"},
2006
- "Size":{"shape":"Size"},
2007
- "TextTransformations":{"shape":"TextTransformations"}
2008
- }
2009
- },
2010
- "SqliMatchStatement":{
2011
- "type":"structure",
2012
- "required":[
2013
- "FieldToMatch",
2014
- "TextTransformations"
2015
- ],
2016
- "members":{
2017
- "FieldToMatch":{"shape":"FieldToMatch"},
2018
- "TextTransformations":{"shape":"TextTransformations"}
2019
- }
2020
- },
2021
- "Statement":{
2022
- "type":"structure",
2023
- "members":{
2024
- "ByteMatchStatement":{"shape":"ByteMatchStatement"},
2025
- "SqliMatchStatement":{"shape":"SqliMatchStatement"},
2026
- "XssMatchStatement":{"shape":"XssMatchStatement"},
2027
- "SizeConstraintStatement":{"shape":"SizeConstraintStatement"},
2028
- "GeoMatchStatement":{"shape":"GeoMatchStatement"},
2029
- "RuleGroupReferenceStatement":{"shape":"RuleGroupReferenceStatement"},
2030
- "IPSetReferenceStatement":{"shape":"IPSetReferenceStatement"},
2031
- "RegexPatternSetReferenceStatement":{"shape":"RegexPatternSetReferenceStatement"},
2032
- "RateBasedStatement":{"shape":"RateBasedStatement"},
2033
- "AndStatement":{"shape":"AndStatement"},
2034
- "OrStatement":{"shape":"OrStatement"},
2035
- "NotStatement":{"shape":"NotStatement"},
2036
- "ManagedRuleGroupStatement":{"shape":"ManagedRuleGroupStatement"}
2037
- }
2038
- },
2039
- "Statements":{
2040
- "type":"list",
2041
- "member":{"shape":"Statement"}
2042
- },
2043
- "Tag":{
2044
- "type":"structure",
2045
- "required":[
2046
- "Key",
2047
- "Value"
2048
- ],
2049
- "members":{
2050
- "Key":{"shape":"TagKey"},
2051
- "Value":{"shape":"TagValue"}
2052
- }
2053
- },
2054
- "TagInfoForResource":{
2055
- "type":"structure",
2056
- "members":{
2057
- "ResourceARN":{"shape":"ResourceArn"},
2058
- "TagList":{"shape":"TagList"}
2059
- }
2060
- },
2061
- "TagKey":{
2062
- "type":"string",
2063
- "max":128,
2064
- "min":1,
2065
- "pattern":".*\\S.*"
2066
- },
2067
- "TagKeyList":{
2068
- "type":"list",
2069
- "member":{"shape":"TagKey"},
2070
- "min":1
2071
- },
2072
- "TagList":{
2073
- "type":"list",
2074
- "member":{"shape":"Tag"},
2075
- "min":1
2076
- },
2077
- "TagResourceRequest":{
2078
- "type":"structure",
2079
- "required":[
2080
- "ResourceARN",
2081
- "Tags"
2082
- ],
2083
- "members":{
2084
- "ResourceARN":{"shape":"ResourceArn"},
2085
- "Tags":{"shape":"TagList"}
2086
- }
2087
- },
2088
- "TagResourceResponse":{
2089
- "type":"structure",
2090
- "members":{
2091
- }
2092
- },
2093
- "TagValue":{
2094
- "type":"string",
2095
- "max":256,
2096
- "min":0,
2097
- "pattern":".*"
2098
- },
2099
- "TextTransformation":{
2100
- "type":"structure",
2101
- "required":[
2102
- "Priority",
2103
- "Type"
2104
- ],
2105
- "members":{
2106
- "Priority":{"shape":"TextTransformationPriority"},
2107
- "Type":{"shape":"TextTransformationType"}
2108
- }
2109
- },
2110
- "TextTransformationPriority":{
2111
- "type":"integer",
2112
- "min":0
2113
- },
2114
- "TextTransformationType":{
2115
- "type":"string",
2116
- "enum":[
2117
- "NONE",
2118
- "COMPRESS_WHITE_SPACE",
2119
- "HTML_ENTITY_DECODE",
2120
- "LOWERCASE",
2121
- "CMD_LINE",
2122
- "URL_DECODE"
2123
- ]
2124
- },
2125
- "TextTransformations":{
2126
- "type":"list",
2127
- "member":{"shape":"TextTransformation"},
2128
- "min":1
2129
- },
2130
- "TimeWindow":{
2131
- "type":"structure",
2132
- "required":[
2133
- "StartTime",
2134
- "EndTime"
2135
- ],
2136
- "members":{
2137
- "StartTime":{"shape":"Timestamp"},
2138
- "EndTime":{"shape":"Timestamp"}
2139
- }
2140
- },
2141
- "Timestamp":{"type":"timestamp"},
2142
- "URIString":{"type":"string"},
2143
- "UntagResourceRequest":{
2144
- "type":"structure",
2145
- "required":[
2146
- "ResourceARN",
2147
- "TagKeys"
2148
- ],
2149
- "members":{
2150
- "ResourceARN":{"shape":"ResourceArn"},
2151
- "TagKeys":{"shape":"TagKeyList"}
2152
- }
2153
- },
2154
- "UntagResourceResponse":{
2155
- "type":"structure",
2156
- "members":{
2157
- }
2158
- },
2159
- "UpdateIPSetRequest":{
2160
- "type":"structure",
2161
- "required":[
2162
- "Name",
2163
- "Scope",
2164
- "Id",
2165
- "Addresses",
2166
- "LockToken"
2167
- ],
2168
- "members":{
2169
- "Name":{"shape":"EntityName"},
2170
- "Scope":{"shape":"Scope"},
2171
- "Id":{"shape":"EntityId"},
2172
- "Description":{"shape":"EntityDescription"},
2173
- "Addresses":{"shape":"IPAddresses"},
2174
- "LockToken":{"shape":"LockToken"}
2175
- }
2176
- },
2177
- "UpdateIPSetResponse":{
2178
- "type":"structure",
2179
- "members":{
2180
- "NextLockToken":{"shape":"LockToken"}
2181
- }
2182
- },
2183
- "UpdateRegexPatternSetRequest":{
2184
- "type":"structure",
2185
- "required":[
2186
- "Name",
2187
- "Scope",
2188
- "Id",
2189
- "RegularExpressionList",
2190
- "LockToken"
2191
- ],
2192
- "members":{
2193
- "Name":{"shape":"EntityName"},
2194
- "Scope":{"shape":"Scope"},
2195
- "Id":{"shape":"EntityId"},
2196
- "Description":{"shape":"EntityDescription"},
2197
- "RegularExpressionList":{"shape":"RegularExpressionList"},
2198
- "LockToken":{"shape":"LockToken"}
2199
- }
2200
- },
2201
- "UpdateRegexPatternSetResponse":{
2202
- "type":"structure",
2203
- "members":{
2204
- "NextLockToken":{"shape":"LockToken"}
2205
- }
2206
- },
2207
- "UpdateRuleGroupRequest":{
2208
- "type":"structure",
2209
- "required":[
2210
- "Name",
2211
- "Scope",
2212
- "Id",
2213
- "VisibilityConfig",
2214
- "LockToken"
2215
- ],
2216
- "members":{
2217
- "Name":{"shape":"EntityName"},
2218
- "Scope":{"shape":"Scope"},
2219
- "Id":{"shape":"EntityId"},
2220
- "Description":{"shape":"EntityDescription"},
2221
- "Rules":{"shape":"Rules"},
2222
- "VisibilityConfig":{"shape":"VisibilityConfig"},
2223
- "LockToken":{"shape":"LockToken"}
2224
- }
2225
- },
2226
- "UpdateRuleGroupResponse":{
2227
- "type":"structure",
2228
- "members":{
2229
- "NextLockToken":{"shape":"LockToken"}
2230
- }
2231
- },
2232
- "UpdateWebACLRequest":{
2233
- "type":"structure",
2234
- "required":[
2235
- "Name",
2236
- "Scope",
2237
- "Id",
2238
- "DefaultAction",
2239
- "VisibilityConfig",
2240
- "LockToken"
2241
- ],
2242
- "members":{
2243
- "Name":{"shape":"EntityName"},
2244
- "Scope":{"shape":"Scope"},
2245
- "Id":{"shape":"EntityId"},
2246
- "DefaultAction":{"shape":"DefaultAction"},
2247
- "Description":{"shape":"EntityDescription"},
2248
- "Rules":{"shape":"Rules"},
2249
- "VisibilityConfig":{"shape":"VisibilityConfig"},
2250
- "LockToken":{"shape":"LockToken"}
2251
- }
2252
- },
2253
- "UpdateWebACLResponse":{
2254
- "type":"structure",
2255
- "members":{
2256
- "NextLockToken":{"shape":"LockToken"}
2257
- }
2258
- },
2259
- "UriPath":{
2260
- "type":"structure",
2261
- "members":{
2262
- }
2263
- },
2264
- "VendorName":{
2265
- "type":"string",
2266
- "max":128,
2267
- "min":1,
2268
- "pattern":".*\\S.*"
2269
- },
2270
- "VisibilityConfig":{
2271
- "type":"structure",
2272
- "required":[
2273
- "SampledRequestsEnabled",
2274
- "CloudWatchMetricsEnabled",
2275
- "MetricName"
2276
- ],
2277
- "members":{
2278
- "SampledRequestsEnabled":{"shape":"Boolean"},
2279
- "CloudWatchMetricsEnabled":{"shape":"Boolean"},
2280
- "MetricName":{"shape":"MetricName"}
2281
- }
2282
- },
2283
- "WAFAssociatedItemException":{
2284
- "type":"structure",
2285
- "members":{
2286
- "Message":{"shape":"ErrorMessage"}
2287
- },
2288
- "exception":true
2289
- },
2290
- "WAFDuplicateItemException":{
2291
- "type":"structure",
2292
- "members":{
2293
- "Message":{"shape":"ErrorMessage"}
2294
- },
2295
- "exception":true
2296
- },
2297
- "WAFInternalErrorException":{
2298
- "type":"structure",
2299
- "members":{
2300
- "Message":{"shape":"ErrorMessage"}
2301
- },
2302
- "exception":true,
2303
- "fault":true
2304
- },
2305
- "WAFInvalidParameterException":{
2306
- "type":"structure",
2307
- "members":{
2308
- "message":{"shape":"ErrorMessage"},
2309
- "Field":{"shape":"ParameterExceptionField"},
2310
- "Parameter":{"shape":"ParameterExceptionParameter"},
2311
- "Reason":{"shape":"ErrorReason"}
2312
- },
2313
- "exception":true
2314
- },
2315
- "WAFInvalidResourceException":{
2316
- "type":"structure",
2317
- "members":{
2318
- "Message":{"shape":"ErrorMessage"}
2319
- },
2320
- "exception":true
2321
- },
2322
- "WAFLimitsExceededException":{
2323
- "type":"structure",
2324
- "members":{
2325
- "Message":{"shape":"ErrorMessage"}
2326
- },
2327
- "exception":true
2328
- },
2329
- "WAFNonexistentItemException":{
2330
- "type":"structure",
2331
- "members":{
2332
- "Message":{"shape":"ErrorMessage"}
2333
- },
2334
- "exception":true
2335
- },
2336
- "WAFOptimisticLockException":{
2337
- "type":"structure",
2338
- "members":{
2339
- "Message":{"shape":"ErrorMessage"}
2340
- },
2341
- "exception":true
2342
- },
2343
- "WAFServiceLinkedRoleErrorException":{
2344
- "type":"structure",
2345
- "members":{
2346
- "message":{"shape":"ErrorMessage"}
2347
- },
2348
- "exception":true
2349
- },
2350
- "WAFTagOperationException":{
2351
- "type":"structure",
2352
- "members":{
2353
- "Message":{"shape":"ErrorMessage"}
2354
- },
2355
- "exception":true
2356
- },
2357
- "WAFTagOperationInternalErrorException":{
2358
- "type":"structure",
2359
- "members":{
2360
- "Message":{"shape":"ErrorMessage"}
2361
- },
2362
- "exception":true,
2363
- "fault":true
2364
- },
2365
- "WAFUnavailableEntityException":{
2366
- "type":"structure",
2367
- "members":{
2368
- "Message":{"shape":"ErrorMessage"}
2369
- },
2370
- "exception":true
2371
- },
2372
- "WebACL":{
2373
- "type":"structure",
2374
- "required":[
2375
- "Name",
2376
- "Id",
2377
- "ARN",
2378
- "DefaultAction",
2379
- "VisibilityConfig"
2380
- ],
2381
- "members":{
2382
- "Name":{"shape":"EntityName"},
2383
- "Id":{"shape":"EntityId"},
2384
- "ARN":{"shape":"ResourceArn"},
2385
- "DefaultAction":{"shape":"DefaultAction"},
2386
- "Description":{"shape":"EntityDescription"},
2387
- "Rules":{"shape":"Rules"},
2388
- "VisibilityConfig":{"shape":"VisibilityConfig"},
2389
- "Capacity":{"shape":"ConsumedCapacity"}
2390
- }
2391
- },
2392
- "WebACLSummaries":{
2393
- "type":"list",
2394
- "member":{"shape":"WebACLSummary"}
2395
- },
2396
- "WebACLSummary":{
2397
- "type":"structure",
2398
- "members":{
2399
- "Name":{"shape":"EntityName"},
2400
- "Id":{"shape":"EntityId"},
2401
- "Description":{"shape":"EntityDescription"},
2402
- "LockToken":{"shape":"LockToken"},
2403
- "ARN":{"shape":"ResourceArn"}
2404
- }
2405
- },
2406
- "XssMatchStatement":{
2407
- "type":"structure",
2408
- "required":[
2409
- "FieldToMatch",
2410
- "TextTransformations"
2411
- ],
2412
- "members":{
2413
- "FieldToMatch":{"shape":"FieldToMatch"},
2414
- "TextTransformations":{"shape":"TextTransformations"}
2415
- }
2416
- }
2417
- }
2418
- }