aws-sdk-core 2.11.404 → 3.75.0

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