aws-sdk-core 2.11.404 → 3.75.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1212) hide show
  1. checksums.yaml +4 -4
  2. data/VERSION +1 -0
  3. data/lib/aws-sdk-core.rb +84 -562
  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 +24 -16
  55. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  56. data/lib/aws-sdk-core/plugins/retry_errors.rb +81 -25
  57. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  58. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  59. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  60. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  61. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -6
  62. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  63. data/lib/aws-sdk-core/query.rb +5 -0
  64. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  65. data/lib/aws-sdk-core/query/handler.rb +20 -16
  66. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  67. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  68. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  69. data/lib/aws-sdk-core/rest.rb +10 -0
  70. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  71. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  72. data/lib/aws-sdk-core/rest/request/endpoint.rb +3 -3
  73. data/lib/aws-sdk-core/rest/request/headers.rb +11 -1
  74. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +13 -0
  75. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  76. data/lib/aws-sdk-core/rest/response/headers.rb +2 -0
  77. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  78. data/lib/aws-sdk-core/shared_config.rb +172 -15
  79. data/lib/aws-sdk-core/shared_credentials.rb +2 -0
  80. data/lib/aws-sdk-core/structure.rb +22 -13
  81. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  82. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  83. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  84. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  85. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +92 -0
  86. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  87. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  88. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  89. data/lib/aws-sdk-core/util.rb +66 -0
  90. data/lib/aws-sdk-core/waiters.rb +3 -0
  91. data/lib/aws-sdk-core/waiters/poller.rb +5 -9
  92. data/lib/aws-sdk-core/waiters/waiter.rb +1 -0
  93. data/lib/aws-sdk-core/xml.rb +9 -0
  94. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  95. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  96. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  97. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  98. data/lib/aws-sdk-sts.rb +45 -0
  99. data/lib/aws-sdk-sts/client.rb +1840 -0
  100. data/lib/aws-sdk-sts/client_api.rb +320 -0
  101. data/lib/aws-sdk-sts/customizations.rb +0 -0
  102. data/lib/aws-sdk-sts/errors.rb +142 -0
  103. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  104. data/lib/aws-sdk-sts/resource.rb +23 -0
  105. data/lib/aws-sdk-sts/types.rb +1312 -0
  106. data/lib/seahorse.rb +60 -60
  107. data/lib/seahorse/client/async_base.rb +50 -0
  108. data/lib/seahorse/client/async_response.rb +62 -0
  109. data/lib/seahorse/client/base.rb +5 -9
  110. data/lib/seahorse/client/configuration.rb +4 -2
  111. data/lib/seahorse/client/h2/connection.rb +244 -0
  112. data/lib/seahorse/client/h2/handler.rb +151 -0
  113. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  114. data/lib/seahorse/client/http/async_response.rb +42 -0
  115. data/lib/seahorse/client/http/response.rb +10 -5
  116. data/lib/seahorse/client/logging/formatter.rb +2 -0
  117. data/lib/seahorse/client/logging/handler.rb +2 -0
  118. data/lib/seahorse/client/net_http/connection_pool.rb +16 -4
  119. data/lib/seahorse/client/net_http/handler.rb +5 -0
  120. data/lib/seahorse/client/net_http/patches.rb +9 -1
  121. data/lib/seahorse/client/networking_error.rb +28 -0
  122. data/lib/seahorse/client/plugin.rb +66 -6
  123. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  124. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  125. data/lib/seahorse/client/plugins/h2.rb +64 -0
  126. data/lib/seahorse/client/plugins/logging.rb +17 -19
  127. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  128. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  129. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  130. data/lib/seahorse/client/request_context.rb +5 -0
  131. data/lib/seahorse/model/api.rb +33 -0
  132. data/lib/seahorse/model/authorizer.rb +21 -0
  133. data/lib/seahorse/model/operation.rb +11 -0
  134. data/lib/seahorse/model/shapes.rb +44 -2
  135. data/lib/seahorse/util.rb +1 -22
  136. metadata +98 -1085
  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/acm-pca/2017-08-22/api-2.json +0 -1091
  141. data/apis/acm-pca/2017-08-22/examples-1.json +0 -5
  142. data/apis/acm-pca/2017-08-22/paginators-1.json +0 -22
  143. data/apis/acm-pca/2017-08-22/waiters-2.json +0 -61
  144. data/apis/acm/2015-12-08/api-2.json +0 -872
  145. data/apis/acm/2015-12-08/examples-1.json +0 -5
  146. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  147. data/apis/acm/2015-12-08/smoke.json +0 -18
  148. data/apis/acm/2015-12-08/waiters-2.json +0 -35
  149. data/apis/alexaforbusiness/2017-11-09/api-2.json +0 -4003
  150. data/apis/alexaforbusiness/2017-11-09/examples-1.json +0 -5
  151. data/apis/alexaforbusiness/2017-11-09/paginators-1.json +0 -94
  152. data/apis/amplify/2017-07-25/api-2.json +0 -2374
  153. data/apis/amplify/2017-07-25/examples-1.json +0 -5
  154. data/apis/amplify/2017-07-25/paginators-1.json +0 -4
  155. data/apis/apigateway/2015-07-09/api-2.json +0 -5384
  156. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  157. data/apis/apigateway/2015-07-09/paginators-1.json +0 -76
  158. data/apis/apigateway/2015-07-09/smoke.json +0 -20
  159. data/apis/apigatewaymanagementapi/2018-11-29/api-2.json +0 -192
  160. data/apis/apigatewaymanagementapi/2018-11-29/paginators-1.json +0 -3
  161. data/apis/apigatewayv2/2018-11-29/api-2.json +0 -5773
  162. data/apis/apigatewayv2/2018-11-29/paginators-1.json +0 -3
  163. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -779
  164. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -384
  165. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -28
  166. data/apis/application-autoscaling/2016-02-06/smoke.json +0 -13
  167. data/apis/application-insights/2018-11-25/api-2.json +0 -721
  168. data/apis/application-insights/2018-11-25/examples-1.json +0 -5
  169. data/apis/application-insights/2018-11-25/paginators-1.json +0 -19
  170. data/apis/appmesh/2018-10-01/api-2.json +0 -1972
  171. data/apis/appmesh/2018-10-01/examples-1.json +0 -4
  172. data/apis/appmesh/2018-10-01/paginators-1.json +0 -28
  173. data/apis/appmesh/2019-01-25/api-2.json +0 -3424
  174. data/apis/appmesh/2019-01-25/examples-1.json +0 -4
  175. data/apis/appmesh/2019-01-25/paginators-1.json +0 -40
  176. data/apis/appstream/2016-12-01/api-2.json +0 -2356
  177. data/apis/appstream/2016-12-01/examples-1.json +0 -5
  178. data/apis/appstream/2016-12-01/paginators-1.json +0 -14
  179. data/apis/appstream/2016-12-01/smoke.json +0 -11
  180. data/apis/appstream/2016-12-01/waiters-2.json +0 -55
  181. data/apis/appsync/2017-07-25/api-2.json +0 -2285
  182. data/apis/appsync/2017-07-25/examples-1.json +0 -5
  183. data/apis/appsync/2017-07-25/paginators-1.json +0 -4
  184. data/apis/athena/2017-05-18/api-2.json +0 -985
  185. data/apis/athena/2017-05-18/examples-1.json +0 -5
  186. data/apis/athena/2017-05-18/paginators-1.json +0 -24
  187. data/apis/athena/2017-05-18/smoke.json +0 -11
  188. data/apis/autoscaling-plans/2018-01-06/api-2.json +0 -659
  189. data/apis/autoscaling-plans/2018-01-06/examples-1.json +0 -5
  190. data/apis/autoscaling-plans/2018-01-06/paginators-1.json +0 -4
  191. data/apis/autoscaling/2011-01-01/api-2.json +0 -2464
  192. data/apis/autoscaling/2011-01-01/examples-1.json +0 -1396
  193. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  194. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1624
  195. data/apis/autoscaling/2011-01-01/smoke.json +0 -20
  196. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  197. data/apis/backup/2018-11-15/api-2.json +0 -2150
  198. data/apis/backup/2018-11-15/examples-1.json +0 -5
  199. data/apis/backup/2018-11-15/paginators-1.json +0 -59
  200. data/apis/batch/2016-08-10/api-2.json +0 -1137
  201. data/apis/batch/2016-08-10/examples-1.json +0 -589
  202. data/apis/batch/2016-08-10/paginators-1.json +0 -28
  203. data/apis/batch/2016-08-10/smoke.json +0 -11
  204. data/apis/budgets/2016-10-20/api-2.json +0 -830
  205. data/apis/budgets/2016-10-20/examples-1.json +0 -5
  206. data/apis/budgets/2016-10-20/paginators-1.json +0 -4
  207. data/apis/ce/2017-10-25/api-2.json +0 -1387
  208. data/apis/ce/2017-10-25/examples-1.json +0 -5
  209. data/apis/ce/2017-10-25/paginators-1.json +0 -14
  210. data/apis/chime/2018-05-01/api-2.json +0 -4483
  211. data/apis/chime/2018-05-01/examples-1.json +0 -5
  212. data/apis/chime/2018-05-01/paginators-1.json +0 -59
  213. data/apis/cloud9/2017-09-23/api-2.json +0 -549
  214. data/apis/cloud9/2017-09-23/examples-1.json +0 -315
  215. data/apis/cloud9/2017-09-23/paginators-1.json +0 -14
  216. data/apis/clouddirectory/2016-05-10/api-2.json +0 -4244
  217. data/apis/clouddirectory/2016-05-10/examples-1.json +0 -5
  218. data/apis/clouddirectory/2016-05-10/paginators-1.json +0 -94
  219. data/apis/clouddirectory/2017-01-11/api-2.json +0 -4321
  220. data/apis/clouddirectory/2017-01-11/examples-1.json +0 -5
  221. data/apis/clouddirectory/2017-01-11/paginators-1.json +0 -99
  222. data/apis/cloudformation/2010-05-15/api-2.json +0 -3389
  223. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  224. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -57
  225. data/apis/cloudformation/2010-05-15/resources-1.json +0 -211
  226. data/apis/cloudformation/2010-05-15/smoke.json +0 -19
  227. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -257
  228. data/apis/cloudfront/2016-01-28/api-2.json +0 -2219
  229. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  230. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  231. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  232. data/apis/cloudfront/2016-08-01/api-2.json +0 -2548
  233. data/apis/cloudfront/2016-08-01/examples-1.json +0 -5
  234. data/apis/cloudfront/2016-08-01/paginators-1.json +0 -32
  235. data/apis/cloudfront/2016-08-01/waiters-2.json +0 -47
  236. data/apis/cloudfront/2016-08-20/api-2.json +0 -2586
  237. data/apis/cloudfront/2016-08-20/paginators-1.json +0 -32
  238. data/apis/cloudfront/2016-08-20/waiters-2.json +0 -47
  239. data/apis/cloudfront/2016-09-07/api-2.json +0 -2596
  240. data/apis/cloudfront/2016-09-07/examples-1.json +0 -5
  241. data/apis/cloudfront/2016-09-07/paginators-1.json +0 -32
  242. data/apis/cloudfront/2016-09-07/waiters-2.json +0 -47
  243. data/apis/cloudfront/2016-09-29/api-2.json +0 -2599
  244. data/apis/cloudfront/2016-09-29/examples-1.json +0 -5
  245. data/apis/cloudfront/2016-09-29/paginators-1.json +0 -32
  246. data/apis/cloudfront/2016-09-29/waiters-2.json +0 -47
  247. data/apis/cloudfront/2016-11-25/api-2.json +0 -2665
  248. data/apis/cloudfront/2016-11-25/examples-1.json +0 -5
  249. data/apis/cloudfront/2016-11-25/paginators-1.json +0 -32
  250. data/apis/cloudfront/2016-11-25/waiters-2.json +0 -47
  251. data/apis/cloudfront/2017-03-25/api-2.json +0 -2726
  252. data/apis/cloudfront/2017-03-25/examples-1.json +0 -83
  253. data/apis/cloudfront/2017-03-25/paginators-1.json +0 -32
  254. data/apis/cloudfront/2017-03-25/waiters-2.json +0 -47
  255. data/apis/cloudfront/2017-10-30/api-2.json +0 -3906
  256. data/apis/cloudfront/2017-10-30/examples-1.json +0 -5
  257. data/apis/cloudfront/2017-10-30/paginators-1.json +0 -32
  258. data/apis/cloudfront/2017-10-30/smoke.json +0 -20
  259. data/apis/cloudfront/2017-10-30/waiters-2.json +0 -47
  260. data/apis/cloudfront/2018-06-18/api-2.json +0 -3907
  261. data/apis/cloudfront/2018-06-18/examples-1.json +0 -5
  262. data/apis/cloudfront/2018-06-18/paginators-1.json +0 -32
  263. data/apis/cloudfront/2018-06-18/smoke.json +0 -20
  264. data/apis/cloudfront/2018-06-18/waiters-2.json +0 -47
  265. data/apis/cloudfront/2018-11-05/api-2.json +0 -4004
  266. data/apis/cloudfront/2018-11-05/examples-1.json +0 -5
  267. data/apis/cloudfront/2018-11-05/paginators-1.json +0 -32
  268. data/apis/cloudfront/2018-11-05/smoke.json +0 -20
  269. data/apis/cloudfront/2018-11-05/waiters-2.json +0 -47
  270. data/apis/cloudfront/2019-03-26/api-2.json +0 -4032
  271. data/apis/cloudfront/2019-03-26/examples-1.json +0 -5
  272. data/apis/cloudfront/2019-03-26/paginators-1.json +0 -32
  273. data/apis/cloudfront/2019-03-26/smoke.json +0 -20
  274. data/apis/cloudfront/2019-03-26/waiters-2.json +0 -47
  275. data/apis/cloudhsm/2014-05-30/api-2.json +0 -879
  276. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  277. data/apis/cloudhsm/2014-05-30/paginators-1.json +0 -4
  278. data/apis/cloudhsmv2/2017-04-28/api-2.json +0 -718
  279. data/apis/cloudhsmv2/2017-04-28/examples-1.json +0 -5
  280. data/apis/cloudhsmv2/2017-04-28/paginators-1.json +0 -19
  281. data/apis/cloudhsmv2/2017-04-28/smoke.json +0 -18
  282. data/apis/cloudsearch/2013-01-01/api-2.json +0 -1529
  283. data/apis/cloudsearch/2013-01-01/examples-1.json +0 -5
  284. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -19
  285. data/apis/cloudsearch/2013-01-01/smoke.json +0 -18
  286. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -374
  287. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  288. data/apis/cloudtrail/2013-11-01/api-2.json +0 -1168
  289. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  290. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -28
  291. data/apis/cloudtrail/2013-11-01/smoke.json +0 -18
  292. data/apis/codebuild/2016-10-06/api-2.json +0 -1295
  293. data/apis/codebuild/2016-10-06/examples-1.json +0 -281
  294. data/apis/codebuild/2016-10-06/paginators-1.json +0 -4
  295. data/apis/codebuild/2016-10-06/smoke.json +0 -11
  296. data/apis/codecommit/2015-04-13/api-2.json +0 -5383
  297. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  298. data/apis/codecommit/2015-04-13/paginators-1.json +0 -64
  299. data/apis/codecommit/2015-04-13/smoke.json +0 -18
  300. data/apis/codedeploy/2014-10-06/api-2.json +0 -3224
  301. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  302. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  303. data/apis/codedeploy/2014-10-06/smoke.json +0 -18
  304. data/apis/codedeploy/2014-10-06/waiters-2.json +0 -30
  305. data/apis/codepipeline/2015-07-09/api-2.json +0 -2441
  306. data/apis/codepipeline/2015-07-09/examples-1.json +0 -5
  307. data/apis/codepipeline/2015-07-09/paginators-1.json +0 -38
  308. data/apis/codepipeline/2015-07-09/smoke.json +0 -18
  309. data/apis/codestar-notifications/2019-10-15/api-2.json +0 -724
  310. data/apis/codestar-notifications/2019-10-15/examples-1.json +0 -5
  311. data/apis/codestar-notifications/2019-10-15/paginators-1.json +0 -22
  312. data/apis/codestar/2017-04-19/api-2.json +0 -1033
  313. data/apis/codestar/2017-04-19/examples-1.json +0 -5
  314. data/apis/codestar/2017-04-19/paginators-1.json +0 -4
  315. data/apis/codestar/2017-04-19/smoke.json +0 -11
  316. data/apis/cognito-identity/2014-06-30/api-2.json +0 -1062
  317. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  318. data/apis/cognito-identity/2014-06-30/paginators-1.json +0 -4
  319. data/apis/cognito-idp/2016-04-18/api-2.json +0 -5395
  320. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  321. data/apis/cognito-idp/2016-04-18/paginators-1.json +0 -58
  322. data/apis/cognito-idp/2016-04-18/smoke.json +0 -20
  323. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1875
  324. data/apis/comprehend/2017-11-27/api-2.json +0 -2367
  325. data/apis/comprehend/2017-11-27/examples-1.json +0 -5
  326. data/apis/comprehend/2017-11-27/paginators-1.json +0 -44
  327. data/apis/comprehendmedical/2018-10-30/api-2.json +0 -681
  328. data/apis/comprehendmedical/2018-10-30/examples-1.json +0 -5
  329. data/apis/comprehendmedical/2018-10-30/paginators-1.json +0 -4
  330. data/apis/config/2014-11-12/api-2.json +0 -4340
  331. data/apis/config/2014-11-12/examples-1.json +0 -5
  332. data/apis/config/2014-11-12/paginators-1.json +0 -21
  333. data/apis/config/2014-11-12/smoke.json +0 -19
  334. data/apis/connect/2017-08-08/api-2.json +0 -2139
  335. data/apis/connect/2017-08-08/examples-1.json +0 -5
  336. data/apis/connect/2017-08-08/paginators-1.json +0 -62
  337. data/apis/connectparticipant/2018-09-07/api-2.json +0 -408
  338. data/apis/connectparticipant/2018-09-07/examples-1.json +0 -5
  339. data/apis/connectparticipant/2018-09-07/paginators-1.json +0 -9
  340. data/apis/cur/2017-01-06/api-2.json +0 -277
  341. data/apis/cur/2017-01-06/examples-1.json +0 -102
  342. data/apis/cur/2017-01-06/paginators-1.json +0 -9
  343. data/apis/cur/2017-01-06/smoke.json +0 -11
  344. data/apis/dataexchange/2017-07-25/api-2.json +0 -2263
  345. data/apis/dataexchange/2017-07-25/paginators-1.json +0 -28
  346. data/apis/datapipeline/2012-10-29/api-2.json +0 -1168
  347. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  348. data/apis/datasync/2018-11-09/api-2.json +0 -1354
  349. data/apis/datasync/2018-11-09/examples-1.json +0 -5
  350. data/apis/datasync/2018-11-09/paginators-1.json +0 -29
  351. data/apis/dax/2017-04-19/api-2.json +0 -1140
  352. data/apis/dax/2017-04-19/examples-1.json +0 -5
  353. data/apis/dax/2017-04-19/paginators-1.json +0 -4
  354. data/apis/devicefarm/2015-06-23/api-2.json +0 -3197
  355. data/apis/devicefarm/2015-06-23/examples-1.json +0 -1242
  356. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -77
  357. data/apis/devicefarm/2015-06-23/smoke.json +0 -18
  358. data/apis/directconnect/2012-10-25/api-2.json +0 -2074
  359. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  360. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  361. data/apis/directconnect/2012-10-25/smoke.json +0 -18
  362. data/apis/discovery/2015-11-01/api-2.json +0 -1369
  363. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  364. data/apis/discovery/2015-11-01/paginators-1.json +0 -14
  365. data/apis/discovery/2015-11-01/smoke.json +0 -11
  366. data/apis/dlm/2018-01-12/api-2.json +0 -633
  367. data/apis/dlm/2018-01-12/examples-1.json +0 -5
  368. data/apis/dlm/2018-01-12/paginators-1.json +0 -4
  369. data/apis/dms/2016-01-01/api-2.json +0 -2296
  370. data/apis/dms/2016-01-01/examples-1.json +0 -1074
  371. data/apis/dms/2016-01-01/paginators-1.json +0 -79
  372. data/apis/dms/2016-01-01/smoke.json +0 -18
  373. data/apis/dms/2016-01-01/waiters-2.json +0 -336
  374. data/apis/docdb/2014-10-31/api-2.json +0 -2534
  375. data/apis/docdb/2014-10-31/examples-1.json +0 -5
  376. data/apis/docdb/2014-10-31/paginators-1.json +0 -43
  377. data/apis/docdb/2014-10-31/smoke.json +0 -18
  378. data/apis/docdb/2014-10-31/waiters-2.json +0 -90
  379. data/apis/ds/2015-04-16/api-2.json +0 -2634
  380. data/apis/ds/2015-04-16/examples-1.json +0 -5
  381. data/apis/ds/2015-04-16/paginators-1.json +0 -9
  382. data/apis/ds/2015-04-16/smoke.json +0 -20
  383. data/apis/dynamodb/2011-12-05/api-2.json +0 -818
  384. data/apis/dynamodb/2011-12-05/examples-1.json +0 -5
  385. data/apis/dynamodb/2011-12-05/paginators-1.json +0 -26
  386. data/apis/dynamodb/2011-12-05/smoke.json +0 -20
  387. data/apis/dynamodb/2011-12-05/waiters-2.json +0 -35
  388. data/apis/dynamodb/2012-08-10/api-2.json +0 -3024
  389. data/apis/dynamodb/2012-08-10/examples-1.json +0 -631
  390. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  391. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  392. data/apis/dynamodb/2012-08-10/smoke.json +0 -20
  393. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  394. data/apis/ec2-instance-connect/2018-04-02/api-2.json +0 -119
  395. data/apis/ec2-instance-connect/2018-04-02/examples-1.json +0 -34
  396. data/apis/ec2-instance-connect/2018-04-02/paginators-1.json +0 -4
  397. data/apis/ec2/2015-10-01/api-2.json +0 -13760
  398. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  399. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  400. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  401. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  402. data/apis/ec2/2016-04-01/api-2.json +0 -14191
  403. data/apis/ec2/2016-04-01/examples-1.json +0 -3729
  404. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  405. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  406. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  407. data/apis/ec2/2016-09-15/api-2.json +0 -14415
  408. data/apis/ec2/2016-09-15/examples-1.json +0 -3740
  409. data/apis/ec2/2016-09-15/paginators-1.json +0 -138
  410. data/apis/ec2/2016-09-15/resources-1.json +0 -2582
  411. data/apis/ec2/2016-09-15/waiters-2.json +0 -593
  412. data/apis/ec2/2016-11-15/api-2.json +0 -26786
  413. data/apis/ec2/2016-11-15/examples-1.json +0 -5048
  414. data/apis/ec2/2016-11-15/paginators-1.json +0 -462
  415. data/apis/ec2/2016-11-15/resources-1.json +0 -2688
  416. data/apis/ec2/2016-11-15/smoke.json +0 -20
  417. data/apis/ec2/2016-11-15/waiters-2.json +0 -640
  418. data/apis/ecr/2015-09-21/api-2.json +0 -1615
  419. data/apis/ecr/2015-09-21/examples-1.json +0 -215
  420. data/apis/ecr/2015-09-21/paginators-1.json +0 -48
  421. data/apis/ecr/2015-09-21/smoke.json +0 -18
  422. data/apis/ecs/2014-11-13/api-2.json +0 -2910
  423. data/apis/ecs/2014-11-13/examples-1.json +0 -1137
  424. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  425. data/apis/ecs/2014-11-13/smoke.json +0 -18
  426. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  427. data/apis/eks/2017-11-01/api-2.json +0 -1211
  428. data/apis/eks/2017-11-01/examples-1.json +0 -135
  429. data/apis/eks/2017-11-01/paginators-1.json +0 -22
  430. data/apis/eks/2017-11-01/waiters-2.json +0 -91
  431. data/apis/elasticache/2015-02-02/api-2.json +0 -3301
  432. data/apis/elasticache/2015-02-02/examples-1.json +0 -3149
  433. data/apis/elasticache/2015-02-02/paginators-1.json +0 -88
  434. data/apis/elasticache/2015-02-02/smoke.json +0 -18
  435. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  436. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -2492
  437. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  438. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  439. data/apis/elasticbeanstalk/2010-12-01/smoke.json +0 -18
  440. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -897
  441. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -291
  442. data/apis/elasticfilesystem/2015-02-01/paginators-1.json +0 -4
  443. data/apis/elasticfilesystem/2015-02-01/smoke.json +0 -18
  444. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -1642
  445. data/apis/elasticloadbalancing/2012-06-01/examples-1.json +0 -1036
  446. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  447. data/apis/elasticloadbalancing/2012-06-01/smoke.json +0 -20
  448. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -54
  449. data/apis/elasticloadbalancingv2/2015-12-01/api-2.json +0 -2343
  450. data/apis/elasticloadbalancingv2/2015-12-01/examples-1.json +0 -1384
  451. data/apis/elasticloadbalancingv2/2015-12-01/paginators-1.json +0 -19
  452. data/apis/elasticloadbalancingv2/2015-12-01/smoke.json +0 -20
  453. data/apis/elasticloadbalancingv2/2015-12-01/waiters-2.json +0 -100
  454. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -2241
  455. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  456. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -42
  457. data/apis/elasticmapreduce/2009-03-31/smoke.json +0 -18
  458. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -86
  459. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1484
  460. data/apis/elastictranscoder/2012-09-25/examples-1.json +0 -5
  461. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  462. data/apis/elastictranscoder/2012-09-25/smoke.json +0 -18
  463. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  464. data/apis/email/2010-12-01/api-2.json +0 -3182
  465. data/apis/email/2010-12-01/examples-1.json +0 -1021
  466. data/apis/email/2010-12-01/paginators-1.json +0 -18
  467. data/apis/email/2010-12-01/smoke.json +0 -18
  468. data/apis/email/2010-12-01/waiters-2.json +0 -18
  469. data/apis/entitlement.marketplace/2017-01-11/api-2.json +0 -128
  470. data/apis/entitlement.marketplace/2017-01-11/examples-1.json +0 -5
  471. data/apis/entitlement.marketplace/2017-01-11/paginators-1.json +0 -4
  472. data/apis/es/2015-01-01/api-2.json +0 -1572
  473. data/apis/es/2015-01-01/examples-1.json +0 -5
  474. data/apis/es/2015-01-01/paginators-1.json +0 -29
  475. data/apis/es/2015-01-01/smoke.json +0 -18
  476. data/apis/eventbridge/2015-10-07/api-2.json +0 -1462
  477. data/apis/eventbridge/2015-10-07/examples-1.json +0 -5
  478. data/apis/eventbridge/2015-10-07/paginators-1.json +0 -4
  479. data/apis/eventbridge/2015-10-07/smoke.json +0 -18
  480. data/apis/events/2015-10-07/api-2.json +0 -1462
  481. data/apis/events/2015-10-07/examples-1.json +0 -5
  482. data/apis/events/2015-10-07/paginators-1.json +0 -4
  483. data/apis/events/2015-10-07/smoke.json +0 -18
  484. data/apis/firehose/2015-08-04/api-2.json +0 -1445
  485. data/apis/firehose/2015-08-04/examples-1.json +0 -5
  486. data/apis/firehose/2015-08-04/paginators-1.json +0 -4
  487. data/apis/firehose/2015-08-04/smoke.json +0 -18
  488. data/apis/fms/2018-01-01/api-2.json +0 -701
  489. data/apis/fms/2018-01-01/examples-1.json +0 -5
  490. data/apis/fms/2018-01-01/paginators-1.json +0 -22
  491. data/apis/forecast/2018-06-26/api-2.json +0 -1418
  492. data/apis/forecast/2018-06-26/examples-1.json +0 -5
  493. data/apis/forecast/2018-06-26/paginators-1.json +0 -40
  494. data/apis/forecastquery/2018-06-26/api-2.json +0 -154
  495. data/apis/forecastquery/2018-06-26/examples-1.json +0 -5
  496. data/apis/forecastquery/2018-06-26/paginators-1.json +0 -4
  497. data/apis/fsx/2018-03-01/api-2.json +0 -1063
  498. data/apis/fsx/2018-03-01/examples-1.json +0 -384
  499. data/apis/fsx/2018-03-01/paginators-1.json +0 -14
  500. data/apis/gamelift/2015-10-01/api-2.json +0 -3495
  501. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  502. data/apis/gamelift/2015-10-01/paginators-1.json +0 -4
  503. data/apis/gamelift/2015-10-01/smoke.json +0 -18
  504. data/apis/glacier/2012-06-01/api-2.json +0 -1906
  505. data/apis/glacier/2012-06-01/examples-1.json +0 -806
  506. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  507. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  508. data/apis/glacier/2012-06-01/smoke.json +0 -18
  509. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  510. data/apis/globalaccelerator/2018-08-08/api-2.json +0 -818
  511. data/apis/globalaccelerator/2018-08-08/examples-1.json +0 -5
  512. data/apis/globalaccelerator/2018-08-08/paginators-1.json +0 -4
  513. data/apis/glue/2017-03-31/api-2.json +0 -6302
  514. data/apis/glue/2017-03-31/examples-1.json +0 -5
  515. data/apis/glue/2017-03-31/paginators-1.json +0 -120
  516. data/apis/glue/2017-03-31/smoke.json +0 -11
  517. data/apis/greengrass/2017-06-07/api-2.json +0 -5106
  518. data/apis/groundstation/2019-05-23/api-2.json +0 -2059
  519. data/apis/groundstation/2019-05-23/examples-1.json +0 -4
  520. data/apis/groundstation/2019-05-23/paginators-1.json +0 -40
  521. data/apis/guardduty/2017-11-28/api-2.json +0 -3508
  522. data/apis/guardduty/2017-11-28/examples-1.json +0 -5
  523. data/apis/guardduty/2017-11-28/paginators-1.json +0 -51
  524. data/apis/health/2016-08-04/api-2.json +0 -554
  525. data/apis/health/2016-08-04/examples-1.json +0 -5
  526. data/apis/health/2016-08-04/paginators-1.json +0 -31
  527. data/apis/health/2016-08-04/smoke.json +0 -11
  528. data/apis/iam/2010-05-08/api-2.json +0 -5787
  529. data/apis/iam/2010-05-08/examples-1.json +0 -1577
  530. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  531. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  532. data/apis/iam/2010-05-08/smoke.json +0 -18
  533. data/apis/iam/2010-05-08/waiters-2.json +0 -73
  534. data/apis/importexport/2010-06-01/api-2.json +0 -667
  535. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  536. data/apis/inspector/2016-02-16/api-2.json +0 -2387
  537. data/apis/inspector/2016-02-16/examples-1.json +0 -1148
  538. data/apis/inspector/2016-02-16/paginators-1.json +0 -54
  539. data/apis/inspector/2016-02-16/smoke.json +0 -18
  540. data/apis/iot-data/2015-05-28/api-2.json +0 -264
  541. data/apis/iot-jobs-data/2017-09-29/api-2.json +0 -348
  542. data/apis/iot-jobs-data/2017-09-29/examples-1.json +0 -5
  543. data/apis/iot-jobs-data/2017-09-29/paginators-1.json +0 -4
  544. data/apis/iot/2015-05-28/api-2.json +0 -10148
  545. data/apis/iot/2015-05-28/examples-1.json +0 -5
  546. data/apis/iot/2015-05-28/paginators-1.json +0 -4
  547. data/apis/iot/2015-05-28/smoke.json +0 -18
  548. data/apis/iot1click-devices/2018-05-14/api-2.json +0 -902
  549. data/apis/iot1click-projects/2018-05-14/api-2.json +0 -883
  550. data/apis/iot1click-projects/2018-05-14/examples-1.json +0 -5
  551. data/apis/iot1click-projects/2018-05-14/paginators-1.json +0 -16
  552. data/apis/iotanalytics/2017-11-27/api-2.json +0 -2223
  553. data/apis/iotanalytics/2017-11-27/examples-1.json +0 -5
  554. data/apis/iotanalytics/2017-11-27/paginators-1.json +0 -29
  555. data/apis/iotevents-data/2018-10-23/api-2.json +0 -454
  556. data/apis/iotevents-data/2018-10-23/examples-1.json +0 -5
  557. data/apis/iotevents-data/2018-10-23/paginators-1.json +0 -4
  558. data/apis/iotevents/2018-07-27/api-2.json +0 -1144
  559. data/apis/iotevents/2018-07-27/examples-1.json +0 -5
  560. data/apis/iotevents/2018-07-27/paginators-1.json +0 -4
  561. data/apis/iotthingsgraph/2018-09-06/api-2.json +0 -1581
  562. data/apis/iotthingsgraph/2018-09-06/examples-1.json +0 -5
  563. data/apis/iotthingsgraph/2018-09-06/paginators-1.json +0 -64
  564. data/apis/kafka/2018-11-14/api-2.json +0 -1950
  565. data/apis/kafka/2018-11-14/paginators-1.json +0 -34
  566. data/apis/kinesis-video-archived-media/2017-09-30/api-2.json +0 -418
  567. data/apis/kinesis-video-archived-media/2017-09-30/examples-1.json +0 -5
  568. data/apis/kinesis-video-archived-media/2017-09-30/paginators-1.json +0 -10
  569. data/apis/kinesis-video-media/2017-09-30/api-2.json +0 -160
  570. data/apis/kinesis-video-media/2017-09-30/examples-1.json +0 -5
  571. data/apis/kinesis-video-media/2017-09-30/paginators-1.json +0 -4
  572. data/apis/kinesis/2013-12-02/api-2.json +0 -1409
  573. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  574. data/apis/kinesis/2013-12-02/paginators-1.json +0 -23
  575. data/apis/kinesis/2013-12-02/smoke.json +0 -18
  576. data/apis/kinesis/2013-12-02/waiters-2.json +0 -30
  577. data/apis/kinesisanalytics/2015-08-14/api-2.json +0 -1510
  578. data/apis/kinesisanalytics/2015-08-14/examples-1.json +0 -5
  579. data/apis/kinesisanalytics/2015-08-14/paginators-1.json +0 -4
  580. data/apis/kinesisanalyticsv2/2018-05-23/api-2.json +0 -2121
  581. data/apis/kinesisanalyticsv2/2018-05-23/examples-1.json +0 -5
  582. data/apis/kinesisanalyticsv2/2018-05-23/paginators-1.json +0 -4
  583. data/apis/kinesisvideo/2017-09-30/api-2.json +0 -553
  584. data/apis/kinesisvideo/2017-09-30/examples-1.json +0 -5
  585. data/apis/kinesisvideo/2017-09-30/paginators-1.json +0 -10
  586. data/apis/kms/2014-11-01/api-2.json +0 -1834
  587. data/apis/kms/2014-11-01/examples-1.json +0 -906
  588. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  589. data/apis/kms/2014-11-01/smoke.json +0 -19
  590. data/apis/lakeformation/2017-03-31/api-2.json +0 -708
  591. data/apis/lakeformation/2017-03-31/examples-1.json +0 -5
  592. data/apis/lakeformation/2017-03-31/paginators-1.json +0 -19
  593. data/apis/lambda/2014-11-11/api-2.json +0 -668
  594. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  595. data/apis/lambda/2015-03-31/api-2.json +0 -2356
  596. data/apis/lambda/2015-03-31/examples-1.json +0 -614
  597. data/apis/lambda/2015-03-31/paginators-1.json +0 -40
  598. data/apis/lambda/2015-03-31/smoke.json +0 -18
  599. data/apis/lambda/2015-03-31/waiters-2.json +0 -22
  600. data/apis/lex-models/2017-04-19/api-2.json +0 -2265
  601. data/apis/lex-models/2017-04-19/examples-1.json +0 -758
  602. data/apis/lex-models/2017-04-19/paginators-1.json +0 -54
  603. data/apis/license-manager/2018-08-01/api-2.json +0 -780
  604. data/apis/license-manager/2018-08-01/examples-1.json +0 -5
  605. data/apis/license-manager/2018-08-01/paginators-1.json +0 -4
  606. data/apis/lightsail/2016-11-28/api-2.json +0 -5015
  607. data/apis/lightsail/2016-11-28/examples-1.json +0 -5
  608. data/apis/lightsail/2016-11-28/paginators-1.json +0 -4
  609. data/apis/lightsail/2016-11-28/smoke.json +0 -11
  610. data/apis/logs/2014-03-28/api-2.json +0 -1701
  611. data/apis/logs/2014-03-28/examples-1.json +0 -5
  612. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  613. data/apis/logs/2014-03-28/smoke.json +0 -19
  614. data/apis/machinelearning/2014-12-12/api-2.json +0 -1978
  615. data/apis/machinelearning/2014-12-12/examples-1.json +0 -5
  616. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  617. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  618. data/apis/macie/2017-12-19/api-2.json +0 -365
  619. data/apis/macie/2017-12-19/examples-1.json +0 -5
  620. data/apis/macie/2017-12-19/paginators-1.json +0 -14
  621. data/apis/managedblockchain/2018-09-24/api-2.json +0 -1363
  622. data/apis/managedblockchain/2018-09-24/examples-1.json +0 -5
  623. data/apis/managedblockchain/2018-09-24/paginators-1.json +0 -34
  624. data/apis/marketplace-catalog/2018-09-17/api-2.json +0 -550
  625. data/apis/marketplace-catalog/2018-09-17/examples-1.json +0 -5
  626. data/apis/marketplace-catalog/2018-09-17/paginators-1.json +0 -14
  627. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -176
  628. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  629. data/apis/marketplacecommerceanalytics/2015-07-01/paginators-1.json +0 -4
  630. data/apis/marketplacecommerceanalytics/2015-07-01/smoke.json +0 -17
  631. data/apis/mediaconnect/2018-11-14/api-2.json +0 -1901
  632. data/apis/mediaconnect/2018-11-14/paginators-1.json +0 -16
  633. data/apis/mediaconvert/2017-08-29/api-2.json +0 -8559
  634. data/apis/mediaconvert/2017-08-29/paginators-1.json +0 -34
  635. data/apis/medialive/2017-10-14/api-2.json +0 -9023
  636. data/apis/medialive/2017-10-14/paginators-1.json +0 -40
  637. data/apis/medialive/2017-10-14/waiters-2.json +0 -111
  638. data/apis/mediapackage-vod/2018-11-07/api-2.json +0 -1514
  639. data/apis/mediapackage-vod/2018-11-07/paginators-1.json +0 -22
  640. data/apis/mediapackage/2017-10-12/api-2.json +0 -2467
  641. data/apis/mediapackage/2017-10-12/paginators-1.json +0 -22
  642. data/apis/mediastore-data/2017-09-01/api-2.json +0 -406
  643. data/apis/mediastore-data/2017-09-01/examples-1.json +0 -5
  644. data/apis/mediastore-data/2017-09-01/paginators-1.json +0 -9
  645. data/apis/mediastore/2017-09-01/api-2.json +0 -737
  646. data/apis/mediastore/2017-09-01/examples-1.json +0 -5
  647. data/apis/mediastore/2017-09-01/paginators-1.json +0 -9
  648. data/apis/mediatailor/2018-04-23/api-2.json +0 -524
  649. data/apis/mediatailor/2018-04-23/paginators-1.json +0 -3
  650. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -345
  651. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  652. data/apis/meteringmarketplace/2016-01-14/paginators-1.json +0 -4
  653. data/apis/migrationhub-config/2019-06-30/api-2.json +0 -207
  654. data/apis/migrationhub-config/2019-06-30/examples-1.json +0 -5
  655. data/apis/migrationhub-config/2019-06-30/paginators-1.json +0 -9
  656. data/apis/mobile/2017-07-01/api-2.json +0 -551
  657. data/apis/mobile/2017-07-01/examples-1.json +0 -5
  658. data/apis/mobile/2017-07-01/paginators-1.json +0 -14
  659. data/apis/monitoring/2010-08-01/api-2.json +0 -1526
  660. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  661. data/apis/monitoring/2010-08-01/paginators-1.json +0 -38
  662. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  663. data/apis/monitoring/2010-08-01/smoke.json +0 -22
  664. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  665. data/apis/mq/2017-11-27/api-2.json +0 -2538
  666. data/apis/mq/2017-11-27/paginators-1.json +0 -3
  667. data/apis/mturk-requester/2017-01-17/api-2.json +0 -1696
  668. data/apis/mturk-requester/2017-01-17/examples-1.json +0 -5
  669. data/apis/mturk-requester/2017-01-17/paginators-1.json +0 -54
  670. data/apis/neptune/2014-10-31/api-2.json +0 -3515
  671. data/apis/neptune/2014-10-31/examples-1.json +0 -5
  672. data/apis/neptune/2014-10-31/paginators-1.json +0 -61
  673. data/apis/neptune/2014-10-31/smoke.json +0 -18
  674. data/apis/neptune/2014-10-31/waiters-2.json +0 -90
  675. data/apis/opsworks/2013-02-18/api-2.json +0 -2885
  676. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  677. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  678. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  679. data/apis/opsworks/2013-02-18/smoke.json +0 -18
  680. data/apis/opsworks/2013-02-18/waiters-2.json +0 -289
  681. data/apis/opsworkscm/2016-11-01/api-2.json +0 -817
  682. data/apis/opsworkscm/2016-11-01/examples-1.json +0 -5
  683. data/apis/opsworkscm/2016-11-01/paginators-1.json +0 -4
  684. data/apis/opsworkscm/2016-11-01/waiters-2.json +0 -25
  685. data/apis/organizations/2016-11-28/api-2.json +0 -2317
  686. data/apis/organizations/2016-11-28/examples-1.json +0 -1409
  687. data/apis/organizations/2016-11-28/paginators-1.json +0 -74
  688. data/apis/personalize-events/2018-03-22/api-2.json +0 -91
  689. data/apis/personalize-events/2018-03-22/examples-1.json +0 -5
  690. data/apis/personalize-events/2018-03-22/paginators-1.json +0 -4
  691. data/apis/personalize-runtime/2018-05-22/api-2.json +0 -129
  692. data/apis/personalize-runtime/2018-05-22/examples-1.json +0 -5
  693. data/apis/personalize-runtime/2018-05-22/paginators-1.json +0 -4
  694. data/apis/personalize/2018-05-22/api-2.json +0 -1863
  695. data/apis/personalize/2018-05-22/examples-1.json +0 -5
  696. data/apis/personalize/2018-05-22/paginators-1.json +0 -64
  697. data/apis/pi/2018-02-27/api-2.json +0 -253
  698. data/apis/pi/2018-02-27/examples-1.json +0 -5
  699. data/apis/pi/2018-02-27/paginators-1.json +0 -4
  700. data/apis/pinpoint-email/2018-07-26/api-2.json +0 -2093
  701. data/apis/pinpoint-email/2018-07-26/examples-1.json +0 -5
  702. data/apis/pinpoint-email/2018-07-26/paginators-1.json +0 -34
  703. data/apis/pinpoint/2016-12-01/api-2.json +0 -11189
  704. data/apis/pinpoint/2016-12-01/examples-1.json +0 -5
  705. data/apis/polly/2016-06-10/api-2.json +0 -832
  706. data/apis/polly/2016-06-10/examples-1.json +0 -171
  707. data/apis/polly/2016-06-10/paginators-1.json +0 -9
  708. data/apis/polly/2016-06-10/smoke.json +0 -11
  709. data/apis/pricing/2017-10-15/api-2.json +0 -227
  710. data/apis/pricing/2017-10-15/examples-1.json +0 -103
  711. data/apis/pricing/2017-10-15/paginators-1.json +0 -19
  712. data/apis/qldb-session/2019-07-11/api-2.json +0 -259
  713. data/apis/qldb-session/2019-07-11/examples-1.json +0 -5
  714. data/apis/qldb-session/2019-07-11/paginators-1.json +0 -4
  715. data/apis/qldb/2019-01-02/api-2.json +0 -776
  716. data/apis/qldb/2019-01-02/examples-1.json +0 -5
  717. data/apis/qldb/2019-01-02/paginators-1.json +0 -19
  718. data/apis/quicksight/2018-04-01/api-2.json +0 -5482
  719. data/apis/quicksight/2018-04-01/examples-1.json +0 -5
  720. data/apis/quicksight/2018-04-01/paginators-1.json +0 -44
  721. data/apis/ram/2018-01-04/api-2.json +0 -1021
  722. data/apis/ram/2018-01-04/examples-1.json +0 -5
  723. data/apis/ram/2018-01-04/paginators-1.json +0 -39
  724. data/apis/rds-data/2018-08-01/api-2.json +0 -540
  725. data/apis/rds-data/2018-08-01/examples-1.json +0 -5
  726. data/apis/rds-data/2018-08-01/paginators-1.json +0 -4
  727. data/apis/rds/2013-01-10/api-2.json +0 -2903
  728. data/apis/rds/2013-01-10/examples-1.json +0 -5
  729. data/apis/rds/2013-01-10/paginators-1.json +0 -97
  730. data/apis/rds/2013-01-10/smoke.json +0 -18
  731. data/apis/rds/2013-02-12/api-2.json +0 -3059
  732. data/apis/rds/2013-02-12/examples-1.json +0 -5
  733. data/apis/rds/2013-02-12/paginators-1.json +0 -110
  734. data/apis/rds/2013-02-12/smoke.json +0 -18
  735. data/apis/rds/2013-09-09/api-2.json +0 -3160
  736. data/apis/rds/2013-09-09/examples-1.json +0 -5
  737. data/apis/rds/2013-09-09/paginators-1.json +0 -110
  738. data/apis/rds/2013-09-09/smoke.json +0 -18
  739. data/apis/rds/2013-09-09/waiters-2.json +0 -97
  740. data/apis/rds/2014-09-01/api-2.json +0 -3273
  741. data/apis/rds/2014-09-01/examples-1.json +0 -5
  742. data/apis/rds/2014-09-01/paginators-1.json +0 -4
  743. data/apis/rds/2014-09-01/smoke.json +0 -18
  744. data/apis/rds/2014-10-31/api-2.json +0 -6880
  745. data/apis/rds/2014-10-31/examples-1.json +0 -1951
  746. data/apis/rds/2014-10-31/paginators-1.json +0 -140
  747. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  748. data/apis/rds/2014-10-31/smoke.json +0 -18
  749. data/apis/rds/2014-10-31/waiters-2.json +0 -260
  750. data/apis/rds/2015-11-12/api-2.json +0 -5509
  751. data/apis/rds/2015-11-12/examples-1.json +0 -1951
  752. data/apis/rds/2015-11-12/paginators-1.json +0 -110
  753. data/apis/rds/2015-11-12/resources-1.json +0 -3272
  754. data/apis/rds/2015-11-12/waiters-2.json +0 -175
  755. data/apis/redshift/2012-12-01/api-2.json +0 -4995
  756. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  757. data/apis/redshift/2012-12-01/paginators-1.json +0 -100
  758. data/apis/redshift/2012-12-01/smoke.json +0 -18
  759. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  760. data/apis/rekognition/2016-06-27/api-2.json +0 -2148
  761. data/apis/rekognition/2016-06-27/examples-1.json +0 -651
  762. data/apis/rekognition/2016-06-27/paginators-1.json +0 -51
  763. data/apis/rekognition/2016-06-27/smoke.json +0 -11
  764. data/apis/resource-groups/2017-11-27/api-2.json +0 -743
  765. data/apis/resource-groups/2017-11-27/examples-1.json +0 -5
  766. data/apis/resource-groups/2017-11-27/paginators-1.json +0 -19
  767. data/apis/resourcegroupstaggingapi/2017-01-26/api-2.json +0 -329
  768. data/apis/resourcegroupstaggingapi/2017-01-26/examples-1.json +0 -5
  769. data/apis/resourcegroupstaggingapi/2017-01-26/paginators-1.json +0 -20
  770. data/apis/robomaker/2018-06-29/api-2.json +0 -2160
  771. data/apis/robomaker/2018-06-29/examples-1.json +0 -5
  772. data/apis/robomaker/2018-06-29/paginators-1.json +0 -34
  773. data/apis/route53/2013-04-01/api-2.json +0 -3780
  774. data/apis/route53/2013-04-01/examples-1.json +0 -762
  775. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  776. data/apis/route53/2013-04-01/smoke.json +0 -18
  777. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  778. data/apis/route53domains/2014-05-15/api-2.json +0 -1382
  779. data/apis/route53domains/2014-05-15/examples-1.json +0 -5
  780. data/apis/route53domains/2014-05-15/paginators-1.json +0 -16
  781. data/apis/route53resolver/2018-04-01/api-2.json +0 -1199
  782. data/apis/route53resolver/2018-04-01/examples-1.json +0 -5
  783. data/apis/route53resolver/2018-04-01/paginators-1.json +0 -24
  784. data/apis/route53resolver/2018-04-01/smoke.json +0 -18
  785. data/apis/runtime.lex/2016-11-28/api-2.json +0 -708
  786. data/apis/runtime.lex/2016-11-28/examples-1.json +0 -5
  787. data/apis/runtime.lex/2016-11-28/paginators-1.json +0 -4
  788. data/apis/runtime.sagemaker/2017-05-13/api-2.json +0 -165
  789. data/apis/runtime.sagemaker/2017-05-13/examples-1.json +0 -5
  790. data/apis/runtime.sagemaker/2017-05-13/paginators-1.json +0 -4
  791. data/apis/s3/2006-03-01/api-2.json +0 -6653
  792. data/apis/s3/2006-03-01/examples-1.json +0 -1876
  793. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  794. data/apis/s3/2006-03-01/resources-1.json +0 -1249
  795. data/apis/s3/2006-03-01/smoke.json +0 -11
  796. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  797. data/apis/s3control/2018-08-20/api-2.json +0 -1044
  798. data/apis/s3control/2018-08-20/examples-1.json +0 -5
  799. data/apis/s3control/2018-08-20/paginators-1.json +0 -9
  800. data/apis/sagemaker/2017-07-24/api-2.json +0 -5289
  801. data/apis/sagemaker/2017-07-24/examples-1.json +0 -5
  802. data/apis/sagemaker/2017-07-24/paginators-1.json +0 -84
  803. data/apis/sagemaker/2017-07-24/waiters-2.json +0 -163
  804. data/apis/savingsplans/2019-06-28/api-2.json +0 -749
  805. data/apis/savingsplans/2019-06-28/examples-1.json +0 -5
  806. data/apis/savingsplans/2019-06-28/paginators-1.json +0 -4
  807. data/apis/sdb/2009-04-15/api-2.json +0 -955
  808. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  809. data/apis/secretsmanager/2017-10-17/api-2.json +0 -982
  810. data/apis/secretsmanager/2017-10-17/examples-1.json +0 -571
  811. data/apis/secretsmanager/2017-10-17/paginators-1.json +0 -14
  812. data/apis/secretsmanager/2017-10-17/smoke.json +0 -18
  813. data/apis/securityhub/2018-10-26/api-2.json +0 -2105
  814. data/apis/securityhub/2018-10-26/examples-1.json +0 -5
  815. data/apis/securityhub/2018-10-26/paginators-1.json +0 -29
  816. data/apis/serverlessrepo/2017-09-08/api-2.json +0 -1774
  817. data/apis/serverlessrepo/2017-09-08/paginators-1.json +0 -19
  818. data/apis/service-quotas/2019-06-24/api-2.json +0 -867
  819. data/apis/service-quotas/2019-06-24/examples-1.json +0 -5
  820. data/apis/service-quotas/2019-06-24/paginators-1.json +0 -40
  821. data/apis/servicecatalog/2015-12-10/api-2.json +0 -3977
  822. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  823. data/apis/servicecatalog/2015-12-10/paginators-1.json +0 -84
  824. data/apis/servicecatalog/2015-12-10/smoke.json +0 -11
  825. data/apis/servicediscovery/2017-03-14/api-2.json +0 -1156
  826. data/apis/servicediscovery/2017-03-14/examples-1.json +0 -5
  827. data/apis/servicediscovery/2017-03-14/paginators-1.json +0 -29
  828. data/apis/sesv2/2019-09-27/api-2.json +0 -2093
  829. data/apis/sesv2/2019-09-27/examples-1.json +0 -5
  830. data/apis/sesv2/2019-09-27/paginators-1.json +0 -34
  831. data/apis/shield/2016-06-02/api-2.json +0 -893
  832. data/apis/shield/2016-06-02/examples-1.json +0 -5
  833. data/apis/shield/2016-06-02/paginators-1.json +0 -4
  834. data/apis/shield/2016-06-02/smoke.json +0 -11
  835. data/apis/signer/2017-08-25/api-2.json +0 -817
  836. data/apis/signer/2017-08-25/examples-1.json +0 -5
  837. data/apis/signer/2017-08-25/paginators-1.json +0 -19
  838. data/apis/signer/2017-08-25/waiters-2.json +0 -29
  839. data/apis/sms-voice/2018-09-05/api-2.json +0 -630
  840. data/apis/sms/2016-10-24/api-2.json +0 -1366
  841. data/apis/sms/2016-10-24/examples-1.json +0 -5
  842. data/apis/sms/2016-10-24/paginators-1.json +0 -28
  843. data/apis/sms/2016-10-24/smoke.json +0 -18
  844. data/apis/snowball/2016-06-30/api-2.json +0 -955
  845. data/apis/snowball/2016-06-30/examples-1.json +0 -442
  846. data/apis/snowball/2016-06-30/paginators-1.json +0 -16
  847. data/apis/snowball/2016-06-30/smoke.json +0 -11
  848. data/apis/sns/2010-03-31/api-2.json +0 -1468
  849. data/apis/sns/2010-03-31/examples-1.json +0 -5
  850. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  851. data/apis/sns/2010-03-31/resources-1.json +0 -327
  852. data/apis/sns/2010-03-31/smoke.json +0 -19
  853. data/apis/sqs/2012-11-05/api-2.json +0 -1128
  854. data/apis/sqs/2012-11-05/examples-1.json +0 -5
  855. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  856. data/apis/sqs/2012-11-05/resources-1.json +0 -232
  857. data/apis/sqs/2012-11-05/smoke.json +0 -18
  858. data/apis/ssm/2014-11-06/api-2.json +0 -9111
  859. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  860. data/apis/ssm/2014-11-06/paginators-1.json +0 -55
  861. data/apis/ssm/2014-11-06/smoke.json +0 -18
  862. data/apis/sso-oidc/2019-06-10/api-2.json +0 -283
  863. data/apis/sso-oidc/2019-06-10/examples-1.json +0 -5
  864. data/apis/sso-oidc/2019-06-10/paginators-1.json +0 -4
  865. data/apis/sso/2019-06-10/api-2.json +0 -281
  866. data/apis/sso/2019-06-10/examples-1.json +0 -5
  867. data/apis/sso/2019-06-10/paginators-1.json +0 -16
  868. data/apis/states/2016-11-23/api-2.json +0 -1409
  869. data/apis/states/2016-11-23/examples-1.json +0 -5
  870. data/apis/states/2016-11-23/paginators-1.json +0 -28
  871. data/apis/states/2016-11-23/smoke.json +0 -11
  872. data/apis/storagegateway/2013-06-30/api-2.json +0 -3259
  873. data/apis/storagegateway/2013-06-30/examples-1.json +0 -1381
  874. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -76
  875. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -406
  876. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -212
  877. data/apis/streams.dynamodb/2012-08-10/paginators-1.json +0 -4
  878. data/apis/sts/2011-06-15/api-2.json +0 -598
  879. data/apis/sts/2011-06-15/examples-1.json +0 -234
  880. data/apis/sts/2011-06-15/paginators-1.json +0 -4
  881. data/apis/sts/2011-06-15/smoke.json +0 -19
  882. data/apis/support/2013-04-15/api-2.json +0 -773
  883. data/apis/support/2013-04-15/examples-1.json +0 -5
  884. data/apis/support/2013-04-15/paginators-1.json +0 -25
  885. data/apis/support/2013-04-15/smoke.json +0 -22
  886. data/apis/swf/2012-01-25/api-2.json +0 -2792
  887. data/apis/swf/2012-01-25/examples-1.json +0 -5
  888. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  889. data/apis/textract/2018-06-27/api-2.json +0 -572
  890. data/apis/textract/2018-06-27/examples-1.json +0 -5
  891. data/apis/textract/2018-06-27/paginators-1.json +0 -4
  892. data/apis/transcribe-streaming/2017-10-26/api-2.json +0 -262
  893. data/apis/transcribe-streaming/2017-10-26/examples-1.json +0 -5
  894. data/apis/transcribe-streaming/2017-10-26/paginators-1.json +0 -4
  895. data/apis/transcribe/2017-10-26/api-2.json +0 -538
  896. data/apis/transcribe/2017-10-26/examples-1.json +0 -5
  897. data/apis/transcribe/2017-10-26/paginators-1.json +0 -14
  898. data/apis/transfer/2018-11-05/api-2.json +0 -940
  899. data/apis/transfer/2018-11-05/examples-1.json +0 -5
  900. data/apis/transfer/2018-11-05/paginators-1.json +0 -19
  901. data/apis/translate/2017-07-01/api-2.json +0 -408
  902. data/apis/translate/2017-07-01/examples-1.json +0 -5
  903. data/apis/translate/2017-07-01/paginators-1.json +0 -4
  904. data/apis/waf-regional/2016-11-28/api-2.json +0 -3992
  905. data/apis/waf-regional/2016-11-28/examples-1.json +0 -1017
  906. data/apis/waf-regional/2016-11-28/paginators-1.json +0 -4
  907. data/apis/waf-regional/2016-11-28/smoke.json +0 -21
  908. data/apis/waf/2015-08-24/api-2.json +0 -3857
  909. data/apis/waf/2015-08-24/examples-1.json +0 -1017
  910. data/apis/waf/2015-08-24/paginators-1.json +0 -4
  911. data/apis/waf/2015-08-24/smoke.json +0 -21
  912. data/apis/workdocs/2016-05-01/api-2.json +0 -2899
  913. data/apis/workdocs/2016-05-01/examples-1.json +0 -5
  914. data/apis/workdocs/2016-05-01/paginators-1.json +0 -25
  915. data/apis/worklink/2018-09-25/api-2.json +0 -1266
  916. data/apis/worklink/2018-09-25/examples-1.json +0 -5
  917. data/apis/worklink/2018-09-25/paginators-1.json +0 -29
  918. data/apis/workmail/2017-10-01/api-2.json +0 -1560
  919. data/apis/workmail/2017-10-01/examples-1.json +0 -5
  920. data/apis/workmail/2017-10-01/paginators-1.json +0 -44
  921. data/apis/workmailmessageflow/2019-05-01/api-2.json +0 -67
  922. data/apis/workmailmessageflow/2019-05-01/examples-1.json +0 -5
  923. data/apis/workmailmessageflow/2019-05-01/paginators-1.json +0 -4
  924. data/apis/workspaces/2015-04-08/api-2.json +0 -1992
  925. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  926. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  927. data/apis/workspaces/2015-04-08/smoke.json +0 -18
  928. data/apis/xray/2016-04-12/api-2.json +0 -1352
  929. data/apis/xray/2016-04-12/examples-1.json +0 -5
  930. data/apis/xray/2016-04-12/paginators-1.json +0 -59
  931. data/bin/aws.rb +0 -180
  932. data/endpoints.json +0 -5642
  933. data/lib/aws-sdk-core/acm.rb +0 -7
  934. data/lib/aws-sdk-core/acmpca.rb +0 -7
  935. data/lib/aws-sdk-core/alexaforbusiness.rb +0 -6
  936. data/lib/aws-sdk-core/amplify.rb +0 -6
  937. data/lib/aws-sdk-core/api/builder.rb +0 -129
  938. data/lib/aws-sdk-core/api/customizations.rb +0 -303
  939. data/lib/aws-sdk-core/api/docs/builder.rb +0 -223
  940. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -118
  941. data/lib/aws-sdk-core/api/docs/crosslink.rb +0 -43
  942. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  943. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -151
  944. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  945. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  946. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  947. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  948. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  949. data/lib/aws-sdk-core/api/shape_map.rb +0 -146
  950. data/lib/aws-sdk-core/apigateway.rb +0 -6
  951. data/lib/aws-sdk-core/apigatewaymanagementapi.rb +0 -5
  952. data/lib/aws-sdk-core/apigatewayv2.rb +0 -5
  953. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  954. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -6
  955. data/lib/aws-sdk-core/applicationinsights.rb +0 -6
  956. data/lib/aws-sdk-core/appmesh.rb +0 -6
  957. data/lib/aws-sdk-core/appstream.rb +0 -7
  958. data/lib/aws-sdk-core/appsync.rb +0 -6
  959. data/lib/aws-sdk-core/athena.rb +0 -6
  960. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  961. data/lib/aws-sdk-core/autoscalingplans.rb +0 -6
  962. data/lib/aws-sdk-core/backup.rb +0 -6
  963. data/lib/aws-sdk-core/batch.rb +0 -6
  964. data/lib/aws-sdk-core/budgets.rb +0 -6
  965. data/lib/aws-sdk-core/checksums.rb +0 -51
  966. data/lib/aws-sdk-core/chime.rb +0 -6
  967. data/lib/aws-sdk-core/client.rb +0 -62
  968. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  969. data/lib/aws-sdk-core/cloud9.rb +0 -6
  970. data/lib/aws-sdk-core/clouddirectory.rb +0 -6
  971. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  972. data/lib/aws-sdk-core/cloudfront.rb +0 -17
  973. data/lib/aws-sdk-core/cloudfront/cookie_signer.rb +0 -44
  974. data/lib/aws-sdk-core/cloudfront/signer.rb +0 -141
  975. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -48
  976. data/lib/aws-sdk-core/cloudhsm.rb +0 -6
  977. data/lib/aws-sdk-core/cloudhsmv2.rb +0 -6
  978. data/lib/aws-sdk-core/cloudsearch.rb +0 -6
  979. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  980. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  981. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  982. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -6
  983. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  984. data/lib/aws-sdk-core/codebuild.rb +0 -6
  985. data/lib/aws-sdk-core/codecommit.rb +0 -6
  986. data/lib/aws-sdk-core/codedeploy.rb +0 -7
  987. data/lib/aws-sdk-core/codepipeline.rb +0 -6
  988. data/lib/aws-sdk-core/codestar.rb +0 -6
  989. data/lib/aws-sdk-core/codestarnotifications.rb +0 -6
  990. data/lib/aws-sdk-core/cognitoidentity.rb +0 -6
  991. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -6
  992. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  993. data/lib/aws-sdk-core/comprehend.rb +0 -6
  994. data/lib/aws-sdk-core/comprehendmedical.rb +0 -6
  995. data/lib/aws-sdk-core/configservice.rb +0 -6
  996. data/lib/aws-sdk-core/connect.rb +0 -6
  997. data/lib/aws-sdk-core/connectparticipant.rb +0 -6
  998. data/lib/aws-sdk-core/costandusagereportservice.rb +0 -6
  999. data/lib/aws-sdk-core/costexplorer.rb +0 -6
  1000. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -7
  1001. data/lib/aws-sdk-core/dataexchange.rb +0 -5
  1002. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  1003. data/lib/aws-sdk-core/datasync.rb +0 -6
  1004. data/lib/aws-sdk-core/dax.rb +0 -6
  1005. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  1006. data/lib/aws-sdk-core/directconnect.rb +0 -6
  1007. data/lib/aws-sdk-core/directoryservice.rb +0 -6
  1008. data/lib/aws-sdk-core/dlm.rb +0 -6
  1009. data/lib/aws-sdk-core/docdb.rb +0 -7
  1010. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  1011. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -110
  1012. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -6
  1013. data/lib/aws-sdk-core/ec2.rb +0 -8
  1014. data/lib/aws-sdk-core/ec2instanceconnect.rb +0 -6
  1015. data/lib/aws-sdk-core/ecr.rb +0 -6
  1016. data/lib/aws-sdk-core/ecs.rb +0 -7
  1017. data/lib/aws-sdk-core/efs.rb +0 -6
  1018. data/lib/aws-sdk-core/eks.rb +0 -7
  1019. data/lib/aws-sdk-core/elasticache.rb +0 -7
  1020. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  1021. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -7
  1022. data/lib/aws-sdk-core/elasticloadbalancingv2.rb +0 -7
  1023. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -6
  1024. data/lib/aws-sdk-core/elastictranscoder.rb +0 -7
  1025. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  1026. data/lib/aws-sdk-core/emr.rb +0 -7
  1027. data/lib/aws-sdk-core/endpoint_provider.rb +0 -131
  1028. data/lib/aws-sdk-core/eventbridge.rb +0 -6
  1029. data/lib/aws-sdk-core/firehose.rb +0 -6
  1030. data/lib/aws-sdk-core/fms.rb +0 -6
  1031. data/lib/aws-sdk-core/forecastqueryservice.rb +0 -6
  1032. data/lib/aws-sdk-core/forecastservice.rb +0 -6
  1033. data/lib/aws-sdk-core/fsx.rb +0 -6
  1034. data/lib/aws-sdk-core/gamelift.rb +0 -6
  1035. data/lib/aws-sdk-core/glacier.rb +0 -8
  1036. data/lib/aws-sdk-core/globalaccelerator.rb +0 -6
  1037. data/lib/aws-sdk-core/glue.rb +0 -6
  1038. data/lib/aws-sdk-core/greengrass.rb +0 -4
  1039. data/lib/aws-sdk-core/groundstation.rb +0 -6
  1040. data/lib/aws-sdk-core/guardduty.rb +0 -6
  1041. data/lib/aws-sdk-core/health.rb +0 -6
  1042. data/lib/aws-sdk-core/iam.rb +0 -8
  1043. data/lib/aws-sdk-core/importexport.rb +0 -5
  1044. data/lib/aws-sdk-core/inspector.rb +0 -6
  1045. data/lib/aws-sdk-core/iot.rb +0 -6
  1046. data/lib/aws-sdk-core/iot1clickdevicesservice.rb +0 -4
  1047. data/lib/aws-sdk-core/iot1clickprojects.rb +0 -6
  1048. data/lib/aws-sdk-core/iotanalytics.rb +0 -6
  1049. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  1050. data/lib/aws-sdk-core/iotevents.rb +0 -6
  1051. data/lib/aws-sdk-core/ioteventsdata.rb +0 -6
  1052. data/lib/aws-sdk-core/iotjobsdataplane.rb +0 -6
  1053. data/lib/aws-sdk-core/iotthingsgraph.rb +0 -6
  1054. data/lib/aws-sdk-core/kafka.rb +0 -5
  1055. data/lib/aws-sdk-core/kinesis.rb +0 -7
  1056. data/lib/aws-sdk-core/kinesisanalytics.rb +0 -6
  1057. data/lib/aws-sdk-core/kinesisanalyticsv2.rb +0 -6
  1058. data/lib/aws-sdk-core/kinesisvideo.rb +0 -6
  1059. data/lib/aws-sdk-core/kinesisvideoarchivedmedia.rb +0 -6
  1060. data/lib/aws-sdk-core/kinesisvideomedia.rb +0 -6
  1061. data/lib/aws-sdk-core/kms.rb +0 -6
  1062. data/lib/aws-sdk-core/lakeformation.rb +0 -6
  1063. data/lib/aws-sdk-core/lambda.rb +0 -7
  1064. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  1065. data/lib/aws-sdk-core/lex.rb +0 -6
  1066. data/lib/aws-sdk-core/lexmodelbuildingservice.rb +0 -6
  1067. data/lib/aws-sdk-core/licensemanager.rb +0 -6
  1068. data/lib/aws-sdk-core/lightsail.rb +0 -6
  1069. data/lib/aws-sdk-core/machinelearning.rb +0 -7
  1070. data/lib/aws-sdk-core/macie.rb +0 -6
  1071. data/lib/aws-sdk-core/managedblockchain.rb +0 -6
  1072. data/lib/aws-sdk-core/marketplacecatalog.rb +0 -6
  1073. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -6
  1074. data/lib/aws-sdk-core/marketplaceentitlementservice.rb +0 -6
  1075. data/lib/aws-sdk-core/marketplacemetering.rb +0 -6
  1076. data/lib/aws-sdk-core/mediaconnect.rb +0 -5
  1077. data/lib/aws-sdk-core/mediaconvert.rb +0 -5
  1078. data/lib/aws-sdk-core/medialive.rb +0 -6
  1079. data/lib/aws-sdk-core/mediapackage.rb +0 -5
  1080. data/lib/aws-sdk-core/mediapackagevod.rb +0 -5
  1081. data/lib/aws-sdk-core/mediastore.rb +0 -6
  1082. data/lib/aws-sdk-core/mediastoredata.rb +0 -6
  1083. data/lib/aws-sdk-core/mediatailor.rb +0 -5
  1084. data/lib/aws-sdk-core/migrationhub.rb +0 -6
  1085. data/lib/aws-sdk-core/migrationhubconfig.rb +0 -6
  1086. data/lib/aws-sdk-core/mobile.rb +0 -6
  1087. data/lib/aws-sdk-core/mq.rb +0 -5
  1088. data/lib/aws-sdk-core/mturk.rb +0 -6
  1089. data/lib/aws-sdk-core/neptune.rb +0 -7
  1090. data/lib/aws-sdk-core/opsworks.rb +0 -8
  1091. data/lib/aws-sdk-core/opsworkscm.rb +0 -7
  1092. data/lib/aws-sdk-core/organizations.rb +0 -6
  1093. data/lib/aws-sdk-core/partitions.rb +0 -174
  1094. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  1095. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  1096. data/lib/aws-sdk-core/partitions/region.rb +0 -66
  1097. data/lib/aws-sdk-core/partitions/service.rb +0 -75
  1098. data/lib/aws-sdk-core/personalize.rb +0 -6
  1099. data/lib/aws-sdk-core/personalizeevents.rb +0 -6
  1100. data/lib/aws-sdk-core/personalizeruntime.rb +0 -6
  1101. data/lib/aws-sdk-core/pi.rb +0 -6
  1102. data/lib/aws-sdk-core/pinpoint.rb +0 -5
  1103. data/lib/aws-sdk-core/pinpointemail.rb +0 -6
  1104. data/lib/aws-sdk-core/pinpointsmsvoice.rb +0 -4
  1105. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  1106. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  1107. data/lib/aws-sdk-core/plugins/csd_switch_to_post.rb +0 -36
  1108. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  1109. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  1110. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -208
  1111. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -56
  1112. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  1113. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  1114. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  1115. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  1116. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  1117. data/lib/aws-sdk-core/plugins/rds_cross_region_copying.rb +0 -69
  1118. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -150
  1119. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  1120. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -90
  1121. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  1122. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  1123. data/lib/aws-sdk-core/plugins/s3_control_dns.rb +0 -25
  1124. data/lib/aws-sdk-core/plugins/s3_control_dualstack.rb +0 -48
  1125. data/lib/aws-sdk-core/plugins/s3_control_signer.rb +0 -53
  1126. data/lib/aws-sdk-core/plugins/s3_dualstack.rb +0 -67
  1127. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  1128. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  1129. data/lib/aws-sdk-core/plugins/s3_host_id.rb +0 -26
  1130. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  1131. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  1132. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  1133. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  1134. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  1135. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  1136. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -93
  1137. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -164
  1138. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  1139. data/lib/aws-sdk-core/plugins/sts_regional_endpoints.rb +0 -30
  1140. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  1141. data/lib/aws-sdk-core/polly.rb +0 -14
  1142. data/lib/aws-sdk-core/polly/presigner.rb +0 -70
  1143. data/lib/aws-sdk-core/pricing.rb +0 -6
  1144. data/lib/aws-sdk-core/qldb.rb +0 -6
  1145. data/lib/aws-sdk-core/qldbsession.rb +0 -6
  1146. data/lib/aws-sdk-core/quicksight.rb +0 -6
  1147. data/lib/aws-sdk-core/ram.rb +0 -6
  1148. data/lib/aws-sdk-core/rds.rb +0 -16
  1149. data/lib/aws-sdk-core/rds/auth_token_generator.rb +0 -63
  1150. data/lib/aws-sdk-core/rdsdataservice.rb +0 -6
  1151. data/lib/aws-sdk-core/redshift.rb +0 -7
  1152. data/lib/aws-sdk-core/rekognition.rb +0 -6
  1153. data/lib/aws-sdk-core/resourcegroups.rb +0 -6
  1154. data/lib/aws-sdk-core/resourcegroupstaggingapi.rb +0 -6
  1155. data/lib/aws-sdk-core/robomaker.rb +0 -6
  1156. data/lib/aws-sdk-core/route53.rb +0 -7
  1157. data/lib/aws-sdk-core/route53domains.rb +0 -6
  1158. data/lib/aws-sdk-core/route53resolver.rb +0 -6
  1159. data/lib/aws-sdk-core/s3.rb +0 -26
  1160. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  1161. data/lib/aws-sdk-core/s3/presigner.rb +0 -116
  1162. data/lib/aws-sdk-core/s3control.rb +0 -6
  1163. data/lib/aws-sdk-core/sagemaker.rb +0 -7
  1164. data/lib/aws-sdk-core/sagemakerruntime.rb +0 -6
  1165. data/lib/aws-sdk-core/savingsplans.rb +0 -6
  1166. data/lib/aws-sdk-core/secretsmanager.rb +0 -6
  1167. data/lib/aws-sdk-core/securityhub.rb +0 -6
  1168. data/lib/aws-sdk-core/serverlessapplicationrepository.rb +0 -5
  1169. data/lib/aws-sdk-core/service.rb +0 -4
  1170. data/lib/aws-sdk-core/servicecatalog.rb +0 -6
  1171. data/lib/aws-sdk-core/servicediscovery.rb +0 -6
  1172. data/lib/aws-sdk-core/servicequotas.rb +0 -6
  1173. data/lib/aws-sdk-core/ses.rb +0 -7
  1174. data/lib/aws-sdk-core/sesv2.rb +0 -6
  1175. data/lib/aws-sdk-core/shield.rb +0 -6
  1176. data/lib/aws-sdk-core/signer.rb +0 -7
  1177. data/lib/aws-sdk-core/signers/base.rb +0 -31
  1178. data/lib/aws-sdk-core/signers/s3.rb +0 -185
  1179. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  1180. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  1181. data/lib/aws-sdk-core/signers/v4.rb +0 -234
  1182. data/lib/aws-sdk-core/simpledb.rb +0 -5
  1183. data/lib/aws-sdk-core/sms.rb +0 -6
  1184. data/lib/aws-sdk-core/snowball.rb +0 -6
  1185. data/lib/aws-sdk-core/sns.rb +0 -7
  1186. data/lib/aws-sdk-core/sqs.rb +0 -7
  1187. data/lib/aws-sdk-core/ssm.rb +0 -6
  1188. data/lib/aws-sdk-core/sso.rb +0 -6
  1189. data/lib/aws-sdk-core/ssooidc.rb +0 -6
  1190. data/lib/aws-sdk-core/states.rb +0 -6
  1191. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  1192. data/lib/aws-sdk-core/sts.rb +0 -6
  1193. data/lib/aws-sdk-core/support.rb +0 -6
  1194. data/lib/aws-sdk-core/swf.rb +0 -6
  1195. data/lib/aws-sdk-core/textract.rb +0 -6
  1196. data/lib/aws-sdk-core/transcribeservice.rb +0 -6
  1197. data/lib/aws-sdk-core/transfer.rb +0 -6
  1198. data/lib/aws-sdk-core/translate.rb +0 -6
  1199. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  1200. data/lib/aws-sdk-core/version.rb +0 -3
  1201. data/lib/aws-sdk-core/waf.rb +0 -6
  1202. data/lib/aws-sdk-core/wafregional.rb +0 -6
  1203. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  1204. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  1205. data/lib/aws-sdk-core/workdocs.rb +0 -6
  1206. data/lib/aws-sdk-core/worklink.rb +0 -6
  1207. data/lib/aws-sdk-core/workmail.rb +0 -6
  1208. data/lib/aws-sdk-core/workmailmessageflow.rb +0 -6
  1209. data/lib/aws-sdk-core/workspaces.rb +0 -6
  1210. data/lib/aws-sdk-core/xray.rb +0 -6
  1211. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -125
  1212. data/service-models.json +0 -805
@@ -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,3857 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2015-08-24",
5
- "endpointPrefix":"waf",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceAbbreviation":"WAF",
9
- "serviceFullName":"AWS WAF",
10
- "serviceId":"WAF",
11
- "signatureVersion":"v4",
12
- "targetPrefix":"AWSWAF_20150824",
13
- "uid":"waf-2015-08-24"
14
- },
15
- "operations":{
16
- "CreateByteMatchSet":{
17
- "name":"CreateByteMatchSet",
18
- "http":{
19
- "method":"POST",
20
- "requestUri":"/"
21
- },
22
- "input":{"shape":"CreateByteMatchSetRequest"},
23
- "output":{"shape":"CreateByteMatchSetResponse"},
24
- "errors":[
25
- {"shape":"WAFDisallowedNameException"},
26
- {"shape":"WAFInternalErrorException"},
27
- {"shape":"WAFInvalidAccountException"},
28
- {"shape":"WAFInvalidParameterException"},
29
- {"shape":"WAFStaleDataException"},
30
- {"shape":"WAFLimitsExceededException"}
31
- ]
32
- },
33
- "CreateGeoMatchSet":{
34
- "name":"CreateGeoMatchSet",
35
- "http":{
36
- "method":"POST",
37
- "requestUri":"/"
38
- },
39
- "input":{"shape":"CreateGeoMatchSetRequest"},
40
- "output":{"shape":"CreateGeoMatchSetResponse"},
41
- "errors":[
42
- {"shape":"WAFStaleDataException"},
43
- {"shape":"WAFInternalErrorException"},
44
- {"shape":"WAFInvalidAccountException"},
45
- {"shape":"WAFDisallowedNameException"},
46
- {"shape":"WAFInvalidParameterException"},
47
- {"shape":"WAFLimitsExceededException"}
48
- ]
49
- },
50
- "CreateIPSet":{
51
- "name":"CreateIPSet",
52
- "http":{
53
- "method":"POST",
54
- "requestUri":"/"
55
- },
56
- "input":{"shape":"CreateIPSetRequest"},
57
- "output":{"shape":"CreateIPSetResponse"},
58
- "errors":[
59
- {"shape":"WAFStaleDataException"},
60
- {"shape":"WAFInternalErrorException"},
61
- {"shape":"WAFInvalidAccountException"},
62
- {"shape":"WAFDisallowedNameException"},
63
- {"shape":"WAFInvalidParameterException"},
64
- {"shape":"WAFLimitsExceededException"}
65
- ]
66
- },
67
- "CreateRateBasedRule":{
68
- "name":"CreateRateBasedRule",
69
- "http":{
70
- "method":"POST",
71
- "requestUri":"/"
72
- },
73
- "input":{"shape":"CreateRateBasedRuleRequest"},
74
- "output":{"shape":"CreateRateBasedRuleResponse"},
75
- "errors":[
76
- {"shape":"WAFStaleDataException"},
77
- {"shape":"WAFInternalErrorException"},
78
- {"shape":"WAFDisallowedNameException"},
79
- {"shape":"WAFInvalidParameterException"},
80
- {"shape":"WAFLimitsExceededException"},
81
- {"shape":"WAFTagOperationException"},
82
- {"shape":"WAFTagOperationInternalErrorException"},
83
- {"shape":"WAFBadRequestException"}
84
- ]
85
- },
86
- "CreateRegexMatchSet":{
87
- "name":"CreateRegexMatchSet",
88
- "http":{
89
- "method":"POST",
90
- "requestUri":"/"
91
- },
92
- "input":{"shape":"CreateRegexMatchSetRequest"},
93
- "output":{"shape":"CreateRegexMatchSetResponse"},
94
- "errors":[
95
- {"shape":"WAFStaleDataException"},
96
- {"shape":"WAFInternalErrorException"},
97
- {"shape":"WAFDisallowedNameException"},
98
- {"shape":"WAFLimitsExceededException"}
99
- ]
100
- },
101
- "CreateRegexPatternSet":{
102
- "name":"CreateRegexPatternSet",
103
- "http":{
104
- "method":"POST",
105
- "requestUri":"/"
106
- },
107
- "input":{"shape":"CreateRegexPatternSetRequest"},
108
- "output":{"shape":"CreateRegexPatternSetResponse"},
109
- "errors":[
110
- {"shape":"WAFStaleDataException"},
111
- {"shape":"WAFInternalErrorException"},
112
- {"shape":"WAFDisallowedNameException"},
113
- {"shape":"WAFLimitsExceededException"}
114
- ]
115
- },
116
- "CreateRule":{
117
- "name":"CreateRule",
118
- "http":{
119
- "method":"POST",
120
- "requestUri":"/"
121
- },
122
- "input":{"shape":"CreateRuleRequest"},
123
- "output":{"shape":"CreateRuleResponse"},
124
- "errors":[
125
- {"shape":"WAFStaleDataException"},
126
- {"shape":"WAFInternalErrorException"},
127
- {"shape":"WAFDisallowedNameException"},
128
- {"shape":"WAFInvalidParameterException"},
129
- {"shape":"WAFLimitsExceededException"},
130
- {"shape":"WAFTagOperationException"},
131
- {"shape":"WAFTagOperationInternalErrorException"},
132
- {"shape":"WAFBadRequestException"}
133
- ]
134
- },
135
- "CreateRuleGroup":{
136
- "name":"CreateRuleGroup",
137
- "http":{
138
- "method":"POST",
139
- "requestUri":"/"
140
- },
141
- "input":{"shape":"CreateRuleGroupRequest"},
142
- "output":{"shape":"CreateRuleGroupResponse"},
143
- "errors":[
144
- {"shape":"WAFStaleDataException"},
145
- {"shape":"WAFInternalErrorException"},
146
- {"shape":"WAFDisallowedNameException"},
147
- {"shape":"WAFLimitsExceededException"},
148
- {"shape":"WAFTagOperationException"},
149
- {"shape":"WAFTagOperationInternalErrorException"},
150
- {"shape":"WAFBadRequestException"}
151
- ]
152
- },
153
- "CreateSizeConstraintSet":{
154
- "name":"CreateSizeConstraintSet",
155
- "http":{
156
- "method":"POST",
157
- "requestUri":"/"
158
- },
159
- "input":{"shape":"CreateSizeConstraintSetRequest"},
160
- "output":{"shape":"CreateSizeConstraintSetResponse"},
161
- "errors":[
162
- {"shape":"WAFStaleDataException"},
163
- {"shape":"WAFInternalErrorException"},
164
- {"shape":"WAFInvalidAccountException"},
165
- {"shape":"WAFDisallowedNameException"},
166
- {"shape":"WAFInvalidParameterException"},
167
- {"shape":"WAFLimitsExceededException"}
168
- ]
169
- },
170
- "CreateSqlInjectionMatchSet":{
171
- "name":"CreateSqlInjectionMatchSet",
172
- "http":{
173
- "method":"POST",
174
- "requestUri":"/"
175
- },
176
- "input":{"shape":"CreateSqlInjectionMatchSetRequest"},
177
- "output":{"shape":"CreateSqlInjectionMatchSetResponse"},
178
- "errors":[
179
- {"shape":"WAFDisallowedNameException"},
180
- {"shape":"WAFInternalErrorException"},
181
- {"shape":"WAFInvalidAccountException"},
182
- {"shape":"WAFInvalidParameterException"},
183
- {"shape":"WAFStaleDataException"},
184
- {"shape":"WAFLimitsExceededException"}
185
- ]
186
- },
187
- "CreateWebACL":{
188
- "name":"CreateWebACL",
189
- "http":{
190
- "method":"POST",
191
- "requestUri":"/"
192
- },
193
- "input":{"shape":"CreateWebACLRequest"},
194
- "output":{"shape":"CreateWebACLResponse"},
195
- "errors":[
196
- {"shape":"WAFStaleDataException"},
197
- {"shape":"WAFInternalErrorException"},
198
- {"shape":"WAFInvalidAccountException"},
199
- {"shape":"WAFDisallowedNameException"},
200
- {"shape":"WAFInvalidParameterException"},
201
- {"shape":"WAFLimitsExceededException"},
202
- {"shape":"WAFTagOperationException"},
203
- {"shape":"WAFTagOperationInternalErrorException"},
204
- {"shape":"WAFBadRequestException"}
205
- ]
206
- },
207
- "CreateXssMatchSet":{
208
- "name":"CreateXssMatchSet",
209
- "http":{
210
- "method":"POST",
211
- "requestUri":"/"
212
- },
213
- "input":{"shape":"CreateXssMatchSetRequest"},
214
- "output":{"shape":"CreateXssMatchSetResponse"},
215
- "errors":[
216
- {"shape":"WAFDisallowedNameException"},
217
- {"shape":"WAFInternalErrorException"},
218
- {"shape":"WAFInvalidAccountException"},
219
- {"shape":"WAFInvalidParameterException"},
220
- {"shape":"WAFStaleDataException"},
221
- {"shape":"WAFLimitsExceededException"}
222
- ]
223
- },
224
- "DeleteByteMatchSet":{
225
- "name":"DeleteByteMatchSet",
226
- "http":{
227
- "method":"POST",
228
- "requestUri":"/"
229
- },
230
- "input":{"shape":"DeleteByteMatchSetRequest"},
231
- "output":{"shape":"DeleteByteMatchSetResponse"},
232
- "errors":[
233
- {"shape":"WAFInternalErrorException"},
234
- {"shape":"WAFInvalidAccountException"},
235
- {"shape":"WAFNonexistentItemException"},
236
- {"shape":"WAFReferencedItemException"},
237
- {"shape":"WAFStaleDataException"},
238
- {"shape":"WAFNonEmptyEntityException"}
239
- ]
240
- },
241
- "DeleteGeoMatchSet":{
242
- "name":"DeleteGeoMatchSet",
243
- "http":{
244
- "method":"POST",
245
- "requestUri":"/"
246
- },
247
- "input":{"shape":"DeleteGeoMatchSetRequest"},
248
- "output":{"shape":"DeleteGeoMatchSetResponse"},
249
- "errors":[
250
- {"shape":"WAFStaleDataException"},
251
- {"shape":"WAFInternalErrorException"},
252
- {"shape":"WAFInvalidAccountException"},
253
- {"shape":"WAFNonexistentItemException"},
254
- {"shape":"WAFReferencedItemException"},
255
- {"shape":"WAFNonEmptyEntityException"}
256
- ]
257
- },
258
- "DeleteIPSet":{
259
- "name":"DeleteIPSet",
260
- "http":{
261
- "method":"POST",
262
- "requestUri":"/"
263
- },
264
- "input":{"shape":"DeleteIPSetRequest"},
265
- "output":{"shape":"DeleteIPSetResponse"},
266
- "errors":[
267
- {"shape":"WAFStaleDataException"},
268
- {"shape":"WAFInternalErrorException"},
269
- {"shape":"WAFInvalidAccountException"},
270
- {"shape":"WAFNonexistentItemException"},
271
- {"shape":"WAFReferencedItemException"},
272
- {"shape":"WAFNonEmptyEntityException"}
273
- ]
274
- },
275
- "DeleteLoggingConfiguration":{
276
- "name":"DeleteLoggingConfiguration",
277
- "http":{
278
- "method":"POST",
279
- "requestUri":"/"
280
- },
281
- "input":{"shape":"DeleteLoggingConfigurationRequest"},
282
- "output":{"shape":"DeleteLoggingConfigurationResponse"},
283
- "errors":[
284
- {"shape":"WAFInternalErrorException"},
285
- {"shape":"WAFNonexistentItemException"},
286
- {"shape":"WAFStaleDataException"}
287
- ]
288
- },
289
- "DeletePermissionPolicy":{
290
- "name":"DeletePermissionPolicy",
291
- "http":{
292
- "method":"POST",
293
- "requestUri":"/"
294
- },
295
- "input":{"shape":"DeletePermissionPolicyRequest"},
296
- "output":{"shape":"DeletePermissionPolicyResponse"},
297
- "errors":[
298
- {"shape":"WAFInternalErrorException"},
299
- {"shape":"WAFStaleDataException"},
300
- {"shape":"WAFNonexistentItemException"}
301
- ]
302
- },
303
- "DeleteRateBasedRule":{
304
- "name":"DeleteRateBasedRule",
305
- "http":{
306
- "method":"POST",
307
- "requestUri":"/"
308
- },
309
- "input":{"shape":"DeleteRateBasedRuleRequest"},
310
- "output":{"shape":"DeleteRateBasedRuleResponse"},
311
- "errors":[
312
- {"shape":"WAFStaleDataException"},
313
- {"shape":"WAFInternalErrorException"},
314
- {"shape":"WAFInvalidAccountException"},
315
- {"shape":"WAFNonexistentItemException"},
316
- {"shape":"WAFReferencedItemException"},
317
- {"shape":"WAFNonEmptyEntityException"},
318
- {"shape":"WAFTagOperationException"},
319
- {"shape":"WAFTagOperationInternalErrorException"}
320
- ]
321
- },
322
- "DeleteRegexMatchSet":{
323
- "name":"DeleteRegexMatchSet",
324
- "http":{
325
- "method":"POST",
326
- "requestUri":"/"
327
- },
328
- "input":{"shape":"DeleteRegexMatchSetRequest"},
329
- "output":{"shape":"DeleteRegexMatchSetResponse"},
330
- "errors":[
331
- {"shape":"WAFInternalErrorException"},
332
- {"shape":"WAFInvalidAccountException"},
333
- {"shape":"WAFNonexistentItemException"},
334
- {"shape":"WAFReferencedItemException"},
335
- {"shape":"WAFStaleDataException"},
336
- {"shape":"WAFNonEmptyEntityException"}
337
- ]
338
- },
339
- "DeleteRegexPatternSet":{
340
- "name":"DeleteRegexPatternSet",
341
- "http":{
342
- "method":"POST",
343
- "requestUri":"/"
344
- },
345
- "input":{"shape":"DeleteRegexPatternSetRequest"},
346
- "output":{"shape":"DeleteRegexPatternSetResponse"},
347
- "errors":[
348
- {"shape":"WAFInternalErrorException"},
349
- {"shape":"WAFInvalidAccountException"},
350
- {"shape":"WAFNonexistentItemException"},
351
- {"shape":"WAFReferencedItemException"},
352
- {"shape":"WAFStaleDataException"},
353
- {"shape":"WAFNonEmptyEntityException"}
354
- ]
355
- },
356
- "DeleteRule":{
357
- "name":"DeleteRule",
358
- "http":{
359
- "method":"POST",
360
- "requestUri":"/"
361
- },
362
- "input":{"shape":"DeleteRuleRequest"},
363
- "output":{"shape":"DeleteRuleResponse"},
364
- "errors":[
365
- {"shape":"WAFStaleDataException"},
366
- {"shape":"WAFInternalErrorException"},
367
- {"shape":"WAFInvalidAccountException"},
368
- {"shape":"WAFNonexistentItemException"},
369
- {"shape":"WAFReferencedItemException"},
370
- {"shape":"WAFNonEmptyEntityException"},
371
- {"shape":"WAFTagOperationException"},
372
- {"shape":"WAFTagOperationInternalErrorException"}
373
- ]
374
- },
375
- "DeleteRuleGroup":{
376
- "name":"DeleteRuleGroup",
377
- "http":{
378
- "method":"POST",
379
- "requestUri":"/"
380
- },
381
- "input":{"shape":"DeleteRuleGroupRequest"},
382
- "output":{"shape":"DeleteRuleGroupResponse"},
383
- "errors":[
384
- {"shape":"WAFStaleDataException"},
385
- {"shape":"WAFInternalErrorException"},
386
- {"shape":"WAFNonexistentItemException"},
387
- {"shape":"WAFReferencedItemException"},
388
- {"shape":"WAFNonEmptyEntityException"},
389
- {"shape":"WAFInvalidOperationException"},
390
- {"shape":"WAFTagOperationException"},
391
- {"shape":"WAFTagOperationInternalErrorException"}
392
- ]
393
- },
394
- "DeleteSizeConstraintSet":{
395
- "name":"DeleteSizeConstraintSet",
396
- "http":{
397
- "method":"POST",
398
- "requestUri":"/"
399
- },
400
- "input":{"shape":"DeleteSizeConstraintSetRequest"},
401
- "output":{"shape":"DeleteSizeConstraintSetResponse"},
402
- "errors":[
403
- {"shape":"WAFStaleDataException"},
404
- {"shape":"WAFInternalErrorException"},
405
- {"shape":"WAFInvalidAccountException"},
406
- {"shape":"WAFNonexistentItemException"},
407
- {"shape":"WAFReferencedItemException"},
408
- {"shape":"WAFNonEmptyEntityException"}
409
- ]
410
- },
411
- "DeleteSqlInjectionMatchSet":{
412
- "name":"DeleteSqlInjectionMatchSet",
413
- "http":{
414
- "method":"POST",
415
- "requestUri":"/"
416
- },
417
- "input":{"shape":"DeleteSqlInjectionMatchSetRequest"},
418
- "output":{"shape":"DeleteSqlInjectionMatchSetResponse"},
419
- "errors":[
420
- {"shape":"WAFInternalErrorException"},
421
- {"shape":"WAFInvalidAccountException"},
422
- {"shape":"WAFNonexistentItemException"},
423
- {"shape":"WAFReferencedItemException"},
424
- {"shape":"WAFStaleDataException"},
425
- {"shape":"WAFNonEmptyEntityException"}
426
- ]
427
- },
428
- "DeleteWebACL":{
429
- "name":"DeleteWebACL",
430
- "http":{
431
- "method":"POST",
432
- "requestUri":"/"
433
- },
434
- "input":{"shape":"DeleteWebACLRequest"},
435
- "output":{"shape":"DeleteWebACLResponse"},
436
- "errors":[
437
- {"shape":"WAFStaleDataException"},
438
- {"shape":"WAFInternalErrorException"},
439
- {"shape":"WAFInvalidAccountException"},
440
- {"shape":"WAFNonexistentItemException"},
441
- {"shape":"WAFReferencedItemException"},
442
- {"shape":"WAFNonEmptyEntityException"},
443
- {"shape":"WAFTagOperationException"},
444
- {"shape":"WAFTagOperationInternalErrorException"}
445
- ]
446
- },
447
- "DeleteXssMatchSet":{
448
- "name":"DeleteXssMatchSet",
449
- "http":{
450
- "method":"POST",
451
- "requestUri":"/"
452
- },
453
- "input":{"shape":"DeleteXssMatchSetRequest"},
454
- "output":{"shape":"DeleteXssMatchSetResponse"},
455
- "errors":[
456
- {"shape":"WAFInternalErrorException"},
457
- {"shape":"WAFInvalidAccountException"},
458
- {"shape":"WAFNonexistentItemException"},
459
- {"shape":"WAFReferencedItemException"},
460
- {"shape":"WAFStaleDataException"},
461
- {"shape":"WAFNonEmptyEntityException"}
462
- ]
463
- },
464
- "GetByteMatchSet":{
465
- "name":"GetByteMatchSet",
466
- "http":{
467
- "method":"POST",
468
- "requestUri":"/"
469
- },
470
- "input":{"shape":"GetByteMatchSetRequest"},
471
- "output":{"shape":"GetByteMatchSetResponse"},
472
- "errors":[
473
- {"shape":"WAFInternalErrorException"},
474
- {"shape":"WAFInvalidAccountException"},
475
- {"shape":"WAFNonexistentItemException"}
476
- ]
477
- },
478
- "GetChangeToken":{
479
- "name":"GetChangeToken",
480
- "http":{
481
- "method":"POST",
482
- "requestUri":"/"
483
- },
484
- "input":{"shape":"GetChangeTokenRequest"},
485
- "output":{"shape":"GetChangeTokenResponse"},
486
- "errors":[
487
- {"shape":"WAFInternalErrorException"}
488
- ]
489
- },
490
- "GetChangeTokenStatus":{
491
- "name":"GetChangeTokenStatus",
492
- "http":{
493
- "method":"POST",
494
- "requestUri":"/"
495
- },
496
- "input":{"shape":"GetChangeTokenStatusRequest"},
497
- "output":{"shape":"GetChangeTokenStatusResponse"},
498
- "errors":[
499
- {"shape":"WAFNonexistentItemException"},
500
- {"shape":"WAFInternalErrorException"}
501
- ]
502
- },
503
- "GetGeoMatchSet":{
504
- "name":"GetGeoMatchSet",
505
- "http":{
506
- "method":"POST",
507
- "requestUri":"/"
508
- },
509
- "input":{"shape":"GetGeoMatchSetRequest"},
510
- "output":{"shape":"GetGeoMatchSetResponse"},
511
- "errors":[
512
- {"shape":"WAFInternalErrorException"},
513
- {"shape":"WAFInvalidAccountException"},
514
- {"shape":"WAFNonexistentItemException"}
515
- ]
516
- },
517
- "GetIPSet":{
518
- "name":"GetIPSet",
519
- "http":{
520
- "method":"POST",
521
- "requestUri":"/"
522
- },
523
- "input":{"shape":"GetIPSetRequest"},
524
- "output":{"shape":"GetIPSetResponse"},
525
- "errors":[
526
- {"shape":"WAFInternalErrorException"},
527
- {"shape":"WAFInvalidAccountException"},
528
- {"shape":"WAFNonexistentItemException"}
529
- ]
530
- },
531
- "GetLoggingConfiguration":{
532
- "name":"GetLoggingConfiguration",
533
- "http":{
534
- "method":"POST",
535
- "requestUri":"/"
536
- },
537
- "input":{"shape":"GetLoggingConfigurationRequest"},
538
- "output":{"shape":"GetLoggingConfigurationResponse"},
539
- "errors":[
540
- {"shape":"WAFInternalErrorException"},
541
- {"shape":"WAFNonexistentItemException"}
542
- ]
543
- },
544
- "GetPermissionPolicy":{
545
- "name":"GetPermissionPolicy",
546
- "http":{
547
- "method":"POST",
548
- "requestUri":"/"
549
- },
550
- "input":{"shape":"GetPermissionPolicyRequest"},
551
- "output":{"shape":"GetPermissionPolicyResponse"},
552
- "errors":[
553
- {"shape":"WAFInternalErrorException"},
554
- {"shape":"WAFNonexistentItemException"}
555
- ]
556
- },
557
- "GetRateBasedRule":{
558
- "name":"GetRateBasedRule",
559
- "http":{
560
- "method":"POST",
561
- "requestUri":"/"
562
- },
563
- "input":{"shape":"GetRateBasedRuleRequest"},
564
- "output":{"shape":"GetRateBasedRuleResponse"},
565
- "errors":[
566
- {"shape":"WAFInternalErrorException"},
567
- {"shape":"WAFInvalidAccountException"},
568
- {"shape":"WAFNonexistentItemException"}
569
- ]
570
- },
571
- "GetRateBasedRuleManagedKeys":{
572
- "name":"GetRateBasedRuleManagedKeys",
573
- "http":{
574
- "method":"POST",
575
- "requestUri":"/"
576
- },
577
- "input":{"shape":"GetRateBasedRuleManagedKeysRequest"},
578
- "output":{"shape":"GetRateBasedRuleManagedKeysResponse"},
579
- "errors":[
580
- {"shape":"WAFInternalErrorException"},
581
- {"shape":"WAFInvalidAccountException"},
582
- {"shape":"WAFNonexistentItemException"},
583
- {"shape":"WAFInvalidParameterException"}
584
- ]
585
- },
586
- "GetRegexMatchSet":{
587
- "name":"GetRegexMatchSet",
588
- "http":{
589
- "method":"POST",
590
- "requestUri":"/"
591
- },
592
- "input":{"shape":"GetRegexMatchSetRequest"},
593
- "output":{"shape":"GetRegexMatchSetResponse"},
594
- "errors":[
595
- {"shape":"WAFInternalErrorException"},
596
- {"shape":"WAFInvalidAccountException"},
597
- {"shape":"WAFNonexistentItemException"}
598
- ]
599
- },
600
- "GetRegexPatternSet":{
601
- "name":"GetRegexPatternSet",
602
- "http":{
603
- "method":"POST",
604
- "requestUri":"/"
605
- },
606
- "input":{"shape":"GetRegexPatternSetRequest"},
607
- "output":{"shape":"GetRegexPatternSetResponse"},
608
- "errors":[
609
- {"shape":"WAFInternalErrorException"},
610
- {"shape":"WAFInvalidAccountException"},
611
- {"shape":"WAFNonexistentItemException"}
612
- ]
613
- },
614
- "GetRule":{
615
- "name":"GetRule",
616
- "http":{
617
- "method":"POST",
618
- "requestUri":"/"
619
- },
620
- "input":{"shape":"GetRuleRequest"},
621
- "output":{"shape":"GetRuleResponse"},
622
- "errors":[
623
- {"shape":"WAFInternalErrorException"},
624
- {"shape":"WAFInvalidAccountException"},
625
- {"shape":"WAFNonexistentItemException"}
626
- ]
627
- },
628
- "GetRuleGroup":{
629
- "name":"GetRuleGroup",
630
- "http":{
631
- "method":"POST",
632
- "requestUri":"/"
633
- },
634
- "input":{"shape":"GetRuleGroupRequest"},
635
- "output":{"shape":"GetRuleGroupResponse"},
636
- "errors":[
637
- {"shape":"WAFInternalErrorException"},
638
- {"shape":"WAFNonexistentItemException"}
639
- ]
640
- },
641
- "GetSampledRequests":{
642
- "name":"GetSampledRequests",
643
- "http":{
644
- "method":"POST",
645
- "requestUri":"/"
646
- },
647
- "input":{"shape":"GetSampledRequestsRequest"},
648
- "output":{"shape":"GetSampledRequestsResponse"},
649
- "errors":[
650
- {"shape":"WAFNonexistentItemException"},
651
- {"shape":"WAFInternalErrorException"}
652
- ]
653
- },
654
- "GetSizeConstraintSet":{
655
- "name":"GetSizeConstraintSet",
656
- "http":{
657
- "method":"POST",
658
- "requestUri":"/"
659
- },
660
- "input":{"shape":"GetSizeConstraintSetRequest"},
661
- "output":{"shape":"GetSizeConstraintSetResponse"},
662
- "errors":[
663
- {"shape":"WAFInternalErrorException"},
664
- {"shape":"WAFInvalidAccountException"},
665
- {"shape":"WAFNonexistentItemException"}
666
- ]
667
- },
668
- "GetSqlInjectionMatchSet":{
669
- "name":"GetSqlInjectionMatchSet",
670
- "http":{
671
- "method":"POST",
672
- "requestUri":"/"
673
- },
674
- "input":{"shape":"GetSqlInjectionMatchSetRequest"},
675
- "output":{"shape":"GetSqlInjectionMatchSetResponse"},
676
- "errors":[
677
- {"shape":"WAFInternalErrorException"},
678
- {"shape":"WAFInvalidAccountException"},
679
- {"shape":"WAFNonexistentItemException"}
680
- ]
681
- },
682
- "GetWebACL":{
683
- "name":"GetWebACL",
684
- "http":{
685
- "method":"POST",
686
- "requestUri":"/"
687
- },
688
- "input":{"shape":"GetWebACLRequest"},
689
- "output":{"shape":"GetWebACLResponse"},
690
- "errors":[
691
- {"shape":"WAFInternalErrorException"},
692
- {"shape":"WAFInvalidAccountException"},
693
- {"shape":"WAFNonexistentItemException"}
694
- ]
695
- },
696
- "GetXssMatchSet":{
697
- "name":"GetXssMatchSet",
698
- "http":{
699
- "method":"POST",
700
- "requestUri":"/"
701
- },
702
- "input":{"shape":"GetXssMatchSetRequest"},
703
- "output":{"shape":"GetXssMatchSetResponse"},
704
- "errors":[
705
- {"shape":"WAFInternalErrorException"},
706
- {"shape":"WAFInvalidAccountException"},
707
- {"shape":"WAFNonexistentItemException"}
708
- ]
709
- },
710
- "ListActivatedRulesInRuleGroup":{
711
- "name":"ListActivatedRulesInRuleGroup",
712
- "http":{
713
- "method":"POST",
714
- "requestUri":"/"
715
- },
716
- "input":{"shape":"ListActivatedRulesInRuleGroupRequest"},
717
- "output":{"shape":"ListActivatedRulesInRuleGroupResponse"},
718
- "errors":[
719
- {"shape":"WAFInternalErrorException"},
720
- {"shape":"WAFNonexistentItemException"},
721
- {"shape":"WAFInvalidParameterException"}
722
- ]
723
- },
724
- "ListByteMatchSets":{
725
- "name":"ListByteMatchSets",
726
- "http":{
727
- "method":"POST",
728
- "requestUri":"/"
729
- },
730
- "input":{"shape":"ListByteMatchSetsRequest"},
731
- "output":{"shape":"ListByteMatchSetsResponse"},
732
- "errors":[
733
- {"shape":"WAFInternalErrorException"},
734
- {"shape":"WAFInvalidAccountException"}
735
- ]
736
- },
737
- "ListGeoMatchSets":{
738
- "name":"ListGeoMatchSets",
739
- "http":{
740
- "method":"POST",
741
- "requestUri":"/"
742
- },
743
- "input":{"shape":"ListGeoMatchSetsRequest"},
744
- "output":{"shape":"ListGeoMatchSetsResponse"},
745
- "errors":[
746
- {"shape":"WAFInternalErrorException"},
747
- {"shape":"WAFInvalidAccountException"}
748
- ]
749
- },
750
- "ListIPSets":{
751
- "name":"ListIPSets",
752
- "http":{
753
- "method":"POST",
754
- "requestUri":"/"
755
- },
756
- "input":{"shape":"ListIPSetsRequest"},
757
- "output":{"shape":"ListIPSetsResponse"},
758
- "errors":[
759
- {"shape":"WAFInternalErrorException"},
760
- {"shape":"WAFInvalidAccountException"}
761
- ]
762
- },
763
- "ListLoggingConfigurations":{
764
- "name":"ListLoggingConfigurations",
765
- "http":{
766
- "method":"POST",
767
- "requestUri":"/"
768
- },
769
- "input":{"shape":"ListLoggingConfigurationsRequest"},
770
- "output":{"shape":"ListLoggingConfigurationsResponse"},
771
- "errors":[
772
- {"shape":"WAFInternalErrorException"},
773
- {"shape":"WAFNonexistentItemException"},
774
- {"shape":"WAFInvalidParameterException"}
775
- ]
776
- },
777
- "ListRateBasedRules":{
778
- "name":"ListRateBasedRules",
779
- "http":{
780
- "method":"POST",
781
- "requestUri":"/"
782
- },
783
- "input":{"shape":"ListRateBasedRulesRequest"},
784
- "output":{"shape":"ListRateBasedRulesResponse"},
785
- "errors":[
786
- {"shape":"WAFInternalErrorException"},
787
- {"shape":"WAFInvalidAccountException"}
788
- ]
789
- },
790
- "ListRegexMatchSets":{
791
- "name":"ListRegexMatchSets",
792
- "http":{
793
- "method":"POST",
794
- "requestUri":"/"
795
- },
796
- "input":{"shape":"ListRegexMatchSetsRequest"},
797
- "output":{"shape":"ListRegexMatchSetsResponse"},
798
- "errors":[
799
- {"shape":"WAFInternalErrorException"},
800
- {"shape":"WAFInvalidAccountException"}
801
- ]
802
- },
803
- "ListRegexPatternSets":{
804
- "name":"ListRegexPatternSets",
805
- "http":{
806
- "method":"POST",
807
- "requestUri":"/"
808
- },
809
- "input":{"shape":"ListRegexPatternSetsRequest"},
810
- "output":{"shape":"ListRegexPatternSetsResponse"},
811
- "errors":[
812
- {"shape":"WAFInternalErrorException"},
813
- {"shape":"WAFInvalidAccountException"}
814
- ]
815
- },
816
- "ListRuleGroups":{
817
- "name":"ListRuleGroups",
818
- "http":{
819
- "method":"POST",
820
- "requestUri":"/"
821
- },
822
- "input":{"shape":"ListRuleGroupsRequest"},
823
- "output":{"shape":"ListRuleGroupsResponse"},
824
- "errors":[
825
- {"shape":"WAFInternalErrorException"}
826
- ]
827
- },
828
- "ListRules":{
829
- "name":"ListRules",
830
- "http":{
831
- "method":"POST",
832
- "requestUri":"/"
833
- },
834
- "input":{"shape":"ListRulesRequest"},
835
- "output":{"shape":"ListRulesResponse"},
836
- "errors":[
837
- {"shape":"WAFInternalErrorException"},
838
- {"shape":"WAFInvalidAccountException"}
839
- ]
840
- },
841
- "ListSizeConstraintSets":{
842
- "name":"ListSizeConstraintSets",
843
- "http":{
844
- "method":"POST",
845
- "requestUri":"/"
846
- },
847
- "input":{"shape":"ListSizeConstraintSetsRequest"},
848
- "output":{"shape":"ListSizeConstraintSetsResponse"},
849
- "errors":[
850
- {"shape":"WAFInternalErrorException"},
851
- {"shape":"WAFInvalidAccountException"}
852
- ]
853
- },
854
- "ListSqlInjectionMatchSets":{
855
- "name":"ListSqlInjectionMatchSets",
856
- "http":{
857
- "method":"POST",
858
- "requestUri":"/"
859
- },
860
- "input":{"shape":"ListSqlInjectionMatchSetsRequest"},
861
- "output":{"shape":"ListSqlInjectionMatchSetsResponse"},
862
- "errors":[
863
- {"shape":"WAFInternalErrorException"},
864
- {"shape":"WAFInvalidAccountException"}
865
- ]
866
- },
867
- "ListSubscribedRuleGroups":{
868
- "name":"ListSubscribedRuleGroups",
869
- "http":{
870
- "method":"POST",
871
- "requestUri":"/"
872
- },
873
- "input":{"shape":"ListSubscribedRuleGroupsRequest"},
874
- "output":{"shape":"ListSubscribedRuleGroupsResponse"},
875
- "errors":[
876
- {"shape":"WAFNonexistentItemException"},
877
- {"shape":"WAFInternalErrorException"}
878
- ]
879
- },
880
- "ListTagsForResource":{
881
- "name":"ListTagsForResource",
882
- "http":{
883
- "method":"POST",
884
- "requestUri":"/"
885
- },
886
- "input":{"shape":"ListTagsForResourceRequest"},
887
- "output":{"shape":"ListTagsForResourceResponse"},
888
- "errors":[
889
- {"shape":"WAFInternalErrorException"},
890
- {"shape":"WAFInvalidParameterException"},
891
- {"shape":"WAFNonexistentItemException"},
892
- {"shape":"WAFBadRequestException"},
893
- {"shape":"WAFTagOperationException"},
894
- {"shape":"WAFTagOperationInternalErrorException"}
895
- ]
896
- },
897
- "ListWebACLs":{
898
- "name":"ListWebACLs",
899
- "http":{
900
- "method":"POST",
901
- "requestUri":"/"
902
- },
903
- "input":{"shape":"ListWebACLsRequest"},
904
- "output":{"shape":"ListWebACLsResponse"},
905
- "errors":[
906
- {"shape":"WAFInternalErrorException"},
907
- {"shape":"WAFInvalidAccountException"}
908
- ]
909
- },
910
- "ListXssMatchSets":{
911
- "name":"ListXssMatchSets",
912
- "http":{
913
- "method":"POST",
914
- "requestUri":"/"
915
- },
916
- "input":{"shape":"ListXssMatchSetsRequest"},
917
- "output":{"shape":"ListXssMatchSetsResponse"},
918
- "errors":[
919
- {"shape":"WAFInternalErrorException"},
920
- {"shape":"WAFInvalidAccountException"}
921
- ]
922
- },
923
- "PutLoggingConfiguration":{
924
- "name":"PutLoggingConfiguration",
925
- "http":{
926
- "method":"POST",
927
- "requestUri":"/"
928
- },
929
- "input":{"shape":"PutLoggingConfigurationRequest"},
930
- "output":{"shape":"PutLoggingConfigurationResponse"},
931
- "errors":[
932
- {"shape":"WAFInternalErrorException"},
933
- {"shape":"WAFNonexistentItemException"},
934
- {"shape":"WAFStaleDataException"},
935
- {"shape":"WAFServiceLinkedRoleErrorException"}
936
- ]
937
- },
938
- "PutPermissionPolicy":{
939
- "name":"PutPermissionPolicy",
940
- "http":{
941
- "method":"POST",
942
- "requestUri":"/"
943
- },
944
- "input":{"shape":"PutPermissionPolicyRequest"},
945
- "output":{"shape":"PutPermissionPolicyResponse"},
946
- "errors":[
947
- {"shape":"WAFInternalErrorException"},
948
- {"shape":"WAFStaleDataException"},
949
- {"shape":"WAFNonexistentItemException"},
950
- {"shape":"WAFInvalidPermissionPolicyException"}
951
- ]
952
- },
953
- "TagResource":{
954
- "name":"TagResource",
955
- "http":{
956
- "method":"POST",
957
- "requestUri":"/"
958
- },
959
- "input":{"shape":"TagResourceRequest"},
960
- "output":{"shape":"TagResourceResponse"},
961
- "errors":[
962
- {"shape":"WAFInternalErrorException"},
963
- {"shape":"WAFInvalidParameterException"},
964
- {"shape":"WAFLimitsExceededException"},
965
- {"shape":"WAFNonexistentItemException"},
966
- {"shape":"WAFBadRequestException"},
967
- {"shape":"WAFTagOperationException"},
968
- {"shape":"WAFTagOperationInternalErrorException"}
969
- ]
970
- },
971
- "UntagResource":{
972
- "name":"UntagResource",
973
- "http":{
974
- "method":"POST",
975
- "requestUri":"/"
976
- },
977
- "input":{"shape":"UntagResourceRequest"},
978
- "output":{"shape":"UntagResourceResponse"},
979
- "errors":[
980
- {"shape":"WAFInternalErrorException"},
981
- {"shape":"WAFInvalidParameterException"},
982
- {"shape":"WAFNonexistentItemException"},
983
- {"shape":"WAFBadRequestException"},
984
- {"shape":"WAFTagOperationException"},
985
- {"shape":"WAFTagOperationInternalErrorException"}
986
- ]
987
- },
988
- "UpdateByteMatchSet":{
989
- "name":"UpdateByteMatchSet",
990
- "http":{
991
- "method":"POST",
992
- "requestUri":"/"
993
- },
994
- "input":{"shape":"UpdateByteMatchSetRequest"},
995
- "output":{"shape":"UpdateByteMatchSetResponse"},
996
- "errors":[
997
- {"shape":"WAFInternalErrorException"},
998
- {"shape":"WAFInvalidAccountException"},
999
- {"shape":"WAFInvalidOperationException"},
1000
- {"shape":"WAFInvalidParameterException"},
1001
- {"shape":"WAFNonexistentContainerException"},
1002
- {"shape":"WAFNonexistentItemException"},
1003
- {"shape":"WAFStaleDataException"},
1004
- {"shape":"WAFLimitsExceededException"}
1005
- ]
1006
- },
1007
- "UpdateGeoMatchSet":{
1008
- "name":"UpdateGeoMatchSet",
1009
- "http":{
1010
- "method":"POST",
1011
- "requestUri":"/"
1012
- },
1013
- "input":{"shape":"UpdateGeoMatchSetRequest"},
1014
- "output":{"shape":"UpdateGeoMatchSetResponse"},
1015
- "errors":[
1016
- {"shape":"WAFStaleDataException"},
1017
- {"shape":"WAFInternalErrorException"},
1018
- {"shape":"WAFInvalidAccountException"},
1019
- {"shape":"WAFInvalidOperationException"},
1020
- {"shape":"WAFInvalidParameterException"},
1021
- {"shape":"WAFNonexistentContainerException"},
1022
- {"shape":"WAFNonexistentItemException"},
1023
- {"shape":"WAFReferencedItemException"},
1024
- {"shape":"WAFLimitsExceededException"}
1025
- ]
1026
- },
1027
- "UpdateIPSet":{
1028
- "name":"UpdateIPSet",
1029
- "http":{
1030
- "method":"POST",
1031
- "requestUri":"/"
1032
- },
1033
- "input":{"shape":"UpdateIPSetRequest"},
1034
- "output":{"shape":"UpdateIPSetResponse"},
1035
- "errors":[
1036
- {"shape":"WAFStaleDataException"},
1037
- {"shape":"WAFInternalErrorException"},
1038
- {"shape":"WAFInvalidAccountException"},
1039
- {"shape":"WAFInvalidOperationException"},
1040
- {"shape":"WAFInvalidParameterException"},
1041
- {"shape":"WAFNonexistentContainerException"},
1042
- {"shape":"WAFNonexistentItemException"},
1043
- {"shape":"WAFReferencedItemException"},
1044
- {"shape":"WAFLimitsExceededException"}
1045
- ]
1046
- },
1047
- "UpdateRateBasedRule":{
1048
- "name":"UpdateRateBasedRule",
1049
- "http":{
1050
- "method":"POST",
1051
- "requestUri":"/"
1052
- },
1053
- "input":{"shape":"UpdateRateBasedRuleRequest"},
1054
- "output":{"shape":"UpdateRateBasedRuleResponse"},
1055
- "errors":[
1056
- {"shape":"WAFStaleDataException"},
1057
- {"shape":"WAFInternalErrorException"},
1058
- {"shape":"WAFInvalidAccountException"},
1059
- {"shape":"WAFInvalidOperationException"},
1060
- {"shape":"WAFInvalidParameterException"},
1061
- {"shape":"WAFNonexistentContainerException"},
1062
- {"shape":"WAFNonexistentItemException"},
1063
- {"shape":"WAFReferencedItemException"},
1064
- {"shape":"WAFLimitsExceededException"}
1065
- ]
1066
- },
1067
- "UpdateRegexMatchSet":{
1068
- "name":"UpdateRegexMatchSet",
1069
- "http":{
1070
- "method":"POST",
1071
- "requestUri":"/"
1072
- },
1073
- "input":{"shape":"UpdateRegexMatchSetRequest"},
1074
- "output":{"shape":"UpdateRegexMatchSetResponse"},
1075
- "errors":[
1076
- {"shape":"WAFStaleDataException"},
1077
- {"shape":"WAFInternalErrorException"},
1078
- {"shape":"WAFDisallowedNameException"},
1079
- {"shape":"WAFLimitsExceededException"},
1080
- {"shape":"WAFNonexistentItemException"},
1081
- {"shape":"WAFNonexistentContainerException"},
1082
- {"shape":"WAFInvalidOperationException"},
1083
- {"shape":"WAFInvalidAccountException"}
1084
- ]
1085
- },
1086
- "UpdateRegexPatternSet":{
1087
- "name":"UpdateRegexPatternSet",
1088
- "http":{
1089
- "method":"POST",
1090
- "requestUri":"/"
1091
- },
1092
- "input":{"shape":"UpdateRegexPatternSetRequest"},
1093
- "output":{"shape":"UpdateRegexPatternSetResponse"},
1094
- "errors":[
1095
- {"shape":"WAFStaleDataException"},
1096
- {"shape":"WAFInternalErrorException"},
1097
- {"shape":"WAFLimitsExceededException"},
1098
- {"shape":"WAFNonexistentItemException"},
1099
- {"shape":"WAFNonexistentContainerException"},
1100
- {"shape":"WAFInvalidOperationException"},
1101
- {"shape":"WAFInvalidAccountException"},
1102
- {"shape":"WAFInvalidRegexPatternException"}
1103
- ]
1104
- },
1105
- "UpdateRule":{
1106
- "name":"UpdateRule",
1107
- "http":{
1108
- "method":"POST",
1109
- "requestUri":"/"
1110
- },
1111
- "input":{"shape":"UpdateRuleRequest"},
1112
- "output":{"shape":"UpdateRuleResponse"},
1113
- "errors":[
1114
- {"shape":"WAFStaleDataException"},
1115
- {"shape":"WAFInternalErrorException"},
1116
- {"shape":"WAFInvalidAccountException"},
1117
- {"shape":"WAFInvalidOperationException"},
1118
- {"shape":"WAFInvalidParameterException"},
1119
- {"shape":"WAFNonexistentContainerException"},
1120
- {"shape":"WAFNonexistentItemException"},
1121
- {"shape":"WAFReferencedItemException"},
1122
- {"shape":"WAFLimitsExceededException"}
1123
- ]
1124
- },
1125
- "UpdateRuleGroup":{
1126
- "name":"UpdateRuleGroup",
1127
- "http":{
1128
- "method":"POST",
1129
- "requestUri":"/"
1130
- },
1131
- "input":{"shape":"UpdateRuleGroupRequest"},
1132
- "output":{"shape":"UpdateRuleGroupResponse"},
1133
- "errors":[
1134
- {"shape":"WAFStaleDataException"},
1135
- {"shape":"WAFInternalErrorException"},
1136
- {"shape":"WAFNonexistentContainerException"},
1137
- {"shape":"WAFNonexistentItemException"},
1138
- {"shape":"WAFInvalidOperationException"},
1139
- {"shape":"WAFLimitsExceededException"},
1140
- {"shape":"WAFInvalidParameterException"}
1141
- ]
1142
- },
1143
- "UpdateSizeConstraintSet":{
1144
- "name":"UpdateSizeConstraintSet",
1145
- "http":{
1146
- "method":"POST",
1147
- "requestUri":"/"
1148
- },
1149
- "input":{"shape":"UpdateSizeConstraintSetRequest"},
1150
- "output":{"shape":"UpdateSizeConstraintSetResponse"},
1151
- "errors":[
1152
- {"shape":"WAFStaleDataException"},
1153
- {"shape":"WAFInternalErrorException"},
1154
- {"shape":"WAFInvalidAccountException"},
1155
- {"shape":"WAFInvalidOperationException"},
1156
- {"shape":"WAFInvalidParameterException"},
1157
- {"shape":"WAFNonexistentContainerException"},
1158
- {"shape":"WAFNonexistentItemException"},
1159
- {"shape":"WAFReferencedItemException"},
1160
- {"shape":"WAFLimitsExceededException"}
1161
- ]
1162
- },
1163
- "UpdateSqlInjectionMatchSet":{
1164
- "name":"UpdateSqlInjectionMatchSet",
1165
- "http":{
1166
- "method":"POST",
1167
- "requestUri":"/"
1168
- },
1169
- "input":{"shape":"UpdateSqlInjectionMatchSetRequest"},
1170
- "output":{"shape":"UpdateSqlInjectionMatchSetResponse"},
1171
- "errors":[
1172
- {"shape":"WAFInternalErrorException"},
1173
- {"shape":"WAFInvalidAccountException"},
1174
- {"shape":"WAFInvalidOperationException"},
1175
- {"shape":"WAFInvalidParameterException"},
1176
- {"shape":"WAFNonexistentContainerException"},
1177
- {"shape":"WAFNonexistentItemException"},
1178
- {"shape":"WAFStaleDataException"},
1179
- {"shape":"WAFLimitsExceededException"}
1180
- ]
1181
- },
1182
- "UpdateWebACL":{
1183
- "name":"UpdateWebACL",
1184
- "http":{
1185
- "method":"POST",
1186
- "requestUri":"/"
1187
- },
1188
- "input":{"shape":"UpdateWebACLRequest"},
1189
- "output":{"shape":"UpdateWebACLResponse"},
1190
- "errors":[
1191
- {"shape":"WAFStaleDataException"},
1192
- {"shape":"WAFInternalErrorException"},
1193
- {"shape":"WAFInvalidAccountException"},
1194
- {"shape":"WAFInvalidOperationException"},
1195
- {"shape":"WAFInvalidParameterException"},
1196
- {"shape":"WAFNonexistentContainerException"},
1197
- {"shape":"WAFNonexistentItemException"},
1198
- {"shape":"WAFReferencedItemException"},
1199
- {"shape":"WAFLimitsExceededException"},
1200
- {"shape":"WAFSubscriptionNotFoundException"}
1201
- ]
1202
- },
1203
- "UpdateXssMatchSet":{
1204
- "name":"UpdateXssMatchSet",
1205
- "http":{
1206
- "method":"POST",
1207
- "requestUri":"/"
1208
- },
1209
- "input":{"shape":"UpdateXssMatchSetRequest"},
1210
- "output":{"shape":"UpdateXssMatchSetResponse"},
1211
- "errors":[
1212
- {"shape":"WAFInternalErrorException"},
1213
- {"shape":"WAFInvalidAccountException"},
1214
- {"shape":"WAFInvalidOperationException"},
1215
- {"shape":"WAFInvalidParameterException"},
1216
- {"shape":"WAFNonexistentContainerException"},
1217
- {"shape":"WAFNonexistentItemException"},
1218
- {"shape":"WAFStaleDataException"},
1219
- {"shape":"WAFLimitsExceededException"}
1220
- ]
1221
- }
1222
- },
1223
- "shapes":{
1224
- "Action":{"type":"string"},
1225
- "ActivatedRule":{
1226
- "type":"structure",
1227
- "required":[
1228
- "Priority",
1229
- "RuleId"
1230
- ],
1231
- "members":{
1232
- "Priority":{"shape":"RulePriority"},
1233
- "RuleId":{"shape":"ResourceId"},
1234
- "Action":{"shape":"WafAction"},
1235
- "OverrideAction":{"shape":"WafOverrideAction"},
1236
- "Type":{"shape":"WafRuleType"},
1237
- "ExcludedRules":{"shape":"ExcludedRules"}
1238
- }
1239
- },
1240
- "ActivatedRules":{
1241
- "type":"list",
1242
- "member":{"shape":"ActivatedRule"}
1243
- },
1244
- "ByteMatchSet":{
1245
- "type":"structure",
1246
- "required":[
1247
- "ByteMatchSetId",
1248
- "ByteMatchTuples"
1249
- ],
1250
- "members":{
1251
- "ByteMatchSetId":{"shape":"ResourceId"},
1252
- "Name":{"shape":"ResourceName"},
1253
- "ByteMatchTuples":{"shape":"ByteMatchTuples"}
1254
- }
1255
- },
1256
- "ByteMatchSetSummaries":{
1257
- "type":"list",
1258
- "member":{"shape":"ByteMatchSetSummary"}
1259
- },
1260
- "ByteMatchSetSummary":{
1261
- "type":"structure",
1262
- "required":[
1263
- "ByteMatchSetId",
1264
- "Name"
1265
- ],
1266
- "members":{
1267
- "ByteMatchSetId":{"shape":"ResourceId"},
1268
- "Name":{"shape":"ResourceName"}
1269
- }
1270
- },
1271
- "ByteMatchSetUpdate":{
1272
- "type":"structure",
1273
- "required":[
1274
- "Action",
1275
- "ByteMatchTuple"
1276
- ],
1277
- "members":{
1278
- "Action":{"shape":"ChangeAction"},
1279
- "ByteMatchTuple":{"shape":"ByteMatchTuple"}
1280
- }
1281
- },
1282
- "ByteMatchSetUpdates":{
1283
- "type":"list",
1284
- "member":{"shape":"ByteMatchSetUpdate"},
1285
- "min":1
1286
- },
1287
- "ByteMatchTargetString":{"type":"blob"},
1288
- "ByteMatchTuple":{
1289
- "type":"structure",
1290
- "required":[
1291
- "FieldToMatch",
1292
- "TargetString",
1293
- "TextTransformation",
1294
- "PositionalConstraint"
1295
- ],
1296
- "members":{
1297
- "FieldToMatch":{"shape":"FieldToMatch"},
1298
- "TargetString":{"shape":"ByteMatchTargetString"},
1299
- "TextTransformation":{"shape":"TextTransformation"},
1300
- "PositionalConstraint":{"shape":"PositionalConstraint"}
1301
- }
1302
- },
1303
- "ByteMatchTuples":{
1304
- "type":"list",
1305
- "member":{"shape":"ByteMatchTuple"}
1306
- },
1307
- "ChangeAction":{
1308
- "type":"string",
1309
- "enum":[
1310
- "INSERT",
1311
- "DELETE"
1312
- ]
1313
- },
1314
- "ChangeToken":{
1315
- "type":"string",
1316
- "min":1
1317
- },
1318
- "ChangeTokenStatus":{
1319
- "type":"string",
1320
- "enum":[
1321
- "PROVISIONED",
1322
- "PENDING",
1323
- "INSYNC"
1324
- ]
1325
- },
1326
- "ComparisonOperator":{
1327
- "type":"string",
1328
- "enum":[
1329
- "EQ",
1330
- "NE",
1331
- "LE",
1332
- "LT",
1333
- "GE",
1334
- "GT"
1335
- ]
1336
- },
1337
- "Country":{"type":"string"},
1338
- "CreateByteMatchSetRequest":{
1339
- "type":"structure",
1340
- "required":[
1341
- "Name",
1342
- "ChangeToken"
1343
- ],
1344
- "members":{
1345
- "Name":{"shape":"ResourceName"},
1346
- "ChangeToken":{"shape":"ChangeToken"}
1347
- }
1348
- },
1349
- "CreateByteMatchSetResponse":{
1350
- "type":"structure",
1351
- "members":{
1352
- "ByteMatchSet":{"shape":"ByteMatchSet"},
1353
- "ChangeToken":{"shape":"ChangeToken"}
1354
- }
1355
- },
1356
- "CreateGeoMatchSetRequest":{
1357
- "type":"structure",
1358
- "required":[
1359
- "Name",
1360
- "ChangeToken"
1361
- ],
1362
- "members":{
1363
- "Name":{"shape":"ResourceName"},
1364
- "ChangeToken":{"shape":"ChangeToken"}
1365
- }
1366
- },
1367
- "CreateGeoMatchSetResponse":{
1368
- "type":"structure",
1369
- "members":{
1370
- "GeoMatchSet":{"shape":"GeoMatchSet"},
1371
- "ChangeToken":{"shape":"ChangeToken"}
1372
- }
1373
- },
1374
- "CreateIPSetRequest":{
1375
- "type":"structure",
1376
- "required":[
1377
- "Name",
1378
- "ChangeToken"
1379
- ],
1380
- "members":{
1381
- "Name":{"shape":"ResourceName"},
1382
- "ChangeToken":{"shape":"ChangeToken"}
1383
- }
1384
- },
1385
- "CreateIPSetResponse":{
1386
- "type":"structure",
1387
- "members":{
1388
- "IPSet":{"shape":"IPSet"},
1389
- "ChangeToken":{"shape":"ChangeToken"}
1390
- }
1391
- },
1392
- "CreateRateBasedRuleRequest":{
1393
- "type":"structure",
1394
- "required":[
1395
- "Name",
1396
- "MetricName",
1397
- "RateKey",
1398
- "RateLimit",
1399
- "ChangeToken"
1400
- ],
1401
- "members":{
1402
- "Name":{"shape":"ResourceName"},
1403
- "MetricName":{"shape":"MetricName"},
1404
- "RateKey":{"shape":"RateKey"},
1405
- "RateLimit":{"shape":"RateLimit"},
1406
- "ChangeToken":{"shape":"ChangeToken"},
1407
- "Tags":{"shape":"TagList"}
1408
- }
1409
- },
1410
- "CreateRateBasedRuleResponse":{
1411
- "type":"structure",
1412
- "members":{
1413
- "Rule":{"shape":"RateBasedRule"},
1414
- "ChangeToken":{"shape":"ChangeToken"}
1415
- }
1416
- },
1417
- "CreateRegexMatchSetRequest":{
1418
- "type":"structure",
1419
- "required":[
1420
- "Name",
1421
- "ChangeToken"
1422
- ],
1423
- "members":{
1424
- "Name":{"shape":"ResourceName"},
1425
- "ChangeToken":{"shape":"ChangeToken"}
1426
- }
1427
- },
1428
- "CreateRegexMatchSetResponse":{
1429
- "type":"structure",
1430
- "members":{
1431
- "RegexMatchSet":{"shape":"RegexMatchSet"},
1432
- "ChangeToken":{"shape":"ChangeToken"}
1433
- }
1434
- },
1435
- "CreateRegexPatternSetRequest":{
1436
- "type":"structure",
1437
- "required":[
1438
- "Name",
1439
- "ChangeToken"
1440
- ],
1441
- "members":{
1442
- "Name":{"shape":"ResourceName"},
1443
- "ChangeToken":{"shape":"ChangeToken"}
1444
- }
1445
- },
1446
- "CreateRegexPatternSetResponse":{
1447
- "type":"structure",
1448
- "members":{
1449
- "RegexPatternSet":{"shape":"RegexPatternSet"},
1450
- "ChangeToken":{"shape":"ChangeToken"}
1451
- }
1452
- },
1453
- "CreateRuleGroupRequest":{
1454
- "type":"structure",
1455
- "required":[
1456
- "Name",
1457
- "MetricName",
1458
- "ChangeToken"
1459
- ],
1460
- "members":{
1461
- "Name":{"shape":"ResourceName"},
1462
- "MetricName":{"shape":"MetricName"},
1463
- "ChangeToken":{"shape":"ChangeToken"},
1464
- "Tags":{"shape":"TagList"}
1465
- }
1466
- },
1467
- "CreateRuleGroupResponse":{
1468
- "type":"structure",
1469
- "members":{
1470
- "RuleGroup":{"shape":"RuleGroup"},
1471
- "ChangeToken":{"shape":"ChangeToken"}
1472
- }
1473
- },
1474
- "CreateRuleRequest":{
1475
- "type":"structure",
1476
- "required":[
1477
- "Name",
1478
- "MetricName",
1479
- "ChangeToken"
1480
- ],
1481
- "members":{
1482
- "Name":{"shape":"ResourceName"},
1483
- "MetricName":{"shape":"MetricName"},
1484
- "ChangeToken":{"shape":"ChangeToken"},
1485
- "Tags":{"shape":"TagList"}
1486
- }
1487
- },
1488
- "CreateRuleResponse":{
1489
- "type":"structure",
1490
- "members":{
1491
- "Rule":{"shape":"Rule"},
1492
- "ChangeToken":{"shape":"ChangeToken"}
1493
- }
1494
- },
1495
- "CreateSizeConstraintSetRequest":{
1496
- "type":"structure",
1497
- "required":[
1498
- "Name",
1499
- "ChangeToken"
1500
- ],
1501
- "members":{
1502
- "Name":{"shape":"ResourceName"},
1503
- "ChangeToken":{"shape":"ChangeToken"}
1504
- }
1505
- },
1506
- "CreateSizeConstraintSetResponse":{
1507
- "type":"structure",
1508
- "members":{
1509
- "SizeConstraintSet":{"shape":"SizeConstraintSet"},
1510
- "ChangeToken":{"shape":"ChangeToken"}
1511
- }
1512
- },
1513
- "CreateSqlInjectionMatchSetRequest":{
1514
- "type":"structure",
1515
- "required":[
1516
- "Name",
1517
- "ChangeToken"
1518
- ],
1519
- "members":{
1520
- "Name":{"shape":"ResourceName"},
1521
- "ChangeToken":{"shape":"ChangeToken"}
1522
- }
1523
- },
1524
- "CreateSqlInjectionMatchSetResponse":{
1525
- "type":"structure",
1526
- "members":{
1527
- "SqlInjectionMatchSet":{"shape":"SqlInjectionMatchSet"},
1528
- "ChangeToken":{"shape":"ChangeToken"}
1529
- }
1530
- },
1531
- "CreateWebACLRequest":{
1532
- "type":"structure",
1533
- "required":[
1534
- "Name",
1535
- "MetricName",
1536
- "DefaultAction",
1537
- "ChangeToken"
1538
- ],
1539
- "members":{
1540
- "Name":{"shape":"ResourceName"},
1541
- "MetricName":{"shape":"MetricName"},
1542
- "DefaultAction":{"shape":"WafAction"},
1543
- "ChangeToken":{"shape":"ChangeToken"},
1544
- "Tags":{"shape":"TagList"}
1545
- }
1546
- },
1547
- "CreateWebACLResponse":{
1548
- "type":"structure",
1549
- "members":{
1550
- "WebACL":{"shape":"WebACL"},
1551
- "ChangeToken":{"shape":"ChangeToken"}
1552
- }
1553
- },
1554
- "CreateXssMatchSetRequest":{
1555
- "type":"structure",
1556
- "required":[
1557
- "Name",
1558
- "ChangeToken"
1559
- ],
1560
- "members":{
1561
- "Name":{"shape":"ResourceName"},
1562
- "ChangeToken":{"shape":"ChangeToken"}
1563
- }
1564
- },
1565
- "CreateXssMatchSetResponse":{
1566
- "type":"structure",
1567
- "members":{
1568
- "XssMatchSet":{"shape":"XssMatchSet"},
1569
- "ChangeToken":{"shape":"ChangeToken"}
1570
- }
1571
- },
1572
- "DeleteByteMatchSetRequest":{
1573
- "type":"structure",
1574
- "required":[
1575
- "ByteMatchSetId",
1576
- "ChangeToken"
1577
- ],
1578
- "members":{
1579
- "ByteMatchSetId":{"shape":"ResourceId"},
1580
- "ChangeToken":{"shape":"ChangeToken"}
1581
- }
1582
- },
1583
- "DeleteByteMatchSetResponse":{
1584
- "type":"structure",
1585
- "members":{
1586
- "ChangeToken":{"shape":"ChangeToken"}
1587
- }
1588
- },
1589
- "DeleteGeoMatchSetRequest":{
1590
- "type":"structure",
1591
- "required":[
1592
- "GeoMatchSetId",
1593
- "ChangeToken"
1594
- ],
1595
- "members":{
1596
- "GeoMatchSetId":{"shape":"ResourceId"},
1597
- "ChangeToken":{"shape":"ChangeToken"}
1598
- }
1599
- },
1600
- "DeleteGeoMatchSetResponse":{
1601
- "type":"structure",
1602
- "members":{
1603
- "ChangeToken":{"shape":"ChangeToken"}
1604
- }
1605
- },
1606
- "DeleteIPSetRequest":{
1607
- "type":"structure",
1608
- "required":[
1609
- "IPSetId",
1610
- "ChangeToken"
1611
- ],
1612
- "members":{
1613
- "IPSetId":{"shape":"ResourceId"},
1614
- "ChangeToken":{"shape":"ChangeToken"}
1615
- }
1616
- },
1617
- "DeleteIPSetResponse":{
1618
- "type":"structure",
1619
- "members":{
1620
- "ChangeToken":{"shape":"ChangeToken"}
1621
- }
1622
- },
1623
- "DeleteLoggingConfigurationRequest":{
1624
- "type":"structure",
1625
- "required":["ResourceArn"],
1626
- "members":{
1627
- "ResourceArn":{"shape":"ResourceArn"}
1628
- }
1629
- },
1630
- "DeleteLoggingConfigurationResponse":{
1631
- "type":"structure",
1632
- "members":{
1633
- }
1634
- },
1635
- "DeletePermissionPolicyRequest":{
1636
- "type":"structure",
1637
- "required":["ResourceArn"],
1638
- "members":{
1639
- "ResourceArn":{"shape":"ResourceArn"}
1640
- }
1641
- },
1642
- "DeletePermissionPolicyResponse":{
1643
- "type":"structure",
1644
- "members":{
1645
- }
1646
- },
1647
- "DeleteRateBasedRuleRequest":{
1648
- "type":"structure",
1649
- "required":[
1650
- "RuleId",
1651
- "ChangeToken"
1652
- ],
1653
- "members":{
1654
- "RuleId":{"shape":"ResourceId"},
1655
- "ChangeToken":{"shape":"ChangeToken"}
1656
- }
1657
- },
1658
- "DeleteRateBasedRuleResponse":{
1659
- "type":"structure",
1660
- "members":{
1661
- "ChangeToken":{"shape":"ChangeToken"}
1662
- }
1663
- },
1664
- "DeleteRegexMatchSetRequest":{
1665
- "type":"structure",
1666
- "required":[
1667
- "RegexMatchSetId",
1668
- "ChangeToken"
1669
- ],
1670
- "members":{
1671
- "RegexMatchSetId":{"shape":"ResourceId"},
1672
- "ChangeToken":{"shape":"ChangeToken"}
1673
- }
1674
- },
1675
- "DeleteRegexMatchSetResponse":{
1676
- "type":"structure",
1677
- "members":{
1678
- "ChangeToken":{"shape":"ChangeToken"}
1679
- }
1680
- },
1681
- "DeleteRegexPatternSetRequest":{
1682
- "type":"structure",
1683
- "required":[
1684
- "RegexPatternSetId",
1685
- "ChangeToken"
1686
- ],
1687
- "members":{
1688
- "RegexPatternSetId":{"shape":"ResourceId"},
1689
- "ChangeToken":{"shape":"ChangeToken"}
1690
- }
1691
- },
1692
- "DeleteRegexPatternSetResponse":{
1693
- "type":"structure",
1694
- "members":{
1695
- "ChangeToken":{"shape":"ChangeToken"}
1696
- }
1697
- },
1698
- "DeleteRuleGroupRequest":{
1699
- "type":"structure",
1700
- "required":[
1701
- "RuleGroupId",
1702
- "ChangeToken"
1703
- ],
1704
- "members":{
1705
- "RuleGroupId":{"shape":"ResourceId"},
1706
- "ChangeToken":{"shape":"ChangeToken"}
1707
- }
1708
- },
1709
- "DeleteRuleGroupResponse":{
1710
- "type":"structure",
1711
- "members":{
1712
- "ChangeToken":{"shape":"ChangeToken"}
1713
- }
1714
- },
1715
- "DeleteRuleRequest":{
1716
- "type":"structure",
1717
- "required":[
1718
- "RuleId",
1719
- "ChangeToken"
1720
- ],
1721
- "members":{
1722
- "RuleId":{"shape":"ResourceId"},
1723
- "ChangeToken":{"shape":"ChangeToken"}
1724
- }
1725
- },
1726
- "DeleteRuleResponse":{
1727
- "type":"structure",
1728
- "members":{
1729
- "ChangeToken":{"shape":"ChangeToken"}
1730
- }
1731
- },
1732
- "DeleteSizeConstraintSetRequest":{
1733
- "type":"structure",
1734
- "required":[
1735
- "SizeConstraintSetId",
1736
- "ChangeToken"
1737
- ],
1738
- "members":{
1739
- "SizeConstraintSetId":{"shape":"ResourceId"},
1740
- "ChangeToken":{"shape":"ChangeToken"}
1741
- }
1742
- },
1743
- "DeleteSizeConstraintSetResponse":{
1744
- "type":"structure",
1745
- "members":{
1746
- "ChangeToken":{"shape":"ChangeToken"}
1747
- }
1748
- },
1749
- "DeleteSqlInjectionMatchSetRequest":{
1750
- "type":"structure",
1751
- "required":[
1752
- "SqlInjectionMatchSetId",
1753
- "ChangeToken"
1754
- ],
1755
- "members":{
1756
- "SqlInjectionMatchSetId":{"shape":"ResourceId"},
1757
- "ChangeToken":{"shape":"ChangeToken"}
1758
- }
1759
- },
1760
- "DeleteSqlInjectionMatchSetResponse":{
1761
- "type":"structure",
1762
- "members":{
1763
- "ChangeToken":{"shape":"ChangeToken"}
1764
- }
1765
- },
1766
- "DeleteWebACLRequest":{
1767
- "type":"structure",
1768
- "required":[
1769
- "WebACLId",
1770
- "ChangeToken"
1771
- ],
1772
- "members":{
1773
- "WebACLId":{"shape":"ResourceId"},
1774
- "ChangeToken":{"shape":"ChangeToken"}
1775
- }
1776
- },
1777
- "DeleteWebACLResponse":{
1778
- "type":"structure",
1779
- "members":{
1780
- "ChangeToken":{"shape":"ChangeToken"}
1781
- }
1782
- },
1783
- "DeleteXssMatchSetRequest":{
1784
- "type":"structure",
1785
- "required":[
1786
- "XssMatchSetId",
1787
- "ChangeToken"
1788
- ],
1789
- "members":{
1790
- "XssMatchSetId":{"shape":"ResourceId"},
1791
- "ChangeToken":{"shape":"ChangeToken"}
1792
- }
1793
- },
1794
- "DeleteXssMatchSetResponse":{
1795
- "type":"structure",
1796
- "members":{
1797
- "ChangeToken":{"shape":"ChangeToken"}
1798
- }
1799
- },
1800
- "ExcludedRule":{
1801
- "type":"structure",
1802
- "required":["RuleId"],
1803
- "members":{
1804
- "RuleId":{"shape":"ResourceId"}
1805
- }
1806
- },
1807
- "ExcludedRules":{
1808
- "type":"list",
1809
- "member":{"shape":"ExcludedRule"}
1810
- },
1811
- "FieldToMatch":{
1812
- "type":"structure",
1813
- "required":["Type"],
1814
- "members":{
1815
- "Type":{"shape":"MatchFieldType"},
1816
- "Data":{"shape":"MatchFieldData"}
1817
- }
1818
- },
1819
- "GeoMatchConstraint":{
1820
- "type":"structure",
1821
- "required":[
1822
- "Type",
1823
- "Value"
1824
- ],
1825
- "members":{
1826
- "Type":{"shape":"GeoMatchConstraintType"},
1827
- "Value":{"shape":"GeoMatchConstraintValue"}
1828
- }
1829
- },
1830
- "GeoMatchConstraintType":{
1831
- "type":"string",
1832
- "enum":["Country"]
1833
- },
1834
- "GeoMatchConstraintValue":{
1835
- "type":"string",
1836
- "enum":[
1837
- "AF",
1838
- "AX",
1839
- "AL",
1840
- "DZ",
1841
- "AS",
1842
- "AD",
1843
- "AO",
1844
- "AI",
1845
- "AQ",
1846
- "AG",
1847
- "AR",
1848
- "AM",
1849
- "AW",
1850
- "AU",
1851
- "AT",
1852
- "AZ",
1853
- "BS",
1854
- "BH",
1855
- "BD",
1856
- "BB",
1857
- "BY",
1858
- "BE",
1859
- "BZ",
1860
- "BJ",
1861
- "BM",
1862
- "BT",
1863
- "BO",
1864
- "BQ",
1865
- "BA",
1866
- "BW",
1867
- "BV",
1868
- "BR",
1869
- "IO",
1870
- "BN",
1871
- "BG",
1872
- "BF",
1873
- "BI",
1874
- "KH",
1875
- "CM",
1876
- "CA",
1877
- "CV",
1878
- "KY",
1879
- "CF",
1880
- "TD",
1881
- "CL",
1882
- "CN",
1883
- "CX",
1884
- "CC",
1885
- "CO",
1886
- "KM",
1887
- "CG",
1888
- "CD",
1889
- "CK",
1890
- "CR",
1891
- "CI",
1892
- "HR",
1893
- "CU",
1894
- "CW",
1895
- "CY",
1896
- "CZ",
1897
- "DK",
1898
- "DJ",
1899
- "DM",
1900
- "DO",
1901
- "EC",
1902
- "EG",
1903
- "SV",
1904
- "GQ",
1905
- "ER",
1906
- "EE",
1907
- "ET",
1908
- "FK",
1909
- "FO",
1910
- "FJ",
1911
- "FI",
1912
- "FR",
1913
- "GF",
1914
- "PF",
1915
- "TF",
1916
- "GA",
1917
- "GM",
1918
- "GE",
1919
- "DE",
1920
- "GH",
1921
- "GI",
1922
- "GR",
1923
- "GL",
1924
- "GD",
1925
- "GP",
1926
- "GU",
1927
- "GT",
1928
- "GG",
1929
- "GN",
1930
- "GW",
1931
- "GY",
1932
- "HT",
1933
- "HM",
1934
- "VA",
1935
- "HN",
1936
- "HK",
1937
- "HU",
1938
- "IS",
1939
- "IN",
1940
- "ID",
1941
- "IR",
1942
- "IQ",
1943
- "IE",
1944
- "IM",
1945
- "IL",
1946
- "IT",
1947
- "JM",
1948
- "JP",
1949
- "JE",
1950
- "JO",
1951
- "KZ",
1952
- "KE",
1953
- "KI",
1954
- "KP",
1955
- "KR",
1956
- "KW",
1957
- "KG",
1958
- "LA",
1959
- "LV",
1960
- "LB",
1961
- "LS",
1962
- "LR",
1963
- "LY",
1964
- "LI",
1965
- "LT",
1966
- "LU",
1967
- "MO",
1968
- "MK",
1969
- "MG",
1970
- "MW",
1971
- "MY",
1972
- "MV",
1973
- "ML",
1974
- "MT",
1975
- "MH",
1976
- "MQ",
1977
- "MR",
1978
- "MU",
1979
- "YT",
1980
- "MX",
1981
- "FM",
1982
- "MD",
1983
- "MC",
1984
- "MN",
1985
- "ME",
1986
- "MS",
1987
- "MA",
1988
- "MZ",
1989
- "MM",
1990
- "NA",
1991
- "NR",
1992
- "NP",
1993
- "NL",
1994
- "NC",
1995
- "NZ",
1996
- "NI",
1997
- "NE",
1998
- "NG",
1999
- "NU",
2000
- "NF",
2001
- "MP",
2002
- "NO",
2003
- "OM",
2004
- "PK",
2005
- "PW",
2006
- "PS",
2007
- "PA",
2008
- "PG",
2009
- "PY",
2010
- "PE",
2011
- "PH",
2012
- "PN",
2013
- "PL",
2014
- "PT",
2015
- "PR",
2016
- "QA",
2017
- "RE",
2018
- "RO",
2019
- "RU",
2020
- "RW",
2021
- "BL",
2022
- "SH",
2023
- "KN",
2024
- "LC",
2025
- "MF",
2026
- "PM",
2027
- "VC",
2028
- "WS",
2029
- "SM",
2030
- "ST",
2031
- "SA",
2032
- "SN",
2033
- "RS",
2034
- "SC",
2035
- "SL",
2036
- "SG",
2037
- "SX",
2038
- "SK",
2039
- "SI",
2040
- "SB",
2041
- "SO",
2042
- "ZA",
2043
- "GS",
2044
- "SS",
2045
- "ES",
2046
- "LK",
2047
- "SD",
2048
- "SR",
2049
- "SJ",
2050
- "SZ",
2051
- "SE",
2052
- "CH",
2053
- "SY",
2054
- "TW",
2055
- "TJ",
2056
- "TZ",
2057
- "TH",
2058
- "TL",
2059
- "TG",
2060
- "TK",
2061
- "TO",
2062
- "TT",
2063
- "TN",
2064
- "TR",
2065
- "TM",
2066
- "TC",
2067
- "TV",
2068
- "UG",
2069
- "UA",
2070
- "AE",
2071
- "GB",
2072
- "US",
2073
- "UM",
2074
- "UY",
2075
- "UZ",
2076
- "VU",
2077
- "VE",
2078
- "VN",
2079
- "VG",
2080
- "VI",
2081
- "WF",
2082
- "EH",
2083
- "YE",
2084
- "ZM",
2085
- "ZW"
2086
- ]
2087
- },
2088
- "GeoMatchConstraints":{
2089
- "type":"list",
2090
- "member":{"shape":"GeoMatchConstraint"}
2091
- },
2092
- "GeoMatchSet":{
2093
- "type":"structure",
2094
- "required":[
2095
- "GeoMatchSetId",
2096
- "GeoMatchConstraints"
2097
- ],
2098
- "members":{
2099
- "GeoMatchSetId":{"shape":"ResourceId"},
2100
- "Name":{"shape":"ResourceName"},
2101
- "GeoMatchConstraints":{"shape":"GeoMatchConstraints"}
2102
- }
2103
- },
2104
- "GeoMatchSetSummaries":{
2105
- "type":"list",
2106
- "member":{"shape":"GeoMatchSetSummary"}
2107
- },
2108
- "GeoMatchSetSummary":{
2109
- "type":"structure",
2110
- "required":[
2111
- "GeoMatchSetId",
2112
- "Name"
2113
- ],
2114
- "members":{
2115
- "GeoMatchSetId":{"shape":"ResourceId"},
2116
- "Name":{"shape":"ResourceName"}
2117
- }
2118
- },
2119
- "GeoMatchSetUpdate":{
2120
- "type":"structure",
2121
- "required":[
2122
- "Action",
2123
- "GeoMatchConstraint"
2124
- ],
2125
- "members":{
2126
- "Action":{"shape":"ChangeAction"},
2127
- "GeoMatchConstraint":{"shape":"GeoMatchConstraint"}
2128
- }
2129
- },
2130
- "GeoMatchSetUpdates":{
2131
- "type":"list",
2132
- "member":{"shape":"GeoMatchSetUpdate"},
2133
- "min":1
2134
- },
2135
- "GetByteMatchSetRequest":{
2136
- "type":"structure",
2137
- "required":["ByteMatchSetId"],
2138
- "members":{
2139
- "ByteMatchSetId":{"shape":"ResourceId"}
2140
- }
2141
- },
2142
- "GetByteMatchSetResponse":{
2143
- "type":"structure",
2144
- "members":{
2145
- "ByteMatchSet":{"shape":"ByteMatchSet"}
2146
- }
2147
- },
2148
- "GetChangeTokenRequest":{
2149
- "type":"structure",
2150
- "members":{
2151
- }
2152
- },
2153
- "GetChangeTokenResponse":{
2154
- "type":"structure",
2155
- "members":{
2156
- "ChangeToken":{"shape":"ChangeToken"}
2157
- }
2158
- },
2159
- "GetChangeTokenStatusRequest":{
2160
- "type":"structure",
2161
- "required":["ChangeToken"],
2162
- "members":{
2163
- "ChangeToken":{"shape":"ChangeToken"}
2164
- }
2165
- },
2166
- "GetChangeTokenStatusResponse":{
2167
- "type":"structure",
2168
- "members":{
2169
- "ChangeTokenStatus":{"shape":"ChangeTokenStatus"}
2170
- }
2171
- },
2172
- "GetGeoMatchSetRequest":{
2173
- "type":"structure",
2174
- "required":["GeoMatchSetId"],
2175
- "members":{
2176
- "GeoMatchSetId":{"shape":"ResourceId"}
2177
- }
2178
- },
2179
- "GetGeoMatchSetResponse":{
2180
- "type":"structure",
2181
- "members":{
2182
- "GeoMatchSet":{"shape":"GeoMatchSet"}
2183
- }
2184
- },
2185
- "GetIPSetRequest":{
2186
- "type":"structure",
2187
- "required":["IPSetId"],
2188
- "members":{
2189
- "IPSetId":{"shape":"ResourceId"}
2190
- }
2191
- },
2192
- "GetIPSetResponse":{
2193
- "type":"structure",
2194
- "members":{
2195
- "IPSet":{"shape":"IPSet"}
2196
- }
2197
- },
2198
- "GetLoggingConfigurationRequest":{
2199
- "type":"structure",
2200
- "required":["ResourceArn"],
2201
- "members":{
2202
- "ResourceArn":{"shape":"ResourceArn"}
2203
- }
2204
- },
2205
- "GetLoggingConfigurationResponse":{
2206
- "type":"structure",
2207
- "members":{
2208
- "LoggingConfiguration":{"shape":"LoggingConfiguration"}
2209
- }
2210
- },
2211
- "GetPermissionPolicyRequest":{
2212
- "type":"structure",
2213
- "required":["ResourceArn"],
2214
- "members":{
2215
- "ResourceArn":{"shape":"ResourceArn"}
2216
- }
2217
- },
2218
- "GetPermissionPolicyResponse":{
2219
- "type":"structure",
2220
- "members":{
2221
- "Policy":{"shape":"PolicyString"}
2222
- }
2223
- },
2224
- "GetRateBasedRuleManagedKeysRequest":{
2225
- "type":"structure",
2226
- "required":["RuleId"],
2227
- "members":{
2228
- "RuleId":{"shape":"ResourceId"},
2229
- "NextMarker":{"shape":"NextMarker"}
2230
- }
2231
- },
2232
- "GetRateBasedRuleManagedKeysResponse":{
2233
- "type":"structure",
2234
- "members":{
2235
- "ManagedKeys":{"shape":"ManagedKeys"},
2236
- "NextMarker":{"shape":"NextMarker"}
2237
- }
2238
- },
2239
- "GetRateBasedRuleRequest":{
2240
- "type":"structure",
2241
- "required":["RuleId"],
2242
- "members":{
2243
- "RuleId":{"shape":"ResourceId"}
2244
- }
2245
- },
2246
- "GetRateBasedRuleResponse":{
2247
- "type":"structure",
2248
- "members":{
2249
- "Rule":{"shape":"RateBasedRule"}
2250
- }
2251
- },
2252
- "GetRegexMatchSetRequest":{
2253
- "type":"structure",
2254
- "required":["RegexMatchSetId"],
2255
- "members":{
2256
- "RegexMatchSetId":{"shape":"ResourceId"}
2257
- }
2258
- },
2259
- "GetRegexMatchSetResponse":{
2260
- "type":"structure",
2261
- "members":{
2262
- "RegexMatchSet":{"shape":"RegexMatchSet"}
2263
- }
2264
- },
2265
- "GetRegexPatternSetRequest":{
2266
- "type":"structure",
2267
- "required":["RegexPatternSetId"],
2268
- "members":{
2269
- "RegexPatternSetId":{"shape":"ResourceId"}
2270
- }
2271
- },
2272
- "GetRegexPatternSetResponse":{
2273
- "type":"structure",
2274
- "members":{
2275
- "RegexPatternSet":{"shape":"RegexPatternSet"}
2276
- }
2277
- },
2278
- "GetRuleGroupRequest":{
2279
- "type":"structure",
2280
- "required":["RuleGroupId"],
2281
- "members":{
2282
- "RuleGroupId":{"shape":"ResourceId"}
2283
- }
2284
- },
2285
- "GetRuleGroupResponse":{
2286
- "type":"structure",
2287
- "members":{
2288
- "RuleGroup":{"shape":"RuleGroup"}
2289
- }
2290
- },
2291
- "GetRuleRequest":{
2292
- "type":"structure",
2293
- "required":["RuleId"],
2294
- "members":{
2295
- "RuleId":{"shape":"ResourceId"}
2296
- }
2297
- },
2298
- "GetRuleResponse":{
2299
- "type":"structure",
2300
- "members":{
2301
- "Rule":{"shape":"Rule"}
2302
- }
2303
- },
2304
- "GetSampledRequestsMaxItems":{
2305
- "type":"long",
2306
- "max":500,
2307
- "min":1
2308
- },
2309
- "GetSampledRequestsRequest":{
2310
- "type":"structure",
2311
- "required":[
2312
- "WebAclId",
2313
- "RuleId",
2314
- "TimeWindow",
2315
- "MaxItems"
2316
- ],
2317
- "members":{
2318
- "WebAclId":{"shape":"ResourceId"},
2319
- "RuleId":{"shape":"ResourceId"},
2320
- "TimeWindow":{"shape":"TimeWindow"},
2321
- "MaxItems":{"shape":"GetSampledRequestsMaxItems"}
2322
- }
2323
- },
2324
- "GetSampledRequestsResponse":{
2325
- "type":"structure",
2326
- "members":{
2327
- "SampledRequests":{"shape":"SampledHTTPRequests"},
2328
- "PopulationSize":{"shape":"PopulationSize"},
2329
- "TimeWindow":{"shape":"TimeWindow"}
2330
- }
2331
- },
2332
- "GetSizeConstraintSetRequest":{
2333
- "type":"structure",
2334
- "required":["SizeConstraintSetId"],
2335
- "members":{
2336
- "SizeConstraintSetId":{"shape":"ResourceId"}
2337
- }
2338
- },
2339
- "GetSizeConstraintSetResponse":{
2340
- "type":"structure",
2341
- "members":{
2342
- "SizeConstraintSet":{"shape":"SizeConstraintSet"}
2343
- }
2344
- },
2345
- "GetSqlInjectionMatchSetRequest":{
2346
- "type":"structure",
2347
- "required":["SqlInjectionMatchSetId"],
2348
- "members":{
2349
- "SqlInjectionMatchSetId":{"shape":"ResourceId"}
2350
- }
2351
- },
2352
- "GetSqlInjectionMatchSetResponse":{
2353
- "type":"structure",
2354
- "members":{
2355
- "SqlInjectionMatchSet":{"shape":"SqlInjectionMatchSet"}
2356
- }
2357
- },
2358
- "GetWebACLRequest":{
2359
- "type":"structure",
2360
- "required":["WebACLId"],
2361
- "members":{
2362
- "WebACLId":{"shape":"ResourceId"}
2363
- }
2364
- },
2365
- "GetWebACLResponse":{
2366
- "type":"structure",
2367
- "members":{
2368
- "WebACL":{"shape":"WebACL"}
2369
- }
2370
- },
2371
- "GetXssMatchSetRequest":{
2372
- "type":"structure",
2373
- "required":["XssMatchSetId"],
2374
- "members":{
2375
- "XssMatchSetId":{"shape":"ResourceId"}
2376
- }
2377
- },
2378
- "GetXssMatchSetResponse":{
2379
- "type":"structure",
2380
- "members":{
2381
- "XssMatchSet":{"shape":"XssMatchSet"}
2382
- }
2383
- },
2384
- "HTTPHeader":{
2385
- "type":"structure",
2386
- "members":{
2387
- "Name":{"shape":"HeaderName"},
2388
- "Value":{"shape":"HeaderValue"}
2389
- }
2390
- },
2391
- "HTTPHeaders":{
2392
- "type":"list",
2393
- "member":{"shape":"HTTPHeader"}
2394
- },
2395
- "HTTPMethod":{"type":"string"},
2396
- "HTTPRequest":{
2397
- "type":"structure",
2398
- "members":{
2399
- "ClientIP":{"shape":"IPString"},
2400
- "Country":{"shape":"Country"},
2401
- "URI":{"shape":"URIString"},
2402
- "Method":{"shape":"HTTPMethod"},
2403
- "HTTPVersion":{"shape":"HTTPVersion"},
2404
- "Headers":{"shape":"HTTPHeaders"}
2405
- }
2406
- },
2407
- "HTTPVersion":{"type":"string"},
2408
- "HeaderName":{"type":"string"},
2409
- "HeaderValue":{"type":"string"},
2410
- "IPSet":{
2411
- "type":"structure",
2412
- "required":[
2413
- "IPSetId",
2414
- "IPSetDescriptors"
2415
- ],
2416
- "members":{
2417
- "IPSetId":{"shape":"ResourceId"},
2418
- "Name":{"shape":"ResourceName"},
2419
- "IPSetDescriptors":{"shape":"IPSetDescriptors"}
2420
- }
2421
- },
2422
- "IPSetDescriptor":{
2423
- "type":"structure",
2424
- "required":[
2425
- "Type",
2426
- "Value"
2427
- ],
2428
- "members":{
2429
- "Type":{"shape":"IPSetDescriptorType"},
2430
- "Value":{"shape":"IPSetDescriptorValue"}
2431
- }
2432
- },
2433
- "IPSetDescriptorType":{
2434
- "type":"string",
2435
- "enum":[
2436
- "IPV4",
2437
- "IPV6"
2438
- ]
2439
- },
2440
- "IPSetDescriptorValue":{"type":"string"},
2441
- "IPSetDescriptors":{
2442
- "type":"list",
2443
- "member":{"shape":"IPSetDescriptor"}
2444
- },
2445
- "IPSetSummaries":{
2446
- "type":"list",
2447
- "member":{"shape":"IPSetSummary"}
2448
- },
2449
- "IPSetSummary":{
2450
- "type":"structure",
2451
- "required":[
2452
- "IPSetId",
2453
- "Name"
2454
- ],
2455
- "members":{
2456
- "IPSetId":{"shape":"ResourceId"},
2457
- "Name":{"shape":"ResourceName"}
2458
- }
2459
- },
2460
- "IPSetUpdate":{
2461
- "type":"structure",
2462
- "required":[
2463
- "Action",
2464
- "IPSetDescriptor"
2465
- ],
2466
- "members":{
2467
- "Action":{"shape":"ChangeAction"},
2468
- "IPSetDescriptor":{"shape":"IPSetDescriptor"}
2469
- }
2470
- },
2471
- "IPSetUpdates":{
2472
- "type":"list",
2473
- "member":{"shape":"IPSetUpdate"},
2474
- "min":1
2475
- },
2476
- "IPString":{"type":"string"},
2477
- "ListActivatedRulesInRuleGroupRequest":{
2478
- "type":"structure",
2479
- "members":{
2480
- "RuleGroupId":{"shape":"ResourceId"},
2481
- "NextMarker":{"shape":"NextMarker"},
2482
- "Limit":{"shape":"PaginationLimit"}
2483
- }
2484
- },
2485
- "ListActivatedRulesInRuleGroupResponse":{
2486
- "type":"structure",
2487
- "members":{
2488
- "NextMarker":{"shape":"NextMarker"},
2489
- "ActivatedRules":{"shape":"ActivatedRules"}
2490
- }
2491
- },
2492
- "ListByteMatchSetsRequest":{
2493
- "type":"structure",
2494
- "members":{
2495
- "NextMarker":{"shape":"NextMarker"},
2496
- "Limit":{"shape":"PaginationLimit"}
2497
- }
2498
- },
2499
- "ListByteMatchSetsResponse":{
2500
- "type":"structure",
2501
- "members":{
2502
- "NextMarker":{"shape":"NextMarker"},
2503
- "ByteMatchSets":{"shape":"ByteMatchSetSummaries"}
2504
- }
2505
- },
2506
- "ListGeoMatchSetsRequest":{
2507
- "type":"structure",
2508
- "members":{
2509
- "NextMarker":{"shape":"NextMarker"},
2510
- "Limit":{"shape":"PaginationLimit"}
2511
- }
2512
- },
2513
- "ListGeoMatchSetsResponse":{
2514
- "type":"structure",
2515
- "members":{
2516
- "NextMarker":{"shape":"NextMarker"},
2517
- "GeoMatchSets":{"shape":"GeoMatchSetSummaries"}
2518
- }
2519
- },
2520
- "ListIPSetsRequest":{
2521
- "type":"structure",
2522
- "members":{
2523
- "NextMarker":{"shape":"NextMarker"},
2524
- "Limit":{"shape":"PaginationLimit"}
2525
- }
2526
- },
2527
- "ListIPSetsResponse":{
2528
- "type":"structure",
2529
- "members":{
2530
- "NextMarker":{"shape":"NextMarker"},
2531
- "IPSets":{"shape":"IPSetSummaries"}
2532
- }
2533
- },
2534
- "ListLoggingConfigurationsRequest":{
2535
- "type":"structure",
2536
- "members":{
2537
- "NextMarker":{"shape":"NextMarker"},
2538
- "Limit":{"shape":"PaginationLimit"}
2539
- }
2540
- },
2541
- "ListLoggingConfigurationsResponse":{
2542
- "type":"structure",
2543
- "members":{
2544
- "LoggingConfigurations":{"shape":"LoggingConfigurations"},
2545
- "NextMarker":{"shape":"NextMarker"}
2546
- }
2547
- },
2548
- "ListRateBasedRulesRequest":{
2549
- "type":"structure",
2550
- "members":{
2551
- "NextMarker":{"shape":"NextMarker"},
2552
- "Limit":{"shape":"PaginationLimit"}
2553
- }
2554
- },
2555
- "ListRateBasedRulesResponse":{
2556
- "type":"structure",
2557
- "members":{
2558
- "NextMarker":{"shape":"NextMarker"},
2559
- "Rules":{"shape":"RuleSummaries"}
2560
- }
2561
- },
2562
- "ListRegexMatchSetsRequest":{
2563
- "type":"structure",
2564
- "members":{
2565
- "NextMarker":{"shape":"NextMarker"},
2566
- "Limit":{"shape":"PaginationLimit"}
2567
- }
2568
- },
2569
- "ListRegexMatchSetsResponse":{
2570
- "type":"structure",
2571
- "members":{
2572
- "NextMarker":{"shape":"NextMarker"},
2573
- "RegexMatchSets":{"shape":"RegexMatchSetSummaries"}
2574
- }
2575
- },
2576
- "ListRegexPatternSetsRequest":{
2577
- "type":"structure",
2578
- "members":{
2579
- "NextMarker":{"shape":"NextMarker"},
2580
- "Limit":{"shape":"PaginationLimit"}
2581
- }
2582
- },
2583
- "ListRegexPatternSetsResponse":{
2584
- "type":"structure",
2585
- "members":{
2586
- "NextMarker":{"shape":"NextMarker"},
2587
- "RegexPatternSets":{"shape":"RegexPatternSetSummaries"}
2588
- }
2589
- },
2590
- "ListRuleGroupsRequest":{
2591
- "type":"structure",
2592
- "members":{
2593
- "NextMarker":{"shape":"NextMarker"},
2594
- "Limit":{"shape":"PaginationLimit"}
2595
- }
2596
- },
2597
- "ListRuleGroupsResponse":{
2598
- "type":"structure",
2599
- "members":{
2600
- "NextMarker":{"shape":"NextMarker"},
2601
- "RuleGroups":{"shape":"RuleGroupSummaries"}
2602
- }
2603
- },
2604
- "ListRulesRequest":{
2605
- "type":"structure",
2606
- "members":{
2607
- "NextMarker":{"shape":"NextMarker"},
2608
- "Limit":{"shape":"PaginationLimit"}
2609
- }
2610
- },
2611
- "ListRulesResponse":{
2612
- "type":"structure",
2613
- "members":{
2614
- "NextMarker":{"shape":"NextMarker"},
2615
- "Rules":{"shape":"RuleSummaries"}
2616
- }
2617
- },
2618
- "ListSizeConstraintSetsRequest":{
2619
- "type":"structure",
2620
- "members":{
2621
- "NextMarker":{"shape":"NextMarker"},
2622
- "Limit":{"shape":"PaginationLimit"}
2623
- }
2624
- },
2625
- "ListSizeConstraintSetsResponse":{
2626
- "type":"structure",
2627
- "members":{
2628
- "NextMarker":{"shape":"NextMarker"},
2629
- "SizeConstraintSets":{"shape":"SizeConstraintSetSummaries"}
2630
- }
2631
- },
2632
- "ListSqlInjectionMatchSetsRequest":{
2633
- "type":"structure",
2634
- "members":{
2635
- "NextMarker":{"shape":"NextMarker"},
2636
- "Limit":{"shape":"PaginationLimit"}
2637
- }
2638
- },
2639
- "ListSqlInjectionMatchSetsResponse":{
2640
- "type":"structure",
2641
- "members":{
2642
- "NextMarker":{"shape":"NextMarker"},
2643
- "SqlInjectionMatchSets":{"shape":"SqlInjectionMatchSetSummaries"}
2644
- }
2645
- },
2646
- "ListSubscribedRuleGroupsRequest":{
2647
- "type":"structure",
2648
- "members":{
2649
- "NextMarker":{"shape":"NextMarker"},
2650
- "Limit":{"shape":"PaginationLimit"}
2651
- }
2652
- },
2653
- "ListSubscribedRuleGroupsResponse":{
2654
- "type":"structure",
2655
- "members":{
2656
- "NextMarker":{"shape":"NextMarker"},
2657
- "RuleGroups":{"shape":"SubscribedRuleGroupSummaries"}
2658
- }
2659
- },
2660
- "ListTagsForResourceRequest":{
2661
- "type":"structure",
2662
- "required":["ResourceARN"],
2663
- "members":{
2664
- "NextMarker":{"shape":"NextMarker"},
2665
- "Limit":{"shape":"PaginationLimit"},
2666
- "ResourceARN":{"shape":"ResourceArn"}
2667
- }
2668
- },
2669
- "ListTagsForResourceResponse":{
2670
- "type":"structure",
2671
- "members":{
2672
- "NextMarker":{"shape":"NextMarker"},
2673
- "TagInfoForResource":{"shape":"TagInfoForResource"}
2674
- }
2675
- },
2676
- "ListWebACLsRequest":{
2677
- "type":"structure",
2678
- "members":{
2679
- "NextMarker":{"shape":"NextMarker"},
2680
- "Limit":{"shape":"PaginationLimit"}
2681
- }
2682
- },
2683
- "ListWebACLsResponse":{
2684
- "type":"structure",
2685
- "members":{
2686
- "NextMarker":{"shape":"NextMarker"},
2687
- "WebACLs":{"shape":"WebACLSummaries"}
2688
- }
2689
- },
2690
- "ListXssMatchSetsRequest":{
2691
- "type":"structure",
2692
- "members":{
2693
- "NextMarker":{"shape":"NextMarker"},
2694
- "Limit":{"shape":"PaginationLimit"}
2695
- }
2696
- },
2697
- "ListXssMatchSetsResponse":{
2698
- "type":"structure",
2699
- "members":{
2700
- "NextMarker":{"shape":"NextMarker"},
2701
- "XssMatchSets":{"shape":"XssMatchSetSummaries"}
2702
- }
2703
- },
2704
- "LogDestinationConfigs":{
2705
- "type":"list",
2706
- "member":{"shape":"ResourceArn"},
2707
- "max":1,
2708
- "min":1
2709
- },
2710
- "LoggingConfiguration":{
2711
- "type":"structure",
2712
- "required":[
2713
- "ResourceArn",
2714
- "LogDestinationConfigs"
2715
- ],
2716
- "members":{
2717
- "ResourceArn":{"shape":"ResourceArn"},
2718
- "LogDestinationConfigs":{"shape":"LogDestinationConfigs"},
2719
- "RedactedFields":{"shape":"RedactedFields"}
2720
- }
2721
- },
2722
- "LoggingConfigurations":{
2723
- "type":"list",
2724
- "member":{"shape":"LoggingConfiguration"}
2725
- },
2726
- "ManagedKey":{"type":"string"},
2727
- "ManagedKeys":{
2728
- "type":"list",
2729
- "member":{"shape":"ManagedKey"}
2730
- },
2731
- "MatchFieldData":{"type":"string"},
2732
- "MatchFieldType":{
2733
- "type":"string",
2734
- "enum":[
2735
- "URI",
2736
- "QUERY_STRING",
2737
- "HEADER",
2738
- "METHOD",
2739
- "BODY",
2740
- "SINGLE_QUERY_ARG",
2741
- "ALL_QUERY_ARGS"
2742
- ]
2743
- },
2744
- "MetricName":{"type":"string"},
2745
- "Negated":{"type":"boolean"},
2746
- "NextMarker":{
2747
- "type":"string",
2748
- "min":1
2749
- },
2750
- "PaginationLimit":{
2751
- "type":"integer",
2752
- "max":100,
2753
- "min":0
2754
- },
2755
- "ParameterExceptionField":{
2756
- "type":"string",
2757
- "enum":[
2758
- "CHANGE_ACTION",
2759
- "WAF_ACTION",
2760
- "WAF_OVERRIDE_ACTION",
2761
- "PREDICATE_TYPE",
2762
- "IPSET_TYPE",
2763
- "BYTE_MATCH_FIELD_TYPE",
2764
- "SQL_INJECTION_MATCH_FIELD_TYPE",
2765
- "BYTE_MATCH_TEXT_TRANSFORMATION",
2766
- "BYTE_MATCH_POSITIONAL_CONSTRAINT",
2767
- "SIZE_CONSTRAINT_COMPARISON_OPERATOR",
2768
- "GEO_MATCH_LOCATION_TYPE",
2769
- "GEO_MATCH_LOCATION_VALUE",
2770
- "RATE_KEY",
2771
- "RULE_TYPE",
2772
- "NEXT_MARKER",
2773
- "RESOURCE_ARN",
2774
- "TAGS",
2775
- "TAG_KEYS"
2776
- ]
2777
- },
2778
- "ParameterExceptionParameter":{
2779
- "type":"string",
2780
- "min":1
2781
- },
2782
- "ParameterExceptionReason":{
2783
- "type":"string",
2784
- "enum":[
2785
- "INVALID_OPTION",
2786
- "ILLEGAL_COMBINATION",
2787
- "ILLEGAL_ARGUMENT",
2788
- "INVALID_TAG_KEY"
2789
- ]
2790
- },
2791
- "PolicyString":{
2792
- "type":"string",
2793
- "min":1
2794
- },
2795
- "PopulationSize":{"type":"long"},
2796
- "PositionalConstraint":{
2797
- "type":"string",
2798
- "enum":[
2799
- "EXACTLY",
2800
- "STARTS_WITH",
2801
- "ENDS_WITH",
2802
- "CONTAINS",
2803
- "CONTAINS_WORD"
2804
- ]
2805
- },
2806
- "Predicate":{
2807
- "type":"structure",
2808
- "required":[
2809
- "Negated",
2810
- "Type",
2811
- "DataId"
2812
- ],
2813
- "members":{
2814
- "Negated":{"shape":"Negated"},
2815
- "Type":{"shape":"PredicateType"},
2816
- "DataId":{"shape":"ResourceId"}
2817
- }
2818
- },
2819
- "PredicateType":{
2820
- "type":"string",
2821
- "enum":[
2822
- "IPMatch",
2823
- "ByteMatch",
2824
- "SqlInjectionMatch",
2825
- "GeoMatch",
2826
- "SizeConstraint",
2827
- "XssMatch",
2828
- "RegexMatch"
2829
- ]
2830
- },
2831
- "Predicates":{
2832
- "type":"list",
2833
- "member":{"shape":"Predicate"}
2834
- },
2835
- "PutLoggingConfigurationRequest":{
2836
- "type":"structure",
2837
- "required":["LoggingConfiguration"],
2838
- "members":{
2839
- "LoggingConfiguration":{"shape":"LoggingConfiguration"}
2840
- }
2841
- },
2842
- "PutLoggingConfigurationResponse":{
2843
- "type":"structure",
2844
- "members":{
2845
- "LoggingConfiguration":{"shape":"LoggingConfiguration"}
2846
- }
2847
- },
2848
- "PutPermissionPolicyRequest":{
2849
- "type":"structure",
2850
- "required":[
2851
- "ResourceArn",
2852
- "Policy"
2853
- ],
2854
- "members":{
2855
- "ResourceArn":{"shape":"ResourceArn"},
2856
- "Policy":{"shape":"PolicyString"}
2857
- }
2858
- },
2859
- "PutPermissionPolicyResponse":{
2860
- "type":"structure",
2861
- "members":{
2862
- }
2863
- },
2864
- "RateBasedRule":{
2865
- "type":"structure",
2866
- "required":[
2867
- "RuleId",
2868
- "MatchPredicates",
2869
- "RateKey",
2870
- "RateLimit"
2871
- ],
2872
- "members":{
2873
- "RuleId":{"shape":"ResourceId"},
2874
- "Name":{"shape":"ResourceName"},
2875
- "MetricName":{"shape":"MetricName"},
2876
- "MatchPredicates":{"shape":"Predicates"},
2877
- "RateKey":{"shape":"RateKey"},
2878
- "RateLimit":{"shape":"RateLimit"}
2879
- }
2880
- },
2881
- "RateKey":{
2882
- "type":"string",
2883
- "enum":["IP"]
2884
- },
2885
- "RateLimit":{
2886
- "type":"long",
2887
- "max":2000000000,
2888
- "min":100
2889
- },
2890
- "RedactedFields":{
2891
- "type":"list",
2892
- "member":{"shape":"FieldToMatch"}
2893
- },
2894
- "RegexMatchSet":{
2895
- "type":"structure",
2896
- "members":{
2897
- "RegexMatchSetId":{"shape":"ResourceId"},
2898
- "Name":{"shape":"ResourceName"},
2899
- "RegexMatchTuples":{"shape":"RegexMatchTuples"}
2900
- }
2901
- },
2902
- "RegexMatchSetSummaries":{
2903
- "type":"list",
2904
- "member":{"shape":"RegexMatchSetSummary"}
2905
- },
2906
- "RegexMatchSetSummary":{
2907
- "type":"structure",
2908
- "required":[
2909
- "RegexMatchSetId",
2910
- "Name"
2911
- ],
2912
- "members":{
2913
- "RegexMatchSetId":{"shape":"ResourceId"},
2914
- "Name":{"shape":"ResourceName"}
2915
- }
2916
- },
2917
- "RegexMatchSetUpdate":{
2918
- "type":"structure",
2919
- "required":[
2920
- "Action",
2921
- "RegexMatchTuple"
2922
- ],
2923
- "members":{
2924
- "Action":{"shape":"ChangeAction"},
2925
- "RegexMatchTuple":{"shape":"RegexMatchTuple"}
2926
- }
2927
- },
2928
- "RegexMatchSetUpdates":{
2929
- "type":"list",
2930
- "member":{"shape":"RegexMatchSetUpdate"},
2931
- "min":1
2932
- },
2933
- "RegexMatchTuple":{
2934
- "type":"structure",
2935
- "required":[
2936
- "FieldToMatch",
2937
- "TextTransformation",
2938
- "RegexPatternSetId"
2939
- ],
2940
- "members":{
2941
- "FieldToMatch":{"shape":"FieldToMatch"},
2942
- "TextTransformation":{"shape":"TextTransformation"},
2943
- "RegexPatternSetId":{"shape":"ResourceId"}
2944
- }
2945
- },
2946
- "RegexMatchTuples":{
2947
- "type":"list",
2948
- "member":{"shape":"RegexMatchTuple"}
2949
- },
2950
- "RegexPatternSet":{
2951
- "type":"structure",
2952
- "required":[
2953
- "RegexPatternSetId",
2954
- "RegexPatternStrings"
2955
- ],
2956
- "members":{
2957
- "RegexPatternSetId":{"shape":"ResourceId"},
2958
- "Name":{"shape":"ResourceName"},
2959
- "RegexPatternStrings":{"shape":"RegexPatternStrings"}
2960
- }
2961
- },
2962
- "RegexPatternSetSummaries":{
2963
- "type":"list",
2964
- "member":{"shape":"RegexPatternSetSummary"}
2965
- },
2966
- "RegexPatternSetSummary":{
2967
- "type":"structure",
2968
- "required":[
2969
- "RegexPatternSetId",
2970
- "Name"
2971
- ],
2972
- "members":{
2973
- "RegexPatternSetId":{"shape":"ResourceId"},
2974
- "Name":{"shape":"ResourceName"}
2975
- }
2976
- },
2977
- "RegexPatternSetUpdate":{
2978
- "type":"structure",
2979
- "required":[
2980
- "Action",
2981
- "RegexPatternString"
2982
- ],
2983
- "members":{
2984
- "Action":{"shape":"ChangeAction"},
2985
- "RegexPatternString":{"shape":"RegexPatternString"}
2986
- }
2987
- },
2988
- "RegexPatternSetUpdates":{
2989
- "type":"list",
2990
- "member":{"shape":"RegexPatternSetUpdate"},
2991
- "min":1
2992
- },
2993
- "RegexPatternString":{
2994
- "type":"string",
2995
- "min":1
2996
- },
2997
- "RegexPatternStrings":{
2998
- "type":"list",
2999
- "member":{"shape":"RegexPatternString"},
3000
- "max":10
3001
- },
3002
- "ResourceArn":{
3003
- "type":"string",
3004
- "max":1224,
3005
- "min":1
3006
- },
3007
- "ResourceId":{
3008
- "type":"string",
3009
- "max":128,
3010
- "min":1
3011
- },
3012
- "ResourceName":{
3013
- "type":"string",
3014
- "max":128,
3015
- "min":1
3016
- },
3017
- "Rule":{
3018
- "type":"structure",
3019
- "required":[
3020
- "RuleId",
3021
- "Predicates"
3022
- ],
3023
- "members":{
3024
- "RuleId":{"shape":"ResourceId"},
3025
- "Name":{"shape":"ResourceName"},
3026
- "MetricName":{"shape":"MetricName"},
3027
- "Predicates":{"shape":"Predicates"}
3028
- }
3029
- },
3030
- "RuleGroup":{
3031
- "type":"structure",
3032
- "required":["RuleGroupId"],
3033
- "members":{
3034
- "RuleGroupId":{"shape":"ResourceId"},
3035
- "Name":{"shape":"ResourceName"},
3036
- "MetricName":{"shape":"MetricName"}
3037
- }
3038
- },
3039
- "RuleGroupSummaries":{
3040
- "type":"list",
3041
- "member":{"shape":"RuleGroupSummary"}
3042
- },
3043
- "RuleGroupSummary":{
3044
- "type":"structure",
3045
- "required":[
3046
- "RuleGroupId",
3047
- "Name"
3048
- ],
3049
- "members":{
3050
- "RuleGroupId":{"shape":"ResourceId"},
3051
- "Name":{"shape":"ResourceName"}
3052
- }
3053
- },
3054
- "RuleGroupUpdate":{
3055
- "type":"structure",
3056
- "required":[
3057
- "Action",
3058
- "ActivatedRule"
3059
- ],
3060
- "members":{
3061
- "Action":{"shape":"ChangeAction"},
3062
- "ActivatedRule":{"shape":"ActivatedRule"}
3063
- }
3064
- },
3065
- "RuleGroupUpdates":{
3066
- "type":"list",
3067
- "member":{"shape":"RuleGroupUpdate"},
3068
- "min":1
3069
- },
3070
- "RulePriority":{"type":"integer"},
3071
- "RuleSummaries":{
3072
- "type":"list",
3073
- "member":{"shape":"RuleSummary"}
3074
- },
3075
- "RuleSummary":{
3076
- "type":"structure",
3077
- "required":[
3078
- "RuleId",
3079
- "Name"
3080
- ],
3081
- "members":{
3082
- "RuleId":{"shape":"ResourceId"},
3083
- "Name":{"shape":"ResourceName"}
3084
- }
3085
- },
3086
- "RuleUpdate":{
3087
- "type":"structure",
3088
- "required":[
3089
- "Action",
3090
- "Predicate"
3091
- ],
3092
- "members":{
3093
- "Action":{"shape":"ChangeAction"},
3094
- "Predicate":{"shape":"Predicate"}
3095
- }
3096
- },
3097
- "RuleUpdates":{
3098
- "type":"list",
3099
- "member":{"shape":"RuleUpdate"}
3100
- },
3101
- "SampleWeight":{
3102
- "type":"long",
3103
- "min":0
3104
- },
3105
- "SampledHTTPRequest":{
3106
- "type":"structure",
3107
- "required":[
3108
- "Request",
3109
- "Weight"
3110
- ],
3111
- "members":{
3112
- "Request":{"shape":"HTTPRequest"},
3113
- "Weight":{"shape":"SampleWeight"},
3114
- "Timestamp":{"shape":"Timestamp"},
3115
- "Action":{"shape":"Action"},
3116
- "RuleWithinRuleGroup":{"shape":"ResourceId"}
3117
- }
3118
- },
3119
- "SampledHTTPRequests":{
3120
- "type":"list",
3121
- "member":{"shape":"SampledHTTPRequest"}
3122
- },
3123
- "Size":{
3124
- "type":"long",
3125
- "max":21474836480,
3126
- "min":0
3127
- },
3128
- "SizeConstraint":{
3129
- "type":"structure",
3130
- "required":[
3131
- "FieldToMatch",
3132
- "TextTransformation",
3133
- "ComparisonOperator",
3134
- "Size"
3135
- ],
3136
- "members":{
3137
- "FieldToMatch":{"shape":"FieldToMatch"},
3138
- "TextTransformation":{"shape":"TextTransformation"},
3139
- "ComparisonOperator":{"shape":"ComparisonOperator"},
3140
- "Size":{"shape":"Size"}
3141
- }
3142
- },
3143
- "SizeConstraintSet":{
3144
- "type":"structure",
3145
- "required":[
3146
- "SizeConstraintSetId",
3147
- "SizeConstraints"
3148
- ],
3149
- "members":{
3150
- "SizeConstraintSetId":{"shape":"ResourceId"},
3151
- "Name":{"shape":"ResourceName"},
3152
- "SizeConstraints":{"shape":"SizeConstraints"}
3153
- }
3154
- },
3155
- "SizeConstraintSetSummaries":{
3156
- "type":"list",
3157
- "member":{"shape":"SizeConstraintSetSummary"}
3158
- },
3159
- "SizeConstraintSetSummary":{
3160
- "type":"structure",
3161
- "required":[
3162
- "SizeConstraintSetId",
3163
- "Name"
3164
- ],
3165
- "members":{
3166
- "SizeConstraintSetId":{"shape":"ResourceId"},
3167
- "Name":{"shape":"ResourceName"}
3168
- }
3169
- },
3170
- "SizeConstraintSetUpdate":{
3171
- "type":"structure",
3172
- "required":[
3173
- "Action",
3174
- "SizeConstraint"
3175
- ],
3176
- "members":{
3177
- "Action":{"shape":"ChangeAction"},
3178
- "SizeConstraint":{"shape":"SizeConstraint"}
3179
- }
3180
- },
3181
- "SizeConstraintSetUpdates":{
3182
- "type":"list",
3183
- "member":{"shape":"SizeConstraintSetUpdate"},
3184
- "min":1
3185
- },
3186
- "SizeConstraints":{
3187
- "type":"list",
3188
- "member":{"shape":"SizeConstraint"}
3189
- },
3190
- "SqlInjectionMatchSet":{
3191
- "type":"structure",
3192
- "required":[
3193
- "SqlInjectionMatchSetId",
3194
- "SqlInjectionMatchTuples"
3195
- ],
3196
- "members":{
3197
- "SqlInjectionMatchSetId":{"shape":"ResourceId"},
3198
- "Name":{"shape":"ResourceName"},
3199
- "SqlInjectionMatchTuples":{"shape":"SqlInjectionMatchTuples"}
3200
- }
3201
- },
3202
- "SqlInjectionMatchSetSummaries":{
3203
- "type":"list",
3204
- "member":{"shape":"SqlInjectionMatchSetSummary"}
3205
- },
3206
- "SqlInjectionMatchSetSummary":{
3207
- "type":"structure",
3208
- "required":[
3209
- "SqlInjectionMatchSetId",
3210
- "Name"
3211
- ],
3212
- "members":{
3213
- "SqlInjectionMatchSetId":{"shape":"ResourceId"},
3214
- "Name":{"shape":"ResourceName"}
3215
- }
3216
- },
3217
- "SqlInjectionMatchSetUpdate":{
3218
- "type":"structure",
3219
- "required":[
3220
- "Action",
3221
- "SqlInjectionMatchTuple"
3222
- ],
3223
- "members":{
3224
- "Action":{"shape":"ChangeAction"},
3225
- "SqlInjectionMatchTuple":{"shape":"SqlInjectionMatchTuple"}
3226
- }
3227
- },
3228
- "SqlInjectionMatchSetUpdates":{
3229
- "type":"list",
3230
- "member":{"shape":"SqlInjectionMatchSetUpdate"},
3231
- "min":1
3232
- },
3233
- "SqlInjectionMatchTuple":{
3234
- "type":"structure",
3235
- "required":[
3236
- "FieldToMatch",
3237
- "TextTransformation"
3238
- ],
3239
- "members":{
3240
- "FieldToMatch":{"shape":"FieldToMatch"},
3241
- "TextTransformation":{"shape":"TextTransformation"}
3242
- }
3243
- },
3244
- "SqlInjectionMatchTuples":{
3245
- "type":"list",
3246
- "member":{"shape":"SqlInjectionMatchTuple"}
3247
- },
3248
- "SubscribedRuleGroupSummaries":{
3249
- "type":"list",
3250
- "member":{"shape":"SubscribedRuleGroupSummary"}
3251
- },
3252
- "SubscribedRuleGroupSummary":{
3253
- "type":"structure",
3254
- "required":[
3255
- "RuleGroupId",
3256
- "Name",
3257
- "MetricName"
3258
- ],
3259
- "members":{
3260
- "RuleGroupId":{"shape":"ResourceId"},
3261
- "Name":{"shape":"ResourceName"},
3262
- "MetricName":{"shape":"MetricName"}
3263
- }
3264
- },
3265
- "Tag":{
3266
- "type":"structure",
3267
- "members":{
3268
- "Key":{"shape":"TagKey"},
3269
- "Value":{"shape":"TagValue"}
3270
- }
3271
- },
3272
- "TagInfoForResource":{
3273
- "type":"structure",
3274
- "members":{
3275
- "ResourceARN":{"shape":"ResourceArn"},
3276
- "TagList":{"shape":"TagList"}
3277
- }
3278
- },
3279
- "TagKey":{
3280
- "type":"string",
3281
- "max":128,
3282
- "min":1
3283
- },
3284
- "TagKeyList":{
3285
- "type":"list",
3286
- "member":{"shape":"TagKey"},
3287
- "min":1
3288
- },
3289
- "TagList":{
3290
- "type":"list",
3291
- "member":{"shape":"Tag"},
3292
- "min":1
3293
- },
3294
- "TagResourceRequest":{
3295
- "type":"structure",
3296
- "required":[
3297
- "ResourceARN",
3298
- "Tags"
3299
- ],
3300
- "members":{
3301
- "ResourceARN":{"shape":"ResourceArn"},
3302
- "Tags":{"shape":"TagList"}
3303
- }
3304
- },
3305
- "TagResourceResponse":{
3306
- "type":"structure",
3307
- "members":{
3308
- }
3309
- },
3310
- "TagValue":{
3311
- "type":"string",
3312
- "max":256,
3313
- "min":0
3314
- },
3315
- "TextTransformation":{
3316
- "type":"string",
3317
- "enum":[
3318
- "NONE",
3319
- "COMPRESS_WHITE_SPACE",
3320
- "HTML_ENTITY_DECODE",
3321
- "LOWERCASE",
3322
- "CMD_LINE",
3323
- "URL_DECODE"
3324
- ]
3325
- },
3326
- "TimeWindow":{
3327
- "type":"structure",
3328
- "required":[
3329
- "StartTime",
3330
- "EndTime"
3331
- ],
3332
- "members":{
3333
- "StartTime":{"shape":"Timestamp"},
3334
- "EndTime":{"shape":"Timestamp"}
3335
- }
3336
- },
3337
- "Timestamp":{"type":"timestamp"},
3338
- "URIString":{"type":"string"},
3339
- "UntagResourceRequest":{
3340
- "type":"structure",
3341
- "required":[
3342
- "ResourceARN",
3343
- "TagKeys"
3344
- ],
3345
- "members":{
3346
- "ResourceARN":{"shape":"ResourceArn"},
3347
- "TagKeys":{"shape":"TagKeyList"}
3348
- }
3349
- },
3350
- "UntagResourceResponse":{
3351
- "type":"structure",
3352
- "members":{
3353
- }
3354
- },
3355
- "UpdateByteMatchSetRequest":{
3356
- "type":"structure",
3357
- "required":[
3358
- "ByteMatchSetId",
3359
- "ChangeToken",
3360
- "Updates"
3361
- ],
3362
- "members":{
3363
- "ByteMatchSetId":{"shape":"ResourceId"},
3364
- "ChangeToken":{"shape":"ChangeToken"},
3365
- "Updates":{"shape":"ByteMatchSetUpdates"}
3366
- }
3367
- },
3368
- "UpdateByteMatchSetResponse":{
3369
- "type":"structure",
3370
- "members":{
3371
- "ChangeToken":{"shape":"ChangeToken"}
3372
- }
3373
- },
3374
- "UpdateGeoMatchSetRequest":{
3375
- "type":"structure",
3376
- "required":[
3377
- "GeoMatchSetId",
3378
- "ChangeToken",
3379
- "Updates"
3380
- ],
3381
- "members":{
3382
- "GeoMatchSetId":{"shape":"ResourceId"},
3383
- "ChangeToken":{"shape":"ChangeToken"},
3384
- "Updates":{"shape":"GeoMatchSetUpdates"}
3385
- }
3386
- },
3387
- "UpdateGeoMatchSetResponse":{
3388
- "type":"structure",
3389
- "members":{
3390
- "ChangeToken":{"shape":"ChangeToken"}
3391
- }
3392
- },
3393
- "UpdateIPSetRequest":{
3394
- "type":"structure",
3395
- "required":[
3396
- "IPSetId",
3397
- "ChangeToken",
3398
- "Updates"
3399
- ],
3400
- "members":{
3401
- "IPSetId":{"shape":"ResourceId"},
3402
- "ChangeToken":{"shape":"ChangeToken"},
3403
- "Updates":{"shape":"IPSetUpdates"}
3404
- }
3405
- },
3406
- "UpdateIPSetResponse":{
3407
- "type":"structure",
3408
- "members":{
3409
- "ChangeToken":{"shape":"ChangeToken"}
3410
- }
3411
- },
3412
- "UpdateRateBasedRuleRequest":{
3413
- "type":"structure",
3414
- "required":[
3415
- "RuleId",
3416
- "ChangeToken",
3417
- "Updates",
3418
- "RateLimit"
3419
- ],
3420
- "members":{
3421
- "RuleId":{"shape":"ResourceId"},
3422
- "ChangeToken":{"shape":"ChangeToken"},
3423
- "Updates":{"shape":"RuleUpdates"},
3424
- "RateLimit":{"shape":"RateLimit"}
3425
- }
3426
- },
3427
- "UpdateRateBasedRuleResponse":{
3428
- "type":"structure",
3429
- "members":{
3430
- "ChangeToken":{"shape":"ChangeToken"}
3431
- }
3432
- },
3433
- "UpdateRegexMatchSetRequest":{
3434
- "type":"structure",
3435
- "required":[
3436
- "RegexMatchSetId",
3437
- "Updates",
3438
- "ChangeToken"
3439
- ],
3440
- "members":{
3441
- "RegexMatchSetId":{"shape":"ResourceId"},
3442
- "Updates":{"shape":"RegexMatchSetUpdates"},
3443
- "ChangeToken":{"shape":"ChangeToken"}
3444
- }
3445
- },
3446
- "UpdateRegexMatchSetResponse":{
3447
- "type":"structure",
3448
- "members":{
3449
- "ChangeToken":{"shape":"ChangeToken"}
3450
- }
3451
- },
3452
- "UpdateRegexPatternSetRequest":{
3453
- "type":"structure",
3454
- "required":[
3455
- "RegexPatternSetId",
3456
- "Updates",
3457
- "ChangeToken"
3458
- ],
3459
- "members":{
3460
- "RegexPatternSetId":{"shape":"ResourceId"},
3461
- "Updates":{"shape":"RegexPatternSetUpdates"},
3462
- "ChangeToken":{"shape":"ChangeToken"}
3463
- }
3464
- },
3465
- "UpdateRegexPatternSetResponse":{
3466
- "type":"structure",
3467
- "members":{
3468
- "ChangeToken":{"shape":"ChangeToken"}
3469
- }
3470
- },
3471
- "UpdateRuleGroupRequest":{
3472
- "type":"structure",
3473
- "required":[
3474
- "RuleGroupId",
3475
- "Updates",
3476
- "ChangeToken"
3477
- ],
3478
- "members":{
3479
- "RuleGroupId":{"shape":"ResourceId"},
3480
- "Updates":{"shape":"RuleGroupUpdates"},
3481
- "ChangeToken":{"shape":"ChangeToken"}
3482
- }
3483
- },
3484
- "UpdateRuleGroupResponse":{
3485
- "type":"structure",
3486
- "members":{
3487
- "ChangeToken":{"shape":"ChangeToken"}
3488
- }
3489
- },
3490
- "UpdateRuleRequest":{
3491
- "type":"structure",
3492
- "required":[
3493
- "RuleId",
3494
- "ChangeToken",
3495
- "Updates"
3496
- ],
3497
- "members":{
3498
- "RuleId":{"shape":"ResourceId"},
3499
- "ChangeToken":{"shape":"ChangeToken"},
3500
- "Updates":{"shape":"RuleUpdates"}
3501
- }
3502
- },
3503
- "UpdateRuleResponse":{
3504
- "type":"structure",
3505
- "members":{
3506
- "ChangeToken":{"shape":"ChangeToken"}
3507
- }
3508
- },
3509
- "UpdateSizeConstraintSetRequest":{
3510
- "type":"structure",
3511
- "required":[
3512
- "SizeConstraintSetId",
3513
- "ChangeToken",
3514
- "Updates"
3515
- ],
3516
- "members":{
3517
- "SizeConstraintSetId":{"shape":"ResourceId"},
3518
- "ChangeToken":{"shape":"ChangeToken"},
3519
- "Updates":{"shape":"SizeConstraintSetUpdates"}
3520
- }
3521
- },
3522
- "UpdateSizeConstraintSetResponse":{
3523
- "type":"structure",
3524
- "members":{
3525
- "ChangeToken":{"shape":"ChangeToken"}
3526
- }
3527
- },
3528
- "UpdateSqlInjectionMatchSetRequest":{
3529
- "type":"structure",
3530
- "required":[
3531
- "SqlInjectionMatchSetId",
3532
- "ChangeToken",
3533
- "Updates"
3534
- ],
3535
- "members":{
3536
- "SqlInjectionMatchSetId":{"shape":"ResourceId"},
3537
- "ChangeToken":{"shape":"ChangeToken"},
3538
- "Updates":{"shape":"SqlInjectionMatchSetUpdates"}
3539
- }
3540
- },
3541
- "UpdateSqlInjectionMatchSetResponse":{
3542
- "type":"structure",
3543
- "members":{
3544
- "ChangeToken":{"shape":"ChangeToken"}
3545
- }
3546
- },
3547
- "UpdateWebACLRequest":{
3548
- "type":"structure",
3549
- "required":[
3550
- "WebACLId",
3551
- "ChangeToken"
3552
- ],
3553
- "members":{
3554
- "WebACLId":{"shape":"ResourceId"},
3555
- "ChangeToken":{"shape":"ChangeToken"},
3556
- "Updates":{"shape":"WebACLUpdates"},
3557
- "DefaultAction":{"shape":"WafAction"}
3558
- }
3559
- },
3560
- "UpdateWebACLResponse":{
3561
- "type":"structure",
3562
- "members":{
3563
- "ChangeToken":{"shape":"ChangeToken"}
3564
- }
3565
- },
3566
- "UpdateXssMatchSetRequest":{
3567
- "type":"structure",
3568
- "required":[
3569
- "XssMatchSetId",
3570
- "ChangeToken",
3571
- "Updates"
3572
- ],
3573
- "members":{
3574
- "XssMatchSetId":{"shape":"ResourceId"},
3575
- "ChangeToken":{"shape":"ChangeToken"},
3576
- "Updates":{"shape":"XssMatchSetUpdates"}
3577
- }
3578
- },
3579
- "UpdateXssMatchSetResponse":{
3580
- "type":"structure",
3581
- "members":{
3582
- "ChangeToken":{"shape":"ChangeToken"}
3583
- }
3584
- },
3585
- "WAFBadRequestException":{
3586
- "type":"structure",
3587
- "members":{
3588
- "message":{"shape":"errorMessage"}
3589
- },
3590
- "exception":true
3591
- },
3592
- "WAFDisallowedNameException":{
3593
- "type":"structure",
3594
- "members":{
3595
- "message":{"shape":"errorMessage"}
3596
- },
3597
- "exception":true
3598
- },
3599
- "WAFInternalErrorException":{
3600
- "type":"structure",
3601
- "members":{
3602
- "message":{"shape":"errorMessage"}
3603
- },
3604
- "exception":true,
3605
- "fault":true
3606
- },
3607
- "WAFInvalidAccountException":{
3608
- "type":"structure",
3609
- "members":{
3610
- },
3611
- "exception":true
3612
- },
3613
- "WAFInvalidOperationException":{
3614
- "type":"structure",
3615
- "members":{
3616
- "message":{"shape":"errorMessage"}
3617
- },
3618
- "exception":true
3619
- },
3620
- "WAFInvalidParameterException":{
3621
- "type":"structure",
3622
- "members":{
3623
- "field":{"shape":"ParameterExceptionField"},
3624
- "parameter":{"shape":"ParameterExceptionParameter"},
3625
- "reason":{"shape":"ParameterExceptionReason"}
3626
- },
3627
- "exception":true
3628
- },
3629
- "WAFInvalidPermissionPolicyException":{
3630
- "type":"structure",
3631
- "members":{
3632
- "message":{"shape":"errorMessage"}
3633
- },
3634
- "exception":true
3635
- },
3636
- "WAFInvalidRegexPatternException":{
3637
- "type":"structure",
3638
- "members":{
3639
- "message":{"shape":"errorMessage"}
3640
- },
3641
- "exception":true
3642
- },
3643
- "WAFLimitsExceededException":{
3644
- "type":"structure",
3645
- "members":{
3646
- "message":{"shape":"errorMessage"}
3647
- },
3648
- "exception":true
3649
- },
3650
- "WAFNonEmptyEntityException":{
3651
- "type":"structure",
3652
- "members":{
3653
- "message":{"shape":"errorMessage"}
3654
- },
3655
- "exception":true
3656
- },
3657
- "WAFNonexistentContainerException":{
3658
- "type":"structure",
3659
- "members":{
3660
- "message":{"shape":"errorMessage"}
3661
- },
3662
- "exception":true
3663
- },
3664
- "WAFNonexistentItemException":{
3665
- "type":"structure",
3666
- "members":{
3667
- "message":{"shape":"errorMessage"}
3668
- },
3669
- "exception":true
3670
- },
3671
- "WAFReferencedItemException":{
3672
- "type":"structure",
3673
- "members":{
3674
- "message":{"shape":"errorMessage"}
3675
- },
3676
- "exception":true
3677
- },
3678
- "WAFServiceLinkedRoleErrorException":{
3679
- "type":"structure",
3680
- "members":{
3681
- "message":{"shape":"errorMessage"}
3682
- },
3683
- "exception":true
3684
- },
3685
- "WAFStaleDataException":{
3686
- "type":"structure",
3687
- "members":{
3688
- "message":{"shape":"errorMessage"}
3689
- },
3690
- "exception":true
3691
- },
3692
- "WAFSubscriptionNotFoundException":{
3693
- "type":"structure",
3694
- "members":{
3695
- "message":{"shape":"errorMessage"}
3696
- },
3697
- "exception":true
3698
- },
3699
- "WAFTagOperationException":{
3700
- "type":"structure",
3701
- "members":{
3702
- "message":{"shape":"errorMessage"}
3703
- },
3704
- "exception":true
3705
- },
3706
- "WAFTagOperationInternalErrorException":{
3707
- "type":"structure",
3708
- "members":{
3709
- "message":{"shape":"errorMessage"}
3710
- },
3711
- "exception":true,
3712
- "fault":true
3713
- },
3714
- "WafAction":{
3715
- "type":"structure",
3716
- "required":["Type"],
3717
- "members":{
3718
- "Type":{"shape":"WafActionType"}
3719
- }
3720
- },
3721
- "WafActionType":{
3722
- "type":"string",
3723
- "enum":[
3724
- "BLOCK",
3725
- "ALLOW",
3726
- "COUNT"
3727
- ]
3728
- },
3729
- "WafOverrideAction":{
3730
- "type":"structure",
3731
- "required":["Type"],
3732
- "members":{
3733
- "Type":{"shape":"WafOverrideActionType"}
3734
- }
3735
- },
3736
- "WafOverrideActionType":{
3737
- "type":"string",
3738
- "enum":[
3739
- "NONE",
3740
- "COUNT"
3741
- ]
3742
- },
3743
- "WafRuleType":{
3744
- "type":"string",
3745
- "enum":[
3746
- "REGULAR",
3747
- "RATE_BASED",
3748
- "GROUP"
3749
- ]
3750
- },
3751
- "WebACL":{
3752
- "type":"structure",
3753
- "required":[
3754
- "WebACLId",
3755
- "DefaultAction",
3756
- "Rules"
3757
- ],
3758
- "members":{
3759
- "WebACLId":{"shape":"ResourceId"},
3760
- "Name":{"shape":"ResourceName"},
3761
- "MetricName":{"shape":"MetricName"},
3762
- "DefaultAction":{"shape":"WafAction"},
3763
- "Rules":{"shape":"ActivatedRules"},
3764
- "WebACLArn":{"shape":"ResourceArn"}
3765
- }
3766
- },
3767
- "WebACLSummaries":{
3768
- "type":"list",
3769
- "member":{"shape":"WebACLSummary"}
3770
- },
3771
- "WebACLSummary":{
3772
- "type":"structure",
3773
- "required":[
3774
- "WebACLId",
3775
- "Name"
3776
- ],
3777
- "members":{
3778
- "WebACLId":{"shape":"ResourceId"},
3779
- "Name":{"shape":"ResourceName"}
3780
- }
3781
- },
3782
- "WebACLUpdate":{
3783
- "type":"structure",
3784
- "required":[
3785
- "Action",
3786
- "ActivatedRule"
3787
- ],
3788
- "members":{
3789
- "Action":{"shape":"ChangeAction"},
3790
- "ActivatedRule":{"shape":"ActivatedRule"}
3791
- }
3792
- },
3793
- "WebACLUpdates":{
3794
- "type":"list",
3795
- "member":{"shape":"WebACLUpdate"}
3796
- },
3797
- "XssMatchSet":{
3798
- "type":"structure",
3799
- "required":[
3800
- "XssMatchSetId",
3801
- "XssMatchTuples"
3802
- ],
3803
- "members":{
3804
- "XssMatchSetId":{"shape":"ResourceId"},
3805
- "Name":{"shape":"ResourceName"},
3806
- "XssMatchTuples":{"shape":"XssMatchTuples"}
3807
- }
3808
- },
3809
- "XssMatchSetSummaries":{
3810
- "type":"list",
3811
- "member":{"shape":"XssMatchSetSummary"}
3812
- },
3813
- "XssMatchSetSummary":{
3814
- "type":"structure",
3815
- "required":[
3816
- "XssMatchSetId",
3817
- "Name"
3818
- ],
3819
- "members":{
3820
- "XssMatchSetId":{"shape":"ResourceId"},
3821
- "Name":{"shape":"ResourceName"}
3822
- }
3823
- },
3824
- "XssMatchSetUpdate":{
3825
- "type":"structure",
3826
- "required":[
3827
- "Action",
3828
- "XssMatchTuple"
3829
- ],
3830
- "members":{
3831
- "Action":{"shape":"ChangeAction"},
3832
- "XssMatchTuple":{"shape":"XssMatchTuple"}
3833
- }
3834
- },
3835
- "XssMatchSetUpdates":{
3836
- "type":"list",
3837
- "member":{"shape":"XssMatchSetUpdate"},
3838
- "min":1
3839
- },
3840
- "XssMatchTuple":{
3841
- "type":"structure",
3842
- "required":[
3843
- "FieldToMatch",
3844
- "TextTransformation"
3845
- ],
3846
- "members":{
3847
- "FieldToMatch":{"shape":"FieldToMatch"},
3848
- "TextTransformation":{"shape":"TextTransformation"}
3849
- }
3850
- },
3851
- "XssMatchTuples":{
3852
- "type":"list",
3853
- "member":{"shape":"XssMatchTuple"}
3854
- },
3855
- "errorMessage":{"type":"string"}
3856
- }
3857
- }