aws-sdk-core 2.11.212 → 3.170.0

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