aws-sdk-core 2.3.23 → 3.89.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (496) hide show
  1. checksums.yaml +5 -5
  2. data/VERSION +1 -0
  3. data/ca-bundle.crt +3615 -3541
  4. data/lib/aws-sdk-core.rb +106 -404
  5. data/lib/aws-sdk-core/arn.rb +77 -0
  6. data/lib/aws-sdk-core/arn_parser.rb +38 -0
  7. data/lib/aws-sdk-core/assume_role_web_identity_credentials.rb +101 -0
  8. data/lib/aws-sdk-core/async_client_stubs.rb +80 -0
  9. data/lib/aws-sdk-core/binary.rb +6 -0
  10. data/lib/aws-sdk-core/binary/decode_handler.rb +56 -0
  11. data/lib/aws-sdk-core/binary/encode_handler.rb +32 -0
  12. data/lib/aws-sdk-core/binary/event_builder.rb +122 -0
  13. data/lib/aws-sdk-core/binary/event_parser.rb +134 -0
  14. data/lib/aws-sdk-core/binary/event_stream_decoder.rb +62 -0
  15. data/lib/aws-sdk-core/binary/event_stream_encoder.rb +53 -0
  16. data/lib/aws-sdk-core/client_side_monitoring/publisher.rb +49 -0
  17. data/lib/aws-sdk-core/client_side_monitoring/request_metrics.rb +197 -0
  18. data/lib/aws-sdk-core/client_stubs.rb +73 -10
  19. data/lib/aws-sdk-core/credential_provider.rb +0 -29
  20. data/lib/aws-sdk-core/credential_provider_chain.rb +56 -6
  21. data/lib/aws-sdk-core/deprecations.rb +16 -10
  22. data/lib/aws-sdk-core/ecs_credentials.rb +14 -10
  23. data/lib/aws-sdk-core/endpoint_cache.rb +191 -0
  24. data/lib/aws-sdk-core/errors.rb +221 -11
  25. data/lib/aws-sdk-core/event_emitter.rb +62 -0
  26. data/lib/aws-sdk-core/ini_parser.rb +41 -0
  27. data/lib/aws-sdk-core/instance_profile_credentials.rb +133 -42
  28. data/lib/aws-sdk-core/json.rb +9 -10
  29. data/lib/aws-sdk-core/json/builder.rb +4 -2
  30. data/lib/aws-sdk-core/json/error_handler.rb +19 -2
  31. data/lib/aws-sdk-core/json/handler.rb +22 -3
  32. data/lib/aws-sdk-core/json/parser.rb +1 -1
  33. data/lib/aws-sdk-core/log/formatter.rb +7 -1
  34. data/lib/aws-sdk-core/log/param_filter.rb +4 -3
  35. data/lib/aws-sdk-core/pageable_response.rb +1 -0
  36. data/lib/aws-sdk-core/pager.rb +30 -25
  37. data/lib/aws-sdk-core/param_converter.rb +3 -3
  38. data/lib/aws-sdk-core/param_validator.rb +60 -26
  39. data/lib/aws-sdk-core/plugins/api_key.rb +52 -0
  40. data/lib/aws-sdk-core/plugins/apig_authorizer_token.rb +30 -0
  41. data/lib/aws-sdk-core/plugins/apig_credentials_configuration.rb +34 -0
  42. data/lib/aws-sdk-core/plugins/apig_user_agent.rb +37 -0
  43. data/lib/aws-sdk-core/plugins/client_metrics_plugin.rb +280 -0
  44. data/lib/aws-sdk-core/plugins/client_metrics_send_plugin.rb +84 -0
  45. data/lib/aws-sdk-core/plugins/credentials_configuration.rb +62 -0
  46. data/lib/aws-sdk-core/plugins/endpoint_discovery.rb +160 -0
  47. data/lib/aws-sdk-core/plugins/endpoint_pattern.rb +63 -0
  48. data/lib/aws-sdk-core/plugins/event_stream_configuration.rb +30 -0
  49. data/lib/aws-sdk-core/plugins/global_configuration.rb +19 -10
  50. data/lib/aws-sdk-core/plugins/helpful_socket_errors.rb +41 -0
  51. data/lib/aws-sdk-core/plugins/idempotency_token.rb +36 -0
  52. data/lib/aws-sdk-core/plugins/invocation_id.rb +33 -0
  53. data/lib/aws-sdk-core/plugins/jsonvalue_converter.rb +29 -0
  54. data/lib/aws-sdk-core/plugins/logging.rb +18 -18
  55. data/lib/aws-sdk-core/plugins/param_converter.rb +9 -5
  56. data/lib/aws-sdk-core/plugins/param_validator.rb +8 -5
  57. data/lib/aws-sdk-core/plugins/protocols/api_gateway.rb +10 -0
  58. data/lib/aws-sdk-core/plugins/protocols/ec2.rb +2 -1
  59. data/lib/aws-sdk-core/plugins/protocols/json_rpc.rb +13 -12
  60. data/lib/aws-sdk-core/plugins/protocols/query.rb +2 -2
  61. data/lib/aws-sdk-core/plugins/regional_endpoint.rb +48 -19
  62. data/lib/aws-sdk-core/plugins/response_paging.rb +5 -18
  63. data/lib/aws-sdk-core/plugins/retry_errors.rb +102 -24
  64. data/lib/aws-sdk-core/plugins/signature_v2.rb +51 -0
  65. data/lib/aws-sdk-core/plugins/signature_v4.rb +141 -0
  66. data/lib/aws-sdk-core/plugins/stub_responses.rb +35 -18
  67. data/lib/aws-sdk-core/plugins/transfer_encoding.rb +53 -0
  68. data/lib/aws-sdk-core/plugins/user_agent.rb +23 -10
  69. data/lib/aws-sdk-core/process_credentials.rb +80 -0
  70. data/lib/aws-sdk-core/query.rb +5 -0
  71. data/lib/aws-sdk-core/query/ec2_param_builder.rb +9 -3
  72. data/lib/aws-sdk-core/query/handler.rb +20 -16
  73. data/lib/aws-sdk-core/query/param_builder.rb +10 -4
  74. data/lib/aws-sdk-core/refreshing_credentials.rb +1 -1
  75. data/lib/aws-sdk-core/resources/collection.rb +121 -0
  76. data/lib/aws-sdk-core/rest.rb +10 -0
  77. data/lib/aws-sdk-core/rest/handler.rb +1 -0
  78. data/lib/aws-sdk-core/rest/request/builder.rb +2 -1
  79. data/lib/aws-sdk-core/rest/request/endpoint.rb +11 -66
  80. data/lib/aws-sdk-core/rest/request/headers.rb +20 -1
  81. data/lib/aws-sdk-core/rest/request/querystring_builder.rb +103 -0
  82. data/lib/aws-sdk-core/rest/response/body.rb +14 -1
  83. data/lib/aws-sdk-core/rest/response/headers.rb +9 -0
  84. data/lib/aws-sdk-core/rest/response/parser.rb +18 -14
  85. data/lib/aws-sdk-core/shared_config.rb +451 -0
  86. data/lib/aws-sdk-core/shared_credentials.rb +16 -53
  87. data/lib/aws-sdk-core/structure.rb +22 -13
  88. data/lib/aws-sdk-core/stubbing/data_applicator.rb +1 -1
  89. data/lib/aws-sdk-core/stubbing/empty_stub.rb +10 -3
  90. data/lib/aws-sdk-core/stubbing/protocols/api_gateway.rb +8 -0
  91. data/lib/aws-sdk-core/stubbing/protocols/ec2.rb +1 -1
  92. data/lib/aws-sdk-core/stubbing/protocols/rest.rb +99 -1
  93. data/lib/aws-sdk-core/stubbing/protocols/rest_json.rb +5 -1
  94. data/lib/aws-sdk-core/stubbing/protocols/rest_xml.rb +9 -5
  95. data/lib/aws-sdk-core/stubbing/stub_data.rb +16 -3
  96. data/lib/aws-sdk-core/util.rb +66 -0
  97. data/lib/aws-sdk-core/waiters.rb +3 -0
  98. data/lib/aws-sdk-core/waiters/poller.rb +5 -7
  99. data/lib/aws-sdk-core/waiters/waiter.rb +3 -2
  100. data/lib/aws-sdk-core/xml.rb +9 -0
  101. data/lib/aws-sdk-core/xml/builder.rb +11 -5
  102. data/lib/aws-sdk-core/xml/error_handler.rb +27 -5
  103. data/lib/aws-sdk-core/xml/parser.rb +1 -11
  104. data/lib/aws-sdk-core/xml/parser/engines/ox.rb +5 -1
  105. data/lib/aws-sdk-core/xml/parser/frame.rb +6 -6
  106. data/lib/aws-sdk-sts.rb +45 -0
  107. data/lib/aws-sdk-sts/client.rb +2156 -0
  108. data/lib/aws-sdk-sts/client_api.rb +336 -0
  109. data/lib/aws-sdk-sts/customizations.rb +2 -0
  110. data/lib/aws-sdk-sts/errors.rb +142 -0
  111. data/lib/aws-sdk-sts/plugins/sts_regional_endpoints.rb +32 -0
  112. data/lib/aws-sdk-sts/presigner.rb +67 -0
  113. data/lib/aws-sdk-sts/resource.rb +23 -0
  114. data/lib/aws-sdk-sts/types.rb +1504 -0
  115. data/lib/seahorse.rb +60 -60
  116. data/lib/seahorse/client/async_base.rb +50 -0
  117. data/lib/seahorse/client/async_response.rb +62 -0
  118. data/lib/seahorse/client/base.rb +5 -9
  119. data/lib/seahorse/client/configuration.rb +10 -2
  120. data/lib/seahorse/client/events.rb +1 -1
  121. data/lib/seahorse/client/h2/connection.rb +246 -0
  122. data/lib/seahorse/client/h2/handler.rb +151 -0
  123. data/lib/seahorse/client/handler_list_entry.rb +2 -2
  124. data/lib/seahorse/client/http/async_response.rb +42 -0
  125. data/lib/seahorse/client/http/response.rb +13 -8
  126. data/lib/seahorse/client/logging/formatter.rb +7 -1
  127. data/lib/seahorse/client/logging/handler.rb +2 -0
  128. data/lib/seahorse/client/net_http/connection_pool.rb +46 -28
  129. data/lib/seahorse/client/net_http/handler.rb +17 -3
  130. data/lib/seahorse/client/net_http/patches.rb +9 -1
  131. data/lib/seahorse/client/networking_error.rb +28 -0
  132. data/lib/seahorse/client/plugin.rb +67 -6
  133. data/lib/seahorse/client/plugin_list.rb +3 -1
  134. data/lib/seahorse/client/plugins/content_length.rb +7 -2
  135. data/lib/seahorse/client/plugins/endpoint.rb +14 -10
  136. data/lib/seahorse/client/plugins/h2.rb +64 -0
  137. data/lib/seahorse/client/plugins/logging.rb +17 -19
  138. data/lib/seahorse/client/plugins/net_http.rb +23 -15
  139. data/lib/seahorse/client/plugins/raise_response_errors.rb +4 -4
  140. data/lib/seahorse/client/plugins/response_target.rb +10 -1
  141. data/lib/seahorse/client/request_context.rb +5 -0
  142. data/lib/seahorse/client/response.rb +9 -20
  143. data/lib/seahorse/model/api.rb +37 -0
  144. data/lib/seahorse/model/authorizer.rb +21 -0
  145. data/lib/seahorse/model/operation.rb +20 -0
  146. data/lib/seahorse/model/shapes.rb +44 -2
  147. data/lib/seahorse/util.rb +1 -21
  148. metadata +127 -360
  149. data/apis/acm/2015-12-08/api-2.json +0 -495
  150. data/apis/acm/2015-12-08/examples-1.json +0 -5
  151. data/apis/acm/2015-12-08/paginators-1.json +0 -10
  152. data/apis/apigateway/2015-07-09/api-2.json +0 -3347
  153. data/apis/apigateway/2015-07-09/examples-1.json +0 -5
  154. data/apis/apigateway/2015-07-09/paginators-1.json +0 -52
  155. data/apis/application-autoscaling/2016-02-06/api-2.json +0 -502
  156. data/apis/application-autoscaling/2016-02-06/examples-1.json +0 -5
  157. data/apis/application-autoscaling/2016-02-06/paginators-1.json +0 -22
  158. data/apis/autoscaling/2011-01-01/api-2.json +0 -2038
  159. data/apis/autoscaling/2011-01-01/examples-1.json +0 -5
  160. data/apis/autoscaling/2011-01-01/paginators-1.json +0 -52
  161. data/apis/autoscaling/2011-01-01/resources-1.json +0 -1613
  162. data/apis/autoscaling/2011-01-01/waiters-2.json +0 -62
  163. data/apis/cloudformation/2010-05-15/api-2.json +0 -1299
  164. data/apis/cloudformation/2010-05-15/examples-1.json +0 -5
  165. data/apis/cloudformation/2010-05-15/paginators-1.json +0 -27
  166. data/apis/cloudformation/2010-05-15/resources-1.json +0 -202
  167. data/apis/cloudformation/2010-05-15/waiters-2.json +0 -235
  168. data/apis/cloudfront/2016-01-28/api-2.json +0 -2218
  169. data/apis/cloudfront/2016-01-28/examples-1.json +0 -5
  170. data/apis/cloudfront/2016-01-28/paginators-1.json +0 -32
  171. data/apis/cloudfront/2016-01-28/waiters-2.json +0 -47
  172. data/apis/cloudhsm/2014-05-30/api-2.json +0 -877
  173. data/apis/cloudhsm/2014-05-30/examples-1.json +0 -5
  174. data/apis/cloudsearch/2013-01-01/api-2.json +0 -2001
  175. data/apis/cloudsearch/2013-01-01/paginators-1.json +0 -20
  176. data/apis/cloudsearchdomain/2013-01-01/api-2.json +0 -373
  177. data/apis/cloudsearchdomain/2013-01-01/examples-1.json +0 -5
  178. data/apis/cloudtrail/2013-11-01/api-2.json +0 -801
  179. data/apis/cloudtrail/2013-11-01/examples-1.json +0 -5
  180. data/apis/cloudtrail/2013-11-01/paginators-1.json +0 -7
  181. data/apis/codecommit/2015-04-13/api-2.json +0 -916
  182. data/apis/codecommit/2015-04-13/examples-1.json +0 -5
  183. data/apis/codecommit/2015-04-13/paginators-1.json +0 -14
  184. data/apis/codedeploy/2014-10-06/api-2.json +0 -1954
  185. data/apis/codedeploy/2014-10-06/examples-1.json +0 -5
  186. data/apis/codedeploy/2014-10-06/paginators-1.json +0 -34
  187. data/apis/codepipeline/2015-07-09/api-2.json +0 -1633
  188. data/apis/codepipeline/2015-07-09/examples-1.json +0 -902
  189. data/apis/cognito-identity/2014-06-30/api-2.json +0 -859
  190. data/apis/cognito-identity/2014-06-30/examples-1.json +0 -5
  191. data/apis/cognito-idp/2016-04-18/api-2.json +0 -1657
  192. data/apis/cognito-idp/2016-04-18/examples-1.json +0 -5
  193. data/apis/cognito-sync/2014-06-30/api-2.json +0 -1874
  194. data/apis/config/2014-11-12/api-2.json +0 -1303
  195. data/apis/config/2014-11-12/examples-1.json +0 -5
  196. data/apis/config/2014-11-12/paginators-1.json +0 -10
  197. data/apis/datapipeline/2012-10-29/api-2.json +0 -1167
  198. data/apis/datapipeline/2012-10-29/paginators-1.json +0 -26
  199. data/apis/devicefarm/2015-06-23/api-2.json +0 -1819
  200. data/apis/devicefarm/2015-06-23/examples-1.json +0 -5
  201. data/apis/devicefarm/2015-06-23/paginators-1.json +0 -74
  202. data/apis/directconnect/2012-10-25/api-2.json +0 -793
  203. data/apis/directconnect/2012-10-25/examples-1.json +0 -5
  204. data/apis/directconnect/2012-10-25/paginators-1.json +0 -22
  205. data/apis/discovery/2015-11-01/api-2.json +0 -556
  206. data/apis/discovery/2015-11-01/examples-1.json +0 -5
  207. data/apis/dms/2016-01-01/api-2.json +0 -1469
  208. data/apis/dms/2016-01-01/examples-1.json +0 -5
  209. data/apis/ds/2015-04-16/api-2.json +0 -1674
  210. data/apis/ds/2015-04-16/examples-1.json +0 -5
  211. data/apis/dynamodb/2012-08-10/api-2.json +0 -1200
  212. data/apis/dynamodb/2012-08-10/examples-1.json +0 -5
  213. data/apis/dynamodb/2012-08-10/paginators-1.json +0 -26
  214. data/apis/dynamodb/2012-08-10/resources-1.json +0 -136
  215. data/apis/dynamodb/2012-08-10/waiters-2.json +0 -35
  216. data/apis/ec2/2015-10-01/api-2.json +0 -13759
  217. data/apis/ec2/2015-10-01/examples-1.json +0 -5
  218. data/apis/ec2/2015-10-01/paginators-1.json +0 -138
  219. data/apis/ec2/2015-10-01/resources-1.json +0 -2582
  220. data/apis/ec2/2015-10-01/waiters-2.json +0 -593
  221. data/apis/ec2/2016-04-01/api-2.json +0 -13842
  222. data/apis/ec2/2016-04-01/examples-1.json +0 -5
  223. data/apis/ec2/2016-04-01/paginators-1.json +0 -138
  224. data/apis/ec2/2016-04-01/resources-1.json +0 -2582
  225. data/apis/ec2/2016-04-01/waiters-2.json +0 -593
  226. data/apis/ecr/2015-09-21/api-2.json +0 -849
  227. data/apis/ecr/2015-09-21/examples-1.json +0 -5
  228. data/apis/ecs/2014-11-13/api-2.json +0 -1396
  229. data/apis/ecs/2014-11-13/examples-1.json +0 -5
  230. data/apis/ecs/2014-11-13/paginators-1.json +0 -40
  231. data/apis/ecs/2014-11-13/waiters-2.json +0 -93
  232. data/apis/elasticache/2015-02-02/api-2.json +0 -2426
  233. data/apis/elasticache/2015-02-02/examples-1.json +0 -5
  234. data/apis/elasticache/2015-02-02/paginators-1.json +0 -76
  235. data/apis/elasticache/2015-02-02/waiters-2.json +0 -143
  236. data/apis/elasticbeanstalk/2010-12-01/api-2.json +0 -1894
  237. data/apis/elasticbeanstalk/2010-12-01/examples-1.json +0 -1109
  238. data/apis/elasticbeanstalk/2010-12-01/paginators-1.json +0 -25
  239. data/apis/elasticfilesystem/2015-02-01/api-2.json +0 -713
  240. data/apis/elasticfilesystem/2015-02-01/examples-1.json +0 -5
  241. data/apis/elasticloadbalancing/2012-06-01/api-2.json +0 -2145
  242. data/apis/elasticloadbalancing/2012-06-01/paginators-1.json +0 -18
  243. data/apis/elasticloadbalancing/2012-06-01/waiters-2.json +0 -49
  244. data/apis/elasticmapreduce/2009-03-31/api-2.json +0 -1341
  245. data/apis/elasticmapreduce/2009-03-31/examples-1.json +0 -5
  246. data/apis/elasticmapreduce/2009-03-31/paginators-1.json +0 -32
  247. data/apis/elasticmapreduce/2009-03-31/waiters-2.json +0 -67
  248. data/apis/elastictranscoder/2012-09-25/api-2.json +0 -1807
  249. data/apis/elastictranscoder/2012-09-25/paginators-1.json +0 -24
  250. data/apis/elastictranscoder/2012-09-25/waiters-2.json +0 -30
  251. data/apis/email/2010-12-01/api-2.json +0 -1791
  252. data/apis/email/2010-12-01/examples-1.json +0 -5
  253. data/apis/email/2010-12-01/paginators-1.json +0 -13
  254. data/apis/email/2010-12-01/waiters-2.json +0 -18
  255. data/apis/es/2015-01-01/api-2.json +0 -764
  256. data/apis/events/2015-10-07/api-2.json +0 -643
  257. data/apis/events/2015-10-07/examples-1.json +0 -5
  258. data/apis/firehose/2015-08-04/api-2.json +0 -719
  259. data/apis/gamelift/2015-10-01/api-2.json +0 -2307
  260. data/apis/gamelift/2015-10-01/examples-1.json +0 -5
  261. data/apis/glacier/2012-06-01/api-2.json +0 -2144
  262. data/apis/glacier/2012-06-01/paginators-1.json +0 -28
  263. data/apis/glacier/2012-06-01/resources-1.json +0 -563
  264. data/apis/glacier/2012-06-01/waiters-2.json +0 -39
  265. data/apis/iam/2010-05-08/api-2.json +0 -4514
  266. data/apis/iam/2010-05-08/examples-1.json +0 -5
  267. data/apis/iam/2010-05-08/paginators-1.json +0 -198
  268. data/apis/iam/2010-05-08/resources-1.json +0 -1740
  269. data/apis/iam/2010-05-08/waiters-2.json +0 -39
  270. data/apis/importexport/2010-06-01/api-2.json +0 -666
  271. data/apis/importexport/2010-06-01/paginators-1.json +0 -11
  272. data/apis/inspector/2016-02-16/api-2.json +0 -1964
  273. data/apis/inspector/2016-02-16/examples-1.json +0 -5
  274. data/apis/iot-data/2015-05-28/api-2.json +0 -263
  275. data/apis/iot/2015-05-28/api-2.json +0 -3800
  276. data/apis/iot/2015-05-28/examples-1.json +0 -5
  277. data/apis/kinesis/2013-12-02/api-2.json +0 -822
  278. data/apis/kinesis/2013-12-02/examples-1.json +0 -5
  279. data/apis/kinesis/2013-12-02/paginators-1.json +0 -18
  280. data/apis/kinesis/2013-12-02/waiters-2.json +0 -18
  281. data/apis/kms/2014-11-01/api-2.json +0 -1209
  282. data/apis/kms/2014-11-01/examples-1.json +0 -5
  283. data/apis/kms/2014-11-01/paginators-1.json +0 -32
  284. data/apis/lambda/2014-11-11/api-2.json +0 -667
  285. data/apis/lambda/2014-11-11/paginators-1.json +0 -16
  286. data/apis/lambda/2015-03-31/api-2.json +0 -1342
  287. data/apis/lambda/2015-03-31/examples-1.json +0 -5
  288. data/apis/lambda/2015-03-31/paginators-1.json +0 -16
  289. data/apis/logs/2014-03-28/api-2.json +0 -1138
  290. data/apis/logs/2014-03-28/examples-1.json +0 -5
  291. data/apis/logs/2014-03-28/paginators-1.json +0 -49
  292. data/apis/machinelearning/2014-12-12/api-2.json +0 -1947
  293. data/apis/machinelearning/2014-12-12/paginators-1.json +0 -28
  294. data/apis/machinelearning/2014-12-12/waiters-2.json +0 -81
  295. data/apis/marketplacecommerceanalytics/2015-07-01/api-2.json +0 -120
  296. data/apis/marketplacecommerceanalytics/2015-07-01/examples-1.json +0 -5
  297. data/apis/meteringmarketplace/2016-01-14/api-2.json +0 -127
  298. data/apis/meteringmarketplace/2016-01-14/examples-1.json +0 -5
  299. data/apis/monitoring/2010-08-01/api-2.json +0 -790
  300. data/apis/monitoring/2010-08-01/examples-1.json +0 -5
  301. data/apis/monitoring/2010-08-01/paginators-1.json +0 -24
  302. data/apis/monitoring/2010-08-01/resources-1.json +0 -346
  303. data/apis/monitoring/2010-08-01/waiters-2.json +0 -18
  304. data/apis/opsworks/2013-02-18/api-2.json +0 -2606
  305. data/apis/opsworks/2013-02-18/examples-1.json +0 -5
  306. data/apis/opsworks/2013-02-18/paginators-1.json +0 -55
  307. data/apis/opsworks/2013-02-18/resources-1.json +0 -173
  308. data/apis/opsworks/2013-02-18/waiters-2.json +0 -295
  309. data/apis/rds/2014-10-31/api-2.json +0 -4757
  310. data/apis/rds/2014-10-31/examples-1.json +0 -5
  311. data/apis/rds/2014-10-31/paginators-1.json +0 -110
  312. data/apis/rds/2014-10-31/resources-1.json +0 -3272
  313. data/apis/rds/2014-10-31/waiters-2.json +0 -102
  314. data/apis/redshift/2012-12-01/api-2.json +0 -3768
  315. data/apis/redshift/2012-12-01/examples-1.json +0 -5
  316. data/apis/redshift/2012-12-01/paginators-1.json +0 -94
  317. data/apis/redshift/2012-12-01/waiters-2.json +0 -97
  318. data/apis/route53/2013-04-01/api-2.json +0 -3245
  319. data/apis/route53/2013-04-01/examples-1.json +0 -5
  320. data/apis/route53/2013-04-01/paginators-1.json +0 -33
  321. data/apis/route53/2013-04-01/waiters-2.json +0 -18
  322. data/apis/route53domains/2014-05-15/api-2.json +0 -1197
  323. data/apis/route53domains/2014-05-15/paginators-1.json +0 -17
  324. data/apis/s3/2006-03-01/api-2.json +0 -4517
  325. data/apis/s3/2006-03-01/examples-1.json +0 -5
  326. data/apis/s3/2006-03-01/paginators-1.json +0 -66
  327. data/apis/s3/2006-03-01/resources-1.json +0 -1176
  328. data/apis/s3/2006-03-01/waiters-2.json +0 -73
  329. data/apis/sdb/2009-04-15/api-2.json +0 -954
  330. data/apis/sdb/2009-04-15/paginators-1.json +0 -15
  331. data/apis/servicecatalog/2015-12-10/api-2.json +0 -749
  332. data/apis/servicecatalog/2015-12-10/examples-1.json +0 -5
  333. data/apis/sns/2010-03-31/api-2.json +0 -1139
  334. data/apis/sns/2010-03-31/paginators-1.json +0 -29
  335. data/apis/sns/2010-03-31/resources-1.json +0 -327
  336. data/apis/sqs/2012-11-05/api-2.json +0 -950
  337. data/apis/sqs/2012-11-05/examples-1.json +0 -44
  338. data/apis/sqs/2012-11-05/paginators-1.json +0 -7
  339. data/apis/ssm/2014-11-06/api-2.json +0 -1742
  340. data/apis/ssm/2014-11-06/examples-1.json +0 -5
  341. data/apis/ssm/2014-11-06/paginators-1.json +0 -34
  342. data/apis/storagegateway/2013-06-30/api-2.json +0 -2275
  343. data/apis/storagegateway/2013-06-30/examples-1.json +0 -5
  344. data/apis/storagegateway/2013-06-30/paginators-1.json +0 -52
  345. data/apis/streams.dynamodb/2012-08-10/api-2.json +0 -397
  346. data/apis/streams.dynamodb/2012-08-10/examples-1.json +0 -5
  347. data/apis/sts/2011-06-15/api-2.json +0 -521
  348. data/apis/sts/2011-06-15/examples-1.json +0 -5
  349. data/apis/support/2013-04-15/api-2.json +0 -869
  350. data/apis/support/2013-04-15/paginators-1.json +0 -25
  351. data/apis/swf/2012-01-25/api-2.json +0 -2838
  352. data/apis/swf/2012-01-25/paginators-1.json +0 -46
  353. data/apis/waf/2015-08-24/api-2.json +0 -1959
  354. data/apis/waf/2015-08-24/examples-1.json +0 -5
  355. data/apis/workspaces/2015-04-08/api-2.json +0 -632
  356. data/apis/workspaces/2015-04-08/examples-1.json +0 -5
  357. data/apis/workspaces/2015-04-08/paginators-1.json +0 -20
  358. data/bin/aws.rb +0 -180
  359. data/endpoints.json +0 -1460
  360. data/lib/aws-sdk-core/acm.rb +0 -6
  361. data/lib/aws-sdk-core/api/builder.rb +0 -106
  362. data/lib/aws-sdk-core/api/customizations.rb +0 -217
  363. data/lib/aws-sdk-core/api/docs/builder.rb +0 -220
  364. data/lib/aws-sdk-core/api/docs/client_type_documenter.rb +0 -109
  365. data/lib/aws-sdk-core/api/docs/docstring_provider.rb +0 -75
  366. data/lib/aws-sdk-core/api/docs/operation_documenter.rb +0 -138
  367. data/lib/aws-sdk-core/api/docs/param_formatter.rb +0 -163
  368. data/lib/aws-sdk-core/api/docs/request_syntax_example.rb +0 -22
  369. data/lib/aws-sdk-core/api/docs/response_structure_example.rb +0 -91
  370. data/lib/aws-sdk-core/api/docs/shared_example.rb +0 -100
  371. data/lib/aws-sdk-core/api/docs/utils.rb +0 -133
  372. data/lib/aws-sdk-core/api/shape_map.rb +0 -142
  373. data/lib/aws-sdk-core/apigateway.rb +0 -6
  374. data/lib/aws-sdk-core/applicationautoscaling.rb +0 -6
  375. data/lib/aws-sdk-core/applicationdiscoveryservice.rb +0 -5
  376. data/lib/aws-sdk-core/autoscaling.rb +0 -8
  377. data/lib/aws-sdk-core/checksums.rb +0 -51
  378. data/lib/aws-sdk-core/client.rb +0 -67
  379. data/lib/aws-sdk-core/client_waiters.rb +0 -120
  380. data/lib/aws-sdk-core/cloudformation.rb +0 -8
  381. data/lib/aws-sdk-core/cloudfront.rb +0 -15
  382. data/lib/aws-sdk-core/cloudfront/url_signer.rb +0 -167
  383. data/lib/aws-sdk-core/cloudhsm.rb +0 -5
  384. data/lib/aws-sdk-core/cloudsearch.rb +0 -5
  385. data/lib/aws-sdk-core/cloudsearchdomain.rb +0 -5
  386. data/lib/aws-sdk-core/cloudtrail.rb +0 -6
  387. data/lib/aws-sdk-core/cloudwatch.rb +0 -8
  388. data/lib/aws-sdk-core/cloudwatchevents.rb +0 -5
  389. data/lib/aws-sdk-core/cloudwatchlogs.rb +0 -6
  390. data/lib/aws-sdk-core/codecommit.rb +0 -6
  391. data/lib/aws-sdk-core/codedeploy.rb +0 -6
  392. data/lib/aws-sdk-core/codepipeline.rb +0 -5
  393. data/lib/aws-sdk-core/cognitoidentity.rb +0 -5
  394. data/lib/aws-sdk-core/cognitoidentityprovider.rb +0 -5
  395. data/lib/aws-sdk-core/cognitosync.rb +0 -4
  396. data/lib/aws-sdk-core/configservice.rb +0 -6
  397. data/lib/aws-sdk-core/databasemigrationservice.rb +0 -5
  398. data/lib/aws-sdk-core/datapipeline.rb +0 -5
  399. data/lib/aws-sdk-core/devicefarm.rb +0 -6
  400. data/lib/aws-sdk-core/directconnect.rb +0 -6
  401. data/lib/aws-sdk-core/directoryservice.rb +0 -5
  402. data/lib/aws-sdk-core/dynamodb.rb +0 -40
  403. data/lib/aws-sdk-core/dynamodb/attribute_value.rb +0 -108
  404. data/lib/aws-sdk-core/dynamodbstreams.rb +0 -5
  405. data/lib/aws-sdk-core/ec2.rb +0 -8
  406. data/lib/aws-sdk-core/ecr.rb +0 -5
  407. data/lib/aws-sdk-core/ecs.rb +0 -7
  408. data/lib/aws-sdk-core/efs.rb +0 -5
  409. data/lib/aws-sdk-core/elasticache.rb +0 -7
  410. data/lib/aws-sdk-core/elasticbeanstalk.rb +0 -6
  411. data/lib/aws-sdk-core/elasticloadbalancing.rb +0 -6
  412. data/lib/aws-sdk-core/elasticsearchservice.rb +0 -4
  413. data/lib/aws-sdk-core/elastictranscoder.rb +0 -6
  414. data/lib/aws-sdk-core/empty_structure.rb +0 -3
  415. data/lib/aws-sdk-core/emr.rb +0 -7
  416. data/lib/aws-sdk-core/endpoint_provider.rb +0 -95
  417. data/lib/aws-sdk-core/firehose.rb +0 -4
  418. data/lib/aws-sdk-core/gamelift.rb +0 -5
  419. data/lib/aws-sdk-core/glacier.rb +0 -7
  420. data/lib/aws-sdk-core/iam.rb +0 -8
  421. data/lib/aws-sdk-core/importexport.rb +0 -5
  422. data/lib/aws-sdk-core/inspector.rb +0 -5
  423. data/lib/aws-sdk-core/iot.rb +0 -5
  424. data/lib/aws-sdk-core/iotdataplane.rb +0 -4
  425. data/lib/aws-sdk-core/kinesis.rb +0 -7
  426. data/lib/aws-sdk-core/kms.rb +0 -6
  427. data/lib/aws-sdk-core/lambda.rb +0 -6
  428. data/lib/aws-sdk-core/lambdapreview.rb +0 -5
  429. data/lib/aws-sdk-core/machinelearning.rb +0 -6
  430. data/lib/aws-sdk-core/marketplacecommerceanalytics.rb +0 -5
  431. data/lib/aws-sdk-core/marketplacemetering.rb +0 -5
  432. data/lib/aws-sdk-core/opsworks.rb +0 -8
  433. data/lib/aws-sdk-core/partitions.rb +0 -174
  434. data/lib/aws-sdk-core/partitions/partition.rb +0 -95
  435. data/lib/aws-sdk-core/partitions/partition_list.rb +0 -60
  436. data/lib/aws-sdk-core/partitions/region.rb +0 -78
  437. data/lib/aws-sdk-core/partitions/service.rb +0 -84
  438. data/lib/aws-sdk-core/plugins/api_gateway_header.rb +0 -19
  439. data/lib/aws-sdk-core/plugins/csd_conditional_signing.rb +0 -30
  440. data/lib/aws-sdk-core/plugins/dynamodb_crc32_validation.rb +0 -52
  441. data/lib/aws-sdk-core/plugins/dynamodb_extended_retries.rb +0 -22
  442. data/lib/aws-sdk-core/plugins/dynamodb_simple_attributes.rb +0 -209
  443. data/lib/aws-sdk-core/plugins/ec2_copy_encrypted_snapshot.rb +0 -87
  444. data/lib/aws-sdk-core/plugins/ec2_region_validation.rb +0 -17
  445. data/lib/aws-sdk-core/plugins/glacier_account_id.rb +0 -19
  446. data/lib/aws-sdk-core/plugins/glacier_api_version.rb +0 -19
  447. data/lib/aws-sdk-core/plugins/glacier_checksums.rb +0 -87
  448. data/lib/aws-sdk-core/plugins/machine_learning_predict_endpoint.rb +0 -20
  449. data/lib/aws-sdk-core/plugins/request_signer.rb +0 -138
  450. data/lib/aws-sdk-core/plugins/route_53_id_fix.rb +0 -55
  451. data/lib/aws-sdk-core/plugins/s3_accelerate.rb +0 -73
  452. data/lib/aws-sdk-core/plugins/s3_bucket_dns.rb +0 -86
  453. data/lib/aws-sdk-core/plugins/s3_bucket_name_restrictions.rb +0 -21
  454. data/lib/aws-sdk-core/plugins/s3_expect_100_continue.rb +0 -27
  455. data/lib/aws-sdk-core/plugins/s3_get_bucket_location_fix.rb +0 -21
  456. data/lib/aws-sdk-core/plugins/s3_http_200_errors.rb +0 -45
  457. data/lib/aws-sdk-core/plugins/s3_location_constraint.rb +0 -31
  458. data/lib/aws-sdk-core/plugins/s3_md5s.rb +0 -50
  459. data/lib/aws-sdk-core/plugins/s3_redirects.rb +0 -37
  460. data/lib/aws-sdk-core/plugins/s3_request_signer.rb +0 -166
  461. data/lib/aws-sdk-core/plugins/s3_sse_cpk.rb +0 -64
  462. data/lib/aws-sdk-core/plugins/s3_url_encoded_keys.rb +0 -92
  463. data/lib/aws-sdk-core/plugins/sqs_md5s.rb +0 -162
  464. data/lib/aws-sdk-core/plugins/sqs_queue_urls.rb +0 -34
  465. data/lib/aws-sdk-core/plugins/swf_read_timeouts.rb +0 -23
  466. data/lib/aws-sdk-core/rds.rb +0 -8
  467. data/lib/aws-sdk-core/redshift.rb +0 -7
  468. data/lib/aws-sdk-core/route53.rb +0 -7
  469. data/lib/aws-sdk-core/route53domains.rb +0 -5
  470. data/lib/aws-sdk-core/s3.rb +0 -26
  471. data/lib/aws-sdk-core/s3/bucket_region_cache.rb +0 -75
  472. data/lib/aws-sdk-core/s3/presigner.rb +0 -113
  473. data/lib/aws-sdk-core/service.rb +0 -4
  474. data/lib/aws-sdk-core/servicecatalog.rb +0 -5
  475. data/lib/aws-sdk-core/ses.rb +0 -7
  476. data/lib/aws-sdk-core/signers/base.rb +0 -31
  477. data/lib/aws-sdk-core/signers/s3.rb +0 -184
  478. data/lib/aws-sdk-core/signers/v2.rb +0 -51
  479. data/lib/aws-sdk-core/signers/v3.rb +0 -34
  480. data/lib/aws-sdk-core/signers/v4.rb +0 -233
  481. data/lib/aws-sdk-core/simpledb.rb +0 -5
  482. data/lib/aws-sdk-core/sns.rb +0 -6
  483. data/lib/aws-sdk-core/sqs.rb +0 -6
  484. data/lib/aws-sdk-core/ssm.rb +0 -6
  485. data/lib/aws-sdk-core/storagegateway.rb +0 -6
  486. data/lib/aws-sdk-core/sts.rb +0 -5
  487. data/lib/aws-sdk-core/support.rb +0 -5
  488. data/lib/aws-sdk-core/swf.rb +0 -5
  489. data/lib/aws-sdk-core/tree_hash.rb +0 -69
  490. data/lib/aws-sdk-core/version.rb +0 -3
  491. data/lib/aws-sdk-core/waf.rb +0 -5
  492. data/lib/aws-sdk-core/waiters/null_provider.rb +0 -12
  493. data/lib/aws-sdk-core/waiters/provider.rb +0 -35
  494. data/lib/aws-sdk-core/workspaces.rb +0 -6
  495. data/lib/seahorse/client/plugins/restful_bindings.rb +0 -127
  496. data/service-models.json +0 -285
@@ -1,46 +0,0 @@
1
- {
2
- "pagination": {
3
- "GetWorkflowExecutionHistory": {
4
- "limit_key": "maximumPageSize",
5
- "input_token": "nextPageToken",
6
- "output_token": "nextPageToken",
7
- "result_key": "events"
8
- },
9
- "ListActivityTypes": {
10
- "limit_key": "maximumPageSize",
11
- "input_token": "nextPageToken",
12
- "output_token": "nextPageToken",
13
- "result_key": "typeInfos"
14
- },
15
- "ListClosedWorkflowExecutions": {
16
- "limit_key": "maximumPageSize",
17
- "input_token": "nextPageToken",
18
- "output_token": "nextPageToken",
19
- "result_key": "executionInfos"
20
- },
21
- "ListDomains": {
22
- "limit_key": "maximumPageSize",
23
- "input_token": "nextPageToken",
24
- "output_token": "nextPageToken",
25
- "result_key": "domainInfos"
26
- },
27
- "ListOpenWorkflowExecutions": {
28
- "limit_key": "maximumPageSize",
29
- "input_token": "nextPageToken",
30
- "output_token": "nextPageToken",
31
- "result_key": "executionInfos"
32
- },
33
- "ListWorkflowTypes": {
34
- "limit_key": "maximumPageSize",
35
- "input_token": "nextPageToken",
36
- "output_token": "nextPageToken",
37
- "result_key": "typeInfos"
38
- },
39
- "PollForDecisionTask": {
40
- "limit_key": "maximumPageSize",
41
- "input_token": "nextPageToken",
42
- "output_token": "nextPageToken",
43
- "result_key": "events"
44
- }
45
- }
46
- }
@@ -1,1959 +0,0 @@
1
- {
2
- "version":"2.0",
3
- "metadata":{
4
- "apiVersion":"2015-08-24",
5
- "endpointPrefix":"waf",
6
- "jsonVersion":"1.1",
7
- "protocol":"json",
8
- "serviceAbbreviation":"WAF",
9
- "serviceFullName":"AWS WAF",
10
- "signatureVersion":"v4",
11
- "targetPrefix":"AWSWAF_20150824"
12
- },
13
- "operations":{
14
- "CreateByteMatchSet":{
15
- "name":"CreateByteMatchSet",
16
- "http":{
17
- "method":"POST",
18
- "requestUri":"/"
19
- },
20
- "input":{"shape":"CreateByteMatchSetRequest"},
21
- "output":{"shape":"CreateByteMatchSetResponse"},
22
- "errors":[
23
- {"shape":"WAFDisallowedNameException"},
24
- {"shape":"WAFInternalErrorException"},
25
- {"shape":"WAFInvalidAccountException"},
26
- {"shape":"WAFInvalidParameterException"},
27
- {"shape":"WAFStaleDataException"},
28
- {"shape":"WAFLimitsExceededException"}
29
- ]
30
- },
31
- "CreateIPSet":{
32
- "name":"CreateIPSet",
33
- "http":{
34
- "method":"POST",
35
- "requestUri":"/"
36
- },
37
- "input":{"shape":"CreateIPSetRequest"},
38
- "output":{"shape":"CreateIPSetResponse"},
39
- "errors":[
40
- {"shape":"WAFStaleDataException"},
41
- {"shape":"WAFInternalErrorException"},
42
- {"shape":"WAFInvalidAccountException"},
43
- {"shape":"WAFDisallowedNameException"},
44
- {"shape":"WAFInvalidParameterException"},
45
- {"shape":"WAFLimitsExceededException"}
46
- ]
47
- },
48
- "CreateRule":{
49
- "name":"CreateRule",
50
- "http":{
51
- "method":"POST",
52
- "requestUri":"/"
53
- },
54
- "input":{"shape":"CreateRuleRequest"},
55
- "output":{"shape":"CreateRuleResponse"},
56
- "errors":[
57
- {"shape":"WAFStaleDataException"},
58
- {"shape":"WAFInternalErrorException"},
59
- {"shape":"WAFDisallowedNameException"},
60
- {"shape":"WAFInvalidParameterException"},
61
- {"shape":"WAFLimitsExceededException"}
62
- ]
63
- },
64
- "CreateSizeConstraintSet":{
65
- "name":"CreateSizeConstraintSet",
66
- "http":{
67
- "method":"POST",
68
- "requestUri":"/"
69
- },
70
- "input":{"shape":"CreateSizeConstraintSetRequest"},
71
- "output":{"shape":"CreateSizeConstraintSetResponse"},
72
- "errors":[
73
- {"shape":"WAFStaleDataException"},
74
- {"shape":"WAFInternalErrorException"},
75
- {"shape":"WAFInvalidAccountException"},
76
- {"shape":"WAFDisallowedNameException"},
77
- {"shape":"WAFInvalidParameterException"},
78
- {"shape":"WAFLimitsExceededException"}
79
- ]
80
- },
81
- "CreateSqlInjectionMatchSet":{
82
- "name":"CreateSqlInjectionMatchSet",
83
- "http":{
84
- "method":"POST",
85
- "requestUri":"/"
86
- },
87
- "input":{"shape":"CreateSqlInjectionMatchSetRequest"},
88
- "output":{"shape":"CreateSqlInjectionMatchSetResponse"},
89
- "errors":[
90
- {"shape":"WAFDisallowedNameException"},
91
- {"shape":"WAFInternalErrorException"},
92
- {"shape":"WAFInvalidAccountException"},
93
- {"shape":"WAFInvalidParameterException"},
94
- {"shape":"WAFStaleDataException"},
95
- {"shape":"WAFLimitsExceededException"}
96
- ]
97
- },
98
- "CreateWebACL":{
99
- "name":"CreateWebACL",
100
- "http":{
101
- "method":"POST",
102
- "requestUri":"/"
103
- },
104
- "input":{"shape":"CreateWebACLRequest"},
105
- "output":{"shape":"CreateWebACLResponse"},
106
- "errors":[
107
- {"shape":"WAFStaleDataException"},
108
- {"shape":"WAFInternalErrorException"},
109
- {"shape":"WAFInvalidAccountException"},
110
- {"shape":"WAFDisallowedNameException"},
111
- {"shape":"WAFInvalidParameterException"},
112
- {"shape":"WAFLimitsExceededException"}
113
- ]
114
- },
115
- "CreateXssMatchSet":{
116
- "name":"CreateXssMatchSet",
117
- "http":{
118
- "method":"POST",
119
- "requestUri":"/"
120
- },
121
- "input":{"shape":"CreateXssMatchSetRequest"},
122
- "output":{"shape":"CreateXssMatchSetResponse"},
123
- "errors":[
124
- {"shape":"WAFDisallowedNameException"},
125
- {"shape":"WAFInternalErrorException"},
126
- {"shape":"WAFInvalidAccountException"},
127
- {"shape":"WAFInvalidParameterException"},
128
- {"shape":"WAFStaleDataException"},
129
- {"shape":"WAFLimitsExceededException"}
130
- ]
131
- },
132
- "DeleteByteMatchSet":{
133
- "name":"DeleteByteMatchSet",
134
- "http":{
135
- "method":"POST",
136
- "requestUri":"/"
137
- },
138
- "input":{"shape":"DeleteByteMatchSetRequest"},
139
- "output":{"shape":"DeleteByteMatchSetResponse"},
140
- "errors":[
141
- {"shape":"WAFInternalErrorException"},
142
- {"shape":"WAFInvalidAccountException"},
143
- {"shape":"WAFNonexistentItemException"},
144
- {"shape":"WAFReferencedItemException"},
145
- {"shape":"WAFStaleDataException"},
146
- {"shape":"WAFNonEmptyEntityException"}
147
- ]
148
- },
149
- "DeleteIPSet":{
150
- "name":"DeleteIPSet",
151
- "http":{
152
- "method":"POST",
153
- "requestUri":"/"
154
- },
155
- "input":{"shape":"DeleteIPSetRequest"},
156
- "output":{"shape":"DeleteIPSetResponse"},
157
- "errors":[
158
- {"shape":"WAFStaleDataException"},
159
- {"shape":"WAFInternalErrorException"},
160
- {"shape":"WAFInvalidAccountException"},
161
- {"shape":"WAFNonexistentItemException"},
162
- {"shape":"WAFReferencedItemException"},
163
- {"shape":"WAFNonEmptyEntityException"}
164
- ]
165
- },
166
- "DeleteRule":{
167
- "name":"DeleteRule",
168
- "http":{
169
- "method":"POST",
170
- "requestUri":"/"
171
- },
172
- "input":{"shape":"DeleteRuleRequest"},
173
- "output":{"shape":"DeleteRuleResponse"},
174
- "errors":[
175
- {"shape":"WAFStaleDataException"},
176
- {"shape":"WAFInternalErrorException"},
177
- {"shape":"WAFInvalidAccountException"},
178
- {"shape":"WAFNonexistentItemException"},
179
- {"shape":"WAFReferencedItemException"},
180
- {"shape":"WAFNonEmptyEntityException"}
181
- ]
182
- },
183
- "DeleteSizeConstraintSet":{
184
- "name":"DeleteSizeConstraintSet",
185
- "http":{
186
- "method":"POST",
187
- "requestUri":"/"
188
- },
189
- "input":{"shape":"DeleteSizeConstraintSetRequest"},
190
- "output":{"shape":"DeleteSizeConstraintSetResponse"},
191
- "errors":[
192
- {"shape":"WAFStaleDataException"},
193
- {"shape":"WAFInternalErrorException"},
194
- {"shape":"WAFInvalidAccountException"},
195
- {"shape":"WAFNonexistentItemException"},
196
- {"shape":"WAFReferencedItemException"},
197
- {"shape":"WAFNonEmptyEntityException"}
198
- ]
199
- },
200
- "DeleteSqlInjectionMatchSet":{
201
- "name":"DeleteSqlInjectionMatchSet",
202
- "http":{
203
- "method":"POST",
204
- "requestUri":"/"
205
- },
206
- "input":{"shape":"DeleteSqlInjectionMatchSetRequest"},
207
- "output":{"shape":"DeleteSqlInjectionMatchSetResponse"},
208
- "errors":[
209
- {"shape":"WAFInternalErrorException"},
210
- {"shape":"WAFInvalidAccountException"},
211
- {"shape":"WAFNonexistentItemException"},
212
- {"shape":"WAFReferencedItemException"},
213
- {"shape":"WAFStaleDataException"},
214
- {"shape":"WAFNonEmptyEntityException"}
215
- ]
216
- },
217
- "DeleteWebACL":{
218
- "name":"DeleteWebACL",
219
- "http":{
220
- "method":"POST",
221
- "requestUri":"/"
222
- },
223
- "input":{"shape":"DeleteWebACLRequest"},
224
- "output":{"shape":"DeleteWebACLResponse"},
225
- "errors":[
226
- {"shape":"WAFStaleDataException"},
227
- {"shape":"WAFInternalErrorException"},
228
- {"shape":"WAFInvalidAccountException"},
229
- {"shape":"WAFNonexistentItemException"},
230
- {"shape":"WAFReferencedItemException"},
231
- {"shape":"WAFNonEmptyEntityException"}
232
- ]
233
- },
234
- "DeleteXssMatchSet":{
235
- "name":"DeleteXssMatchSet",
236
- "http":{
237
- "method":"POST",
238
- "requestUri":"/"
239
- },
240
- "input":{"shape":"DeleteXssMatchSetRequest"},
241
- "output":{"shape":"DeleteXssMatchSetResponse"},
242
- "errors":[
243
- {"shape":"WAFInternalErrorException"},
244
- {"shape":"WAFInvalidAccountException"},
245
- {"shape":"WAFNonexistentItemException"},
246
- {"shape":"WAFReferencedItemException"},
247
- {"shape":"WAFStaleDataException"},
248
- {"shape":"WAFNonEmptyEntityException"}
249
- ]
250
- },
251
- "GetByteMatchSet":{
252
- "name":"GetByteMatchSet",
253
- "http":{
254
- "method":"POST",
255
- "requestUri":"/"
256
- },
257
- "input":{"shape":"GetByteMatchSetRequest"},
258
- "output":{"shape":"GetByteMatchSetResponse"},
259
- "errors":[
260
- {"shape":"WAFInternalErrorException"},
261
- {"shape":"WAFInvalidAccountException"},
262
- {"shape":"WAFNonexistentItemException"}
263
- ]
264
- },
265
- "GetChangeToken":{
266
- "name":"GetChangeToken",
267
- "http":{
268
- "method":"POST",
269
- "requestUri":"/"
270
- },
271
- "input":{"shape":"GetChangeTokenRequest"},
272
- "output":{"shape":"GetChangeTokenResponse"},
273
- "errors":[
274
- {"shape":"WAFInternalErrorException"}
275
- ]
276
- },
277
- "GetChangeTokenStatus":{
278
- "name":"GetChangeTokenStatus",
279
- "http":{
280
- "method":"POST",
281
- "requestUri":"/"
282
- },
283
- "input":{"shape":"GetChangeTokenStatusRequest"},
284
- "output":{"shape":"GetChangeTokenStatusResponse"},
285
- "errors":[
286
- {"shape":"WAFNonexistentItemException"},
287
- {"shape":"WAFInternalErrorException"}
288
- ]
289
- },
290
- "GetIPSet":{
291
- "name":"GetIPSet",
292
- "http":{
293
- "method":"POST",
294
- "requestUri":"/"
295
- },
296
- "input":{"shape":"GetIPSetRequest"},
297
- "output":{"shape":"GetIPSetResponse"},
298
- "errors":[
299
- {"shape":"WAFInternalErrorException"},
300
- {"shape":"WAFInvalidAccountException"},
301
- {"shape":"WAFNonexistentItemException"}
302
- ]
303
- },
304
- "GetRule":{
305
- "name":"GetRule",
306
- "http":{
307
- "method":"POST",
308
- "requestUri":"/"
309
- },
310
- "input":{"shape":"GetRuleRequest"},
311
- "output":{"shape":"GetRuleResponse"},
312
- "errors":[
313
- {"shape":"WAFInternalErrorException"},
314
- {"shape":"WAFInvalidAccountException"},
315
- {"shape":"WAFNonexistentItemException"}
316
- ]
317
- },
318
- "GetSampledRequests":{
319
- "name":"GetSampledRequests",
320
- "http":{
321
- "method":"POST",
322
- "requestUri":"/"
323
- },
324
- "input":{"shape":"GetSampledRequestsRequest"},
325
- "output":{"shape":"GetSampledRequestsResponse"},
326
- "errors":[
327
- {"shape":"WAFNonexistentItemException"},
328
- {"shape":"WAFInternalErrorException"}
329
- ]
330
- },
331
- "GetSizeConstraintSet":{
332
- "name":"GetSizeConstraintSet",
333
- "http":{
334
- "method":"POST",
335
- "requestUri":"/"
336
- },
337
- "input":{"shape":"GetSizeConstraintSetRequest"},
338
- "output":{"shape":"GetSizeConstraintSetResponse"},
339
- "errors":[
340
- {"shape":"WAFInternalErrorException"},
341
- {"shape":"WAFInvalidAccountException"},
342
- {"shape":"WAFNonexistentItemException"}
343
- ]
344
- },
345
- "GetSqlInjectionMatchSet":{
346
- "name":"GetSqlInjectionMatchSet",
347
- "http":{
348
- "method":"POST",
349
- "requestUri":"/"
350
- },
351
- "input":{"shape":"GetSqlInjectionMatchSetRequest"},
352
- "output":{"shape":"GetSqlInjectionMatchSetResponse"},
353
- "errors":[
354
- {"shape":"WAFInternalErrorException"},
355
- {"shape":"WAFInvalidAccountException"},
356
- {"shape":"WAFNonexistentItemException"}
357
- ]
358
- },
359
- "GetWebACL":{
360
- "name":"GetWebACL",
361
- "http":{
362
- "method":"POST",
363
- "requestUri":"/"
364
- },
365
- "input":{"shape":"GetWebACLRequest"},
366
- "output":{"shape":"GetWebACLResponse"},
367
- "errors":[
368
- {"shape":"WAFInternalErrorException"},
369
- {"shape":"WAFInvalidAccountException"},
370
- {"shape":"WAFNonexistentItemException"}
371
- ]
372
- },
373
- "GetXssMatchSet":{
374
- "name":"GetXssMatchSet",
375
- "http":{
376
- "method":"POST",
377
- "requestUri":"/"
378
- },
379
- "input":{"shape":"GetXssMatchSetRequest"},
380
- "output":{"shape":"GetXssMatchSetResponse"},
381
- "errors":[
382
- {"shape":"WAFInternalErrorException"},
383
- {"shape":"WAFInvalidAccountException"},
384
- {"shape":"WAFNonexistentItemException"}
385
- ]
386
- },
387
- "ListByteMatchSets":{
388
- "name":"ListByteMatchSets",
389
- "http":{
390
- "method":"POST",
391
- "requestUri":"/"
392
- },
393
- "input":{"shape":"ListByteMatchSetsRequest"},
394
- "output":{"shape":"ListByteMatchSetsResponse"},
395
- "errors":[
396
- {"shape":"WAFInternalErrorException"},
397
- {"shape":"WAFInvalidAccountException"}
398
- ]
399
- },
400
- "ListIPSets":{
401
- "name":"ListIPSets",
402
- "http":{
403
- "method":"POST",
404
- "requestUri":"/"
405
- },
406
- "input":{"shape":"ListIPSetsRequest"},
407
- "output":{"shape":"ListIPSetsResponse"},
408
- "errors":[
409
- {"shape":"WAFInternalErrorException"},
410
- {"shape":"WAFInvalidAccountException"}
411
- ]
412
- },
413
- "ListRules":{
414
- "name":"ListRules",
415
- "http":{
416
- "method":"POST",
417
- "requestUri":"/"
418
- },
419
- "input":{"shape":"ListRulesRequest"},
420
- "output":{"shape":"ListRulesResponse"},
421
- "errors":[
422
- {"shape":"WAFInternalErrorException"},
423
- {"shape":"WAFInvalidAccountException"}
424
- ]
425
- },
426
- "ListSizeConstraintSets":{
427
- "name":"ListSizeConstraintSets",
428
- "http":{
429
- "method":"POST",
430
- "requestUri":"/"
431
- },
432
- "input":{"shape":"ListSizeConstraintSetsRequest"},
433
- "output":{"shape":"ListSizeConstraintSetsResponse"},
434
- "errors":[
435
- {"shape":"WAFInternalErrorException"},
436
- {"shape":"WAFInvalidAccountException"}
437
- ]
438
- },
439
- "ListSqlInjectionMatchSets":{
440
- "name":"ListSqlInjectionMatchSets",
441
- "http":{
442
- "method":"POST",
443
- "requestUri":"/"
444
- },
445
- "input":{"shape":"ListSqlInjectionMatchSetsRequest"},
446
- "output":{"shape":"ListSqlInjectionMatchSetsResponse"},
447
- "errors":[
448
- {"shape":"WAFInternalErrorException"},
449
- {"shape":"WAFInvalidAccountException"}
450
- ]
451
- },
452
- "ListWebACLs":{
453
- "name":"ListWebACLs",
454
- "http":{
455
- "method":"POST",
456
- "requestUri":"/"
457
- },
458
- "input":{"shape":"ListWebACLsRequest"},
459
- "output":{"shape":"ListWebACLsResponse"},
460
- "errors":[
461
- {"shape":"WAFInternalErrorException"},
462
- {"shape":"WAFInvalidAccountException"}
463
- ]
464
- },
465
- "ListXssMatchSets":{
466
- "name":"ListXssMatchSets",
467
- "http":{
468
- "method":"POST",
469
- "requestUri":"/"
470
- },
471
- "input":{"shape":"ListXssMatchSetsRequest"},
472
- "output":{"shape":"ListXssMatchSetsResponse"},
473
- "errors":[
474
- {"shape":"WAFInternalErrorException"},
475
- {"shape":"WAFInvalidAccountException"}
476
- ]
477
- },
478
- "UpdateByteMatchSet":{
479
- "name":"UpdateByteMatchSet",
480
- "http":{
481
- "method":"POST",
482
- "requestUri":"/"
483
- },
484
- "input":{"shape":"UpdateByteMatchSetRequest"},
485
- "output":{"shape":"UpdateByteMatchSetResponse"},
486
- "errors":[
487
- {"shape":"WAFInternalErrorException"},
488
- {"shape":"WAFInvalidAccountException"},
489
- {"shape":"WAFInvalidOperationException"},
490
- {"shape":"WAFInvalidParameterException"},
491
- {"shape":"WAFNonexistentContainerException"},
492
- {"shape":"WAFNonexistentItemException"},
493
- {"shape":"WAFStaleDataException"},
494
- {"shape":"WAFLimitsExceededException"}
495
- ]
496
- },
497
- "UpdateIPSet":{
498
- "name":"UpdateIPSet",
499
- "http":{
500
- "method":"POST",
501
- "requestUri":"/"
502
- },
503
- "input":{"shape":"UpdateIPSetRequest"},
504
- "output":{"shape":"UpdateIPSetResponse"},
505
- "errors":[
506
- {"shape":"WAFStaleDataException"},
507
- {"shape":"WAFInternalErrorException"},
508
- {"shape":"WAFInvalidAccountException"},
509
- {"shape":"WAFInvalidOperationException"},
510
- {"shape":"WAFInvalidParameterException"},
511
- {"shape":"WAFNonexistentContainerException"},
512
- {"shape":"WAFNonexistentItemException"},
513
- {"shape":"WAFReferencedItemException"},
514
- {"shape":"WAFLimitsExceededException"}
515
- ]
516
- },
517
- "UpdateRule":{
518
- "name":"UpdateRule",
519
- "http":{
520
- "method":"POST",
521
- "requestUri":"/"
522
- },
523
- "input":{"shape":"UpdateRuleRequest"},
524
- "output":{"shape":"UpdateRuleResponse"},
525
- "errors":[
526
- {"shape":"WAFStaleDataException"},
527
- {"shape":"WAFInternalErrorException"},
528
- {"shape":"WAFInvalidAccountException"},
529
- {"shape":"WAFInvalidOperationException"},
530
- {"shape":"WAFInvalidParameterException"},
531
- {"shape":"WAFNonexistentContainerException"},
532
- {"shape":"WAFNonexistentItemException"},
533
- {"shape":"WAFReferencedItemException"},
534
- {"shape":"WAFLimitsExceededException"}
535
- ]
536
- },
537
- "UpdateSizeConstraintSet":{
538
- "name":"UpdateSizeConstraintSet",
539
- "http":{
540
- "method":"POST",
541
- "requestUri":"/"
542
- },
543
- "input":{"shape":"UpdateSizeConstraintSetRequest"},
544
- "output":{"shape":"UpdateSizeConstraintSetResponse"},
545
- "errors":[
546
- {"shape":"WAFStaleDataException"},
547
- {"shape":"WAFInternalErrorException"},
548
- {"shape":"WAFInvalidAccountException"},
549
- {"shape":"WAFInvalidOperationException"},
550
- {"shape":"WAFInvalidParameterException"},
551
- {"shape":"WAFNonexistentContainerException"},
552
- {"shape":"WAFNonexistentItemException"},
553
- {"shape":"WAFReferencedItemException"},
554
- {"shape":"WAFLimitsExceededException"}
555
- ]
556
- },
557
- "UpdateSqlInjectionMatchSet":{
558
- "name":"UpdateSqlInjectionMatchSet",
559
- "http":{
560
- "method":"POST",
561
- "requestUri":"/"
562
- },
563
- "input":{"shape":"UpdateSqlInjectionMatchSetRequest"},
564
- "output":{"shape":"UpdateSqlInjectionMatchSetResponse"},
565
- "errors":[
566
- {"shape":"WAFInternalErrorException"},
567
- {"shape":"WAFInvalidAccountException"},
568
- {"shape":"WAFInvalidOperationException"},
569
- {"shape":"WAFInvalidParameterException"},
570
- {"shape":"WAFNonexistentContainerException"},
571
- {"shape":"WAFNonexistentItemException"},
572
- {"shape":"WAFStaleDataException"},
573
- {"shape":"WAFLimitsExceededException"}
574
- ]
575
- },
576
- "UpdateWebACL":{
577
- "name":"UpdateWebACL",
578
- "http":{
579
- "method":"POST",
580
- "requestUri":"/"
581
- },
582
- "input":{"shape":"UpdateWebACLRequest"},
583
- "output":{"shape":"UpdateWebACLResponse"},
584
- "errors":[
585
- {"shape":"WAFStaleDataException"},
586
- {"shape":"WAFInternalErrorException"},
587
- {"shape":"WAFInvalidAccountException"},
588
- {"shape":"WAFInvalidOperationException"},
589
- {"shape":"WAFInvalidParameterException"},
590
- {"shape":"WAFNonexistentContainerException"},
591
- {"shape":"WAFNonexistentItemException"},
592
- {"shape":"WAFReferencedItemException"},
593
- {"shape":"WAFLimitsExceededException"}
594
- ]
595
- },
596
- "UpdateXssMatchSet":{
597
- "name":"UpdateXssMatchSet",
598
- "http":{
599
- "method":"POST",
600
- "requestUri":"/"
601
- },
602
- "input":{"shape":"UpdateXssMatchSetRequest"},
603
- "output":{"shape":"UpdateXssMatchSetResponse"},
604
- "errors":[
605
- {"shape":"WAFInternalErrorException"},
606
- {"shape":"WAFInvalidAccountException"},
607
- {"shape":"WAFInvalidOperationException"},
608
- {"shape":"WAFInvalidParameterException"},
609
- {"shape":"WAFNonexistentContainerException"},
610
- {"shape":"WAFNonexistentItemException"},
611
- {"shape":"WAFStaleDataException"},
612
- {"shape":"WAFLimitsExceededException"}
613
- ]
614
- }
615
- },
616
- "shapes":{
617
- "Action":{"type":"string"},
618
- "ActivatedRule":{
619
- "type":"structure",
620
- "required":[
621
- "Priority",
622
- "RuleId",
623
- "Action"
624
- ],
625
- "members":{
626
- "Priority":{"shape":"RulePriority"},
627
- "RuleId":{"shape":"ResourceId"},
628
- "Action":{"shape":"WafAction"}
629
- }
630
- },
631
- "ActivatedRules":{
632
- "type":"list",
633
- "member":{"shape":"ActivatedRule"}
634
- },
635
- "ByteMatchSet":{
636
- "type":"structure",
637
- "required":[
638
- "ByteMatchSetId",
639
- "ByteMatchTuples"
640
- ],
641
- "members":{
642
- "ByteMatchSetId":{"shape":"ResourceId"},
643
- "Name":{"shape":"ResourceName"},
644
- "ByteMatchTuples":{"shape":"ByteMatchTuples"}
645
- }
646
- },
647
- "ByteMatchSetSummaries":{
648
- "type":"list",
649
- "member":{"shape":"ByteMatchSetSummary"}
650
- },
651
- "ByteMatchSetSummary":{
652
- "type":"structure",
653
- "required":[
654
- "ByteMatchSetId",
655
- "Name"
656
- ],
657
- "members":{
658
- "ByteMatchSetId":{"shape":"ResourceId"},
659
- "Name":{"shape":"ResourceName"}
660
- }
661
- },
662
- "ByteMatchSetUpdate":{
663
- "type":"structure",
664
- "required":[
665
- "Action",
666
- "ByteMatchTuple"
667
- ],
668
- "members":{
669
- "Action":{"shape":"ChangeAction"},
670
- "ByteMatchTuple":{"shape":"ByteMatchTuple"}
671
- }
672
- },
673
- "ByteMatchSetUpdates":{
674
- "type":"list",
675
- "member":{"shape":"ByteMatchSetUpdate"}
676
- },
677
- "ByteMatchTargetString":{"type":"blob"},
678
- "ByteMatchTuple":{
679
- "type":"structure",
680
- "required":[
681
- "FieldToMatch",
682
- "TargetString",
683
- "TextTransformation",
684
- "PositionalConstraint"
685
- ],
686
- "members":{
687
- "FieldToMatch":{"shape":"FieldToMatch"},
688
- "TargetString":{"shape":"ByteMatchTargetString"},
689
- "TextTransformation":{"shape":"TextTransformation"},
690
- "PositionalConstraint":{"shape":"PositionalConstraint"}
691
- }
692
- },
693
- "ByteMatchTuples":{
694
- "type":"list",
695
- "member":{"shape":"ByteMatchTuple"}
696
- },
697
- "ChangeAction":{
698
- "type":"string",
699
- "enum":[
700
- "INSERT",
701
- "DELETE"
702
- ]
703
- },
704
- "ChangeToken":{"type":"string"},
705
- "ChangeTokenStatus":{
706
- "type":"string",
707
- "enum":[
708
- "PROVISIONED",
709
- "PENDING",
710
- "INSYNC"
711
- ]
712
- },
713
- "ComparisonOperator":{
714
- "type":"string",
715
- "enum":[
716
- "EQ",
717
- "NE",
718
- "LE",
719
- "LT",
720
- "GE",
721
- "GT"
722
- ]
723
- },
724
- "Country":{"type":"string"},
725
- "CreateByteMatchSetRequest":{
726
- "type":"structure",
727
- "required":[
728
- "Name",
729
- "ChangeToken"
730
- ],
731
- "members":{
732
- "Name":{"shape":"ResourceName"},
733
- "ChangeToken":{"shape":"ChangeToken"}
734
- }
735
- },
736
- "CreateByteMatchSetResponse":{
737
- "type":"structure",
738
- "members":{
739
- "ByteMatchSet":{"shape":"ByteMatchSet"},
740
- "ChangeToken":{"shape":"ChangeToken"}
741
- }
742
- },
743
- "CreateIPSetRequest":{
744
- "type":"structure",
745
- "required":[
746
- "Name",
747
- "ChangeToken"
748
- ],
749
- "members":{
750
- "Name":{"shape":"ResourceName"},
751
- "ChangeToken":{"shape":"ChangeToken"}
752
- }
753
- },
754
- "CreateIPSetResponse":{
755
- "type":"structure",
756
- "members":{
757
- "IPSet":{"shape":"IPSet"},
758
- "ChangeToken":{"shape":"ChangeToken"}
759
- }
760
- },
761
- "CreateRuleRequest":{
762
- "type":"structure",
763
- "required":[
764
- "Name",
765
- "MetricName",
766
- "ChangeToken"
767
- ],
768
- "members":{
769
- "Name":{"shape":"ResourceName"},
770
- "MetricName":{"shape":"MetricName"},
771
- "ChangeToken":{"shape":"ChangeToken"}
772
- }
773
- },
774
- "CreateRuleResponse":{
775
- "type":"structure",
776
- "members":{
777
- "Rule":{"shape":"Rule"},
778
- "ChangeToken":{"shape":"ChangeToken"}
779
- }
780
- },
781
- "CreateSizeConstraintSetRequest":{
782
- "type":"structure",
783
- "required":[
784
- "Name",
785
- "ChangeToken"
786
- ],
787
- "members":{
788
- "Name":{"shape":"ResourceName"},
789
- "ChangeToken":{"shape":"ChangeToken"}
790
- }
791
- },
792
- "CreateSizeConstraintSetResponse":{
793
- "type":"structure",
794
- "members":{
795
- "SizeConstraintSet":{"shape":"SizeConstraintSet"},
796
- "ChangeToken":{"shape":"ChangeToken"}
797
- }
798
- },
799
- "CreateSqlInjectionMatchSetRequest":{
800
- "type":"structure",
801
- "required":[
802
- "Name",
803
- "ChangeToken"
804
- ],
805
- "members":{
806
- "Name":{"shape":"ResourceName"},
807
- "ChangeToken":{"shape":"ChangeToken"}
808
- }
809
- },
810
- "CreateSqlInjectionMatchSetResponse":{
811
- "type":"structure",
812
- "members":{
813
- "SqlInjectionMatchSet":{"shape":"SqlInjectionMatchSet"},
814
- "ChangeToken":{"shape":"ChangeToken"}
815
- }
816
- },
817
- "CreateWebACLRequest":{
818
- "type":"structure",
819
- "required":[
820
- "Name",
821
- "MetricName",
822
- "DefaultAction",
823
- "ChangeToken"
824
- ],
825
- "members":{
826
- "Name":{"shape":"ResourceName"},
827
- "MetricName":{"shape":"MetricName"},
828
- "DefaultAction":{"shape":"WafAction"},
829
- "ChangeToken":{"shape":"ChangeToken"}
830
- }
831
- },
832
- "CreateWebACLResponse":{
833
- "type":"structure",
834
- "members":{
835
- "WebACL":{"shape":"WebACL"},
836
- "ChangeToken":{"shape":"ChangeToken"}
837
- }
838
- },
839
- "CreateXssMatchSetRequest":{
840
- "type":"structure",
841
- "required":[
842
- "Name",
843
- "ChangeToken"
844
- ],
845
- "members":{
846
- "Name":{"shape":"ResourceName"},
847
- "ChangeToken":{"shape":"ChangeToken"}
848
- }
849
- },
850
- "CreateXssMatchSetResponse":{
851
- "type":"structure",
852
- "members":{
853
- "XssMatchSet":{"shape":"XssMatchSet"},
854
- "ChangeToken":{"shape":"ChangeToken"}
855
- }
856
- },
857
- "DeleteByteMatchSetRequest":{
858
- "type":"structure",
859
- "required":[
860
- "ByteMatchSetId",
861
- "ChangeToken"
862
- ],
863
- "members":{
864
- "ByteMatchSetId":{"shape":"ResourceId"},
865
- "ChangeToken":{"shape":"ChangeToken"}
866
- }
867
- },
868
- "DeleteByteMatchSetResponse":{
869
- "type":"structure",
870
- "members":{
871
- "ChangeToken":{"shape":"ChangeToken"}
872
- }
873
- },
874
- "DeleteIPSetRequest":{
875
- "type":"structure",
876
- "required":[
877
- "IPSetId",
878
- "ChangeToken"
879
- ],
880
- "members":{
881
- "IPSetId":{"shape":"ResourceId"},
882
- "ChangeToken":{"shape":"ChangeToken"}
883
- }
884
- },
885
- "DeleteIPSetResponse":{
886
- "type":"structure",
887
- "members":{
888
- "ChangeToken":{"shape":"ChangeToken"}
889
- }
890
- },
891
- "DeleteRuleRequest":{
892
- "type":"structure",
893
- "required":[
894
- "RuleId",
895
- "ChangeToken"
896
- ],
897
- "members":{
898
- "RuleId":{"shape":"ResourceId"},
899
- "ChangeToken":{"shape":"ChangeToken"}
900
- }
901
- },
902
- "DeleteRuleResponse":{
903
- "type":"structure",
904
- "members":{
905
- "ChangeToken":{"shape":"ChangeToken"}
906
- }
907
- },
908
- "DeleteSizeConstraintSetRequest":{
909
- "type":"structure",
910
- "required":[
911
- "SizeConstraintSetId",
912
- "ChangeToken"
913
- ],
914
- "members":{
915
- "SizeConstraintSetId":{"shape":"ResourceId"},
916
- "ChangeToken":{"shape":"ChangeToken"}
917
- }
918
- },
919
- "DeleteSizeConstraintSetResponse":{
920
- "type":"structure",
921
- "members":{
922
- "ChangeToken":{"shape":"ChangeToken"}
923
- }
924
- },
925
- "DeleteSqlInjectionMatchSetRequest":{
926
- "type":"structure",
927
- "required":[
928
- "SqlInjectionMatchSetId",
929
- "ChangeToken"
930
- ],
931
- "members":{
932
- "SqlInjectionMatchSetId":{"shape":"ResourceId"},
933
- "ChangeToken":{"shape":"ChangeToken"}
934
- }
935
- },
936
- "DeleteSqlInjectionMatchSetResponse":{
937
- "type":"structure",
938
- "members":{
939
- "ChangeToken":{"shape":"ChangeToken"}
940
- }
941
- },
942
- "DeleteWebACLRequest":{
943
- "type":"structure",
944
- "required":[
945
- "WebACLId",
946
- "ChangeToken"
947
- ],
948
- "members":{
949
- "WebACLId":{"shape":"ResourceId"},
950
- "ChangeToken":{"shape":"ChangeToken"}
951
- }
952
- },
953
- "DeleteWebACLResponse":{
954
- "type":"structure",
955
- "members":{
956
- "ChangeToken":{"shape":"ChangeToken"}
957
- }
958
- },
959
- "DeleteXssMatchSetRequest":{
960
- "type":"structure",
961
- "required":[
962
- "XssMatchSetId",
963
- "ChangeToken"
964
- ],
965
- "members":{
966
- "XssMatchSetId":{"shape":"ResourceId"},
967
- "ChangeToken":{"shape":"ChangeToken"}
968
- }
969
- },
970
- "DeleteXssMatchSetResponse":{
971
- "type":"structure",
972
- "members":{
973
- "ChangeToken":{"shape":"ChangeToken"}
974
- }
975
- },
976
- "FieldToMatch":{
977
- "type":"structure",
978
- "required":["Type"],
979
- "members":{
980
- "Type":{"shape":"MatchFieldType"},
981
- "Data":{"shape":"MatchFieldData"}
982
- }
983
- },
984
- "GetByteMatchSetRequest":{
985
- "type":"structure",
986
- "required":["ByteMatchSetId"],
987
- "members":{
988
- "ByteMatchSetId":{"shape":"ResourceId"}
989
- }
990
- },
991
- "GetByteMatchSetResponse":{
992
- "type":"structure",
993
- "members":{
994
- "ByteMatchSet":{"shape":"ByteMatchSet"}
995
- }
996
- },
997
- "GetChangeTokenRequest":{
998
- "type":"structure",
999
- "members":{
1000
- }
1001
- },
1002
- "GetChangeTokenResponse":{
1003
- "type":"structure",
1004
- "members":{
1005
- "ChangeToken":{"shape":"ChangeToken"}
1006
- }
1007
- },
1008
- "GetChangeTokenStatusRequest":{
1009
- "type":"structure",
1010
- "required":["ChangeToken"],
1011
- "members":{
1012
- "ChangeToken":{"shape":"ChangeToken"}
1013
- }
1014
- },
1015
- "GetChangeTokenStatusResponse":{
1016
- "type":"structure",
1017
- "members":{
1018
- "ChangeTokenStatus":{"shape":"ChangeTokenStatus"}
1019
- }
1020
- },
1021
- "GetIPSetRequest":{
1022
- "type":"structure",
1023
- "required":["IPSetId"],
1024
- "members":{
1025
- "IPSetId":{"shape":"ResourceId"}
1026
- }
1027
- },
1028
- "GetIPSetResponse":{
1029
- "type":"structure",
1030
- "members":{
1031
- "IPSet":{"shape":"IPSet"}
1032
- }
1033
- },
1034
- "GetRuleRequest":{
1035
- "type":"structure",
1036
- "required":["RuleId"],
1037
- "members":{
1038
- "RuleId":{"shape":"ResourceId"}
1039
- }
1040
- },
1041
- "GetRuleResponse":{
1042
- "type":"structure",
1043
- "members":{
1044
- "Rule":{"shape":"Rule"}
1045
- }
1046
- },
1047
- "GetSampledRequestsRequest":{
1048
- "type":"structure",
1049
- "required":[
1050
- "WebAclId",
1051
- "RuleId",
1052
- "TimeWindow",
1053
- "MaxItems"
1054
- ],
1055
- "members":{
1056
- "WebAclId":{"shape":"ResourceId"},
1057
- "RuleId":{"shape":"ResourceId"},
1058
- "TimeWindow":{"shape":"TimeWindow"},
1059
- "MaxItems":{"shape":"ListMaxItems"}
1060
- }
1061
- },
1062
- "GetSampledRequestsResponse":{
1063
- "type":"structure",
1064
- "members":{
1065
- "SampledRequests":{"shape":"SampledHTTPRequests"},
1066
- "PopulationSize":{"shape":"PopulationSize"},
1067
- "TimeWindow":{"shape":"TimeWindow"}
1068
- }
1069
- },
1070
- "GetSizeConstraintSetRequest":{
1071
- "type":"structure",
1072
- "required":["SizeConstraintSetId"],
1073
- "members":{
1074
- "SizeConstraintSetId":{"shape":"ResourceId"}
1075
- }
1076
- },
1077
- "GetSizeConstraintSetResponse":{
1078
- "type":"structure",
1079
- "members":{
1080
- "SizeConstraintSet":{"shape":"SizeConstraintSet"}
1081
- }
1082
- },
1083
- "GetSqlInjectionMatchSetRequest":{
1084
- "type":"structure",
1085
- "required":["SqlInjectionMatchSetId"],
1086
- "members":{
1087
- "SqlInjectionMatchSetId":{"shape":"ResourceId"}
1088
- }
1089
- },
1090
- "GetSqlInjectionMatchSetResponse":{
1091
- "type":"structure",
1092
- "members":{
1093
- "SqlInjectionMatchSet":{"shape":"SqlInjectionMatchSet"}
1094
- }
1095
- },
1096
- "GetWebACLRequest":{
1097
- "type":"structure",
1098
- "required":["WebACLId"],
1099
- "members":{
1100
- "WebACLId":{"shape":"ResourceId"}
1101
- }
1102
- },
1103
- "GetWebACLResponse":{
1104
- "type":"structure",
1105
- "members":{
1106
- "WebACL":{"shape":"WebACL"}
1107
- }
1108
- },
1109
- "GetXssMatchSetRequest":{
1110
- "type":"structure",
1111
- "required":["XssMatchSetId"],
1112
- "members":{
1113
- "XssMatchSetId":{"shape":"ResourceId"}
1114
- }
1115
- },
1116
- "GetXssMatchSetResponse":{
1117
- "type":"structure",
1118
- "members":{
1119
- "XssMatchSet":{"shape":"XssMatchSet"}
1120
- }
1121
- },
1122
- "HTTPHeader":{
1123
- "type":"structure",
1124
- "members":{
1125
- "Name":{"shape":"HeaderName"},
1126
- "Value":{"shape":"HeaderValue"}
1127
- }
1128
- },
1129
- "HTTPHeaders":{
1130
- "type":"list",
1131
- "member":{"shape":"HTTPHeader"}
1132
- },
1133
- "HTTPMethod":{"type":"string"},
1134
- "HTTPRequest":{
1135
- "type":"structure",
1136
- "members":{
1137
- "ClientIP":{"shape":"IPString"},
1138
- "Country":{"shape":"Country"},
1139
- "URI":{"shape":"URIString"},
1140
- "Method":{"shape":"HTTPMethod"},
1141
- "HTTPVersion":{"shape":"HTTPVersion"},
1142
- "Headers":{"shape":"HTTPHeaders"}
1143
- }
1144
- },
1145
- "HTTPVersion":{"type":"string"},
1146
- "HeaderName":{"type":"string"},
1147
- "HeaderValue":{"type":"string"},
1148
- "IPSet":{
1149
- "type":"structure",
1150
- "required":[
1151
- "IPSetId",
1152
- "IPSetDescriptors"
1153
- ],
1154
- "members":{
1155
- "IPSetId":{"shape":"ResourceId"},
1156
- "Name":{"shape":"ResourceName"},
1157
- "IPSetDescriptors":{"shape":"IPSetDescriptors"}
1158
- }
1159
- },
1160
- "IPSetDescriptor":{
1161
- "type":"structure",
1162
- "required":[
1163
- "Type",
1164
- "Value"
1165
- ],
1166
- "members":{
1167
- "Type":{"shape":"IPSetDescriptorType"},
1168
- "Value":{"shape":"IPSetDescriptorValue"}
1169
- }
1170
- },
1171
- "IPSetDescriptorType":{
1172
- "type":"string",
1173
- "enum":["IPV4"]
1174
- },
1175
- "IPSetDescriptorValue":{"type":"string"},
1176
- "IPSetDescriptors":{
1177
- "type":"list",
1178
- "member":{"shape":"IPSetDescriptor"}
1179
- },
1180
- "IPSetSummaries":{
1181
- "type":"list",
1182
- "member":{"shape":"IPSetSummary"}
1183
- },
1184
- "IPSetSummary":{
1185
- "type":"structure",
1186
- "required":[
1187
- "IPSetId",
1188
- "Name"
1189
- ],
1190
- "members":{
1191
- "IPSetId":{"shape":"ResourceId"},
1192
- "Name":{"shape":"ResourceName"}
1193
- }
1194
- },
1195
- "IPSetUpdate":{
1196
- "type":"structure",
1197
- "required":[
1198
- "Action",
1199
- "IPSetDescriptor"
1200
- ],
1201
- "members":{
1202
- "Action":{"shape":"ChangeAction"},
1203
- "IPSetDescriptor":{"shape":"IPSetDescriptor"}
1204
- }
1205
- },
1206
- "IPSetUpdates":{
1207
- "type":"list",
1208
- "member":{"shape":"IPSetUpdate"}
1209
- },
1210
- "IPString":{"type":"string"},
1211
- "ListByteMatchSetsRequest":{
1212
- "type":"structure",
1213
- "required":["Limit"],
1214
- "members":{
1215
- "NextMarker":{"shape":"NextMarker"},
1216
- "Limit":{"shape":"PaginationLimit"}
1217
- }
1218
- },
1219
- "ListByteMatchSetsResponse":{
1220
- "type":"structure",
1221
- "members":{
1222
- "NextMarker":{"shape":"NextMarker"},
1223
- "ByteMatchSets":{"shape":"ByteMatchSetSummaries"}
1224
- }
1225
- },
1226
- "ListIPSetsRequest":{
1227
- "type":"structure",
1228
- "required":["Limit"],
1229
- "members":{
1230
- "NextMarker":{"shape":"NextMarker"},
1231
- "Limit":{"shape":"PaginationLimit"}
1232
- }
1233
- },
1234
- "ListIPSetsResponse":{
1235
- "type":"structure",
1236
- "members":{
1237
- "NextMarker":{"shape":"NextMarker"},
1238
- "IPSets":{"shape":"IPSetSummaries"}
1239
- }
1240
- },
1241
- "ListMaxItems":{
1242
- "type":"long",
1243
- "max":100,
1244
- "min":1
1245
- },
1246
- "ListRulesRequest":{
1247
- "type":"structure",
1248
- "required":["Limit"],
1249
- "members":{
1250
- "NextMarker":{"shape":"NextMarker"},
1251
- "Limit":{"shape":"PaginationLimit"}
1252
- }
1253
- },
1254
- "ListRulesResponse":{
1255
- "type":"structure",
1256
- "members":{
1257
- "NextMarker":{"shape":"NextMarker"},
1258
- "Rules":{"shape":"RuleSummaries"}
1259
- }
1260
- },
1261
- "ListSizeConstraintSetsRequest":{
1262
- "type":"structure",
1263
- "required":["Limit"],
1264
- "members":{
1265
- "NextMarker":{"shape":"NextMarker"},
1266
- "Limit":{"shape":"PaginationLimit"}
1267
- }
1268
- },
1269
- "ListSizeConstraintSetsResponse":{
1270
- "type":"structure",
1271
- "members":{
1272
- "NextMarker":{"shape":"NextMarker"},
1273
- "SizeConstraintSets":{"shape":"SizeConstraintSetSummaries"}
1274
- }
1275
- },
1276
- "ListSqlInjectionMatchSetsRequest":{
1277
- "type":"structure",
1278
- "required":["Limit"],
1279
- "members":{
1280
- "NextMarker":{"shape":"NextMarker"},
1281
- "Limit":{"shape":"PaginationLimit"}
1282
- }
1283
- },
1284
- "ListSqlInjectionMatchSetsResponse":{
1285
- "type":"structure",
1286
- "members":{
1287
- "NextMarker":{"shape":"NextMarker"},
1288
- "SqlInjectionMatchSets":{"shape":"SqlInjectionMatchSetSummaries"}
1289
- }
1290
- },
1291
- "ListWebACLsRequest":{
1292
- "type":"structure",
1293
- "required":["Limit"],
1294
- "members":{
1295
- "NextMarker":{"shape":"NextMarker"},
1296
- "Limit":{"shape":"PaginationLimit"}
1297
- }
1298
- },
1299
- "ListWebACLsResponse":{
1300
- "type":"structure",
1301
- "members":{
1302
- "NextMarker":{"shape":"NextMarker"},
1303
- "WebACLs":{"shape":"WebACLSummaries"}
1304
- }
1305
- },
1306
- "ListXssMatchSetsRequest":{
1307
- "type":"structure",
1308
- "required":["Limit"],
1309
- "members":{
1310
- "NextMarker":{"shape":"NextMarker"},
1311
- "Limit":{"shape":"PaginationLimit"}
1312
- }
1313
- },
1314
- "ListXssMatchSetsResponse":{
1315
- "type":"structure",
1316
- "members":{
1317
- "NextMarker":{"shape":"NextMarker"},
1318
- "XssMatchSets":{"shape":"XssMatchSetSummaries"}
1319
- }
1320
- },
1321
- "MatchFieldData":{"type":"string"},
1322
- "MatchFieldType":{
1323
- "type":"string",
1324
- "enum":[
1325
- "URI",
1326
- "QUERY_STRING",
1327
- "HEADER",
1328
- "METHOD",
1329
- "BODY"
1330
- ]
1331
- },
1332
- "MetricName":{"type":"string"},
1333
- "Negated":{"type":"boolean"},
1334
- "NextMarker":{
1335
- "type":"string",
1336
- "min":1
1337
- },
1338
- "PaginationLimit":{
1339
- "type":"integer",
1340
- "max":100,
1341
- "min":1
1342
- },
1343
- "ParameterExceptionField":{
1344
- "type":"string",
1345
- "enum":[
1346
- "CHANGE_ACTION",
1347
- "WAF_ACTION",
1348
- "PREDICATE_TYPE",
1349
- "IPSET_TYPE",
1350
- "BYTE_MATCH_FIELD_TYPE",
1351
- "SQL_INJECTION_MATCH_FIELD_TYPE",
1352
- "BYTE_MATCH_TEXT_TRANSFORMATION",
1353
- "BYTE_MATCH_POSITIONAL_CONSTRAINT",
1354
- "SIZE_CONSTRAINT_COMPARISON_OPERATOR"
1355
- ]
1356
- },
1357
- "ParameterExceptionParameter":{
1358
- "type":"string",
1359
- "min":1
1360
- },
1361
- "ParameterExceptionReason":{
1362
- "type":"string",
1363
- "enum":[
1364
- "INVALID_OPTION",
1365
- "ILLEGAL_COMBINATION"
1366
- ]
1367
- },
1368
- "PopulationSize":{"type":"long"},
1369
- "PositionalConstraint":{
1370
- "type":"string",
1371
- "enum":[
1372
- "EXACTLY",
1373
- "STARTS_WITH",
1374
- "ENDS_WITH",
1375
- "CONTAINS",
1376
- "CONTAINS_WORD"
1377
- ]
1378
- },
1379
- "Predicate":{
1380
- "type":"structure",
1381
- "required":[
1382
- "Negated",
1383
- "Type",
1384
- "DataId"
1385
- ],
1386
- "members":{
1387
- "Negated":{"shape":"Negated"},
1388
- "Type":{"shape":"PredicateType"},
1389
- "DataId":{"shape":"ResourceId"}
1390
- }
1391
- },
1392
- "PredicateType":{
1393
- "type":"string",
1394
- "enum":[
1395
- "IPMatch",
1396
- "ByteMatch",
1397
- "SqlInjectionMatch",
1398
- "SizeConstraint",
1399
- "XssMatch"
1400
- ]
1401
- },
1402
- "Predicates":{
1403
- "type":"list",
1404
- "member":{"shape":"Predicate"}
1405
- },
1406
- "ResourceId":{
1407
- "type":"string",
1408
- "max":128,
1409
- "min":1
1410
- },
1411
- "ResourceName":{
1412
- "type":"string",
1413
- "max":128,
1414
- "min":1
1415
- },
1416
- "Rule":{
1417
- "type":"structure",
1418
- "required":[
1419
- "RuleId",
1420
- "Predicates"
1421
- ],
1422
- "members":{
1423
- "RuleId":{"shape":"ResourceId"},
1424
- "Name":{"shape":"ResourceName"},
1425
- "MetricName":{"shape":"MetricName"},
1426
- "Predicates":{"shape":"Predicates"}
1427
- }
1428
- },
1429
- "RulePriority":{"type":"integer"},
1430
- "RuleSummaries":{
1431
- "type":"list",
1432
- "member":{"shape":"RuleSummary"}
1433
- },
1434
- "RuleSummary":{
1435
- "type":"structure",
1436
- "required":[
1437
- "RuleId",
1438
- "Name"
1439
- ],
1440
- "members":{
1441
- "RuleId":{"shape":"ResourceId"},
1442
- "Name":{"shape":"ResourceName"}
1443
- }
1444
- },
1445
- "RuleUpdate":{
1446
- "type":"structure",
1447
- "required":[
1448
- "Action",
1449
- "Predicate"
1450
- ],
1451
- "members":{
1452
- "Action":{"shape":"ChangeAction"},
1453
- "Predicate":{"shape":"Predicate"}
1454
- }
1455
- },
1456
- "RuleUpdates":{
1457
- "type":"list",
1458
- "member":{"shape":"RuleUpdate"}
1459
- },
1460
- "SampleWeight":{
1461
- "type":"long",
1462
- "min":0
1463
- },
1464
- "SampledHTTPRequest":{
1465
- "type":"structure",
1466
- "required":[
1467
- "Request",
1468
- "Weight"
1469
- ],
1470
- "members":{
1471
- "Request":{"shape":"HTTPRequest"},
1472
- "Weight":{"shape":"SampleWeight"},
1473
- "Timestamp":{"shape":"Timestamp"},
1474
- "Action":{"shape":"Action"}
1475
- }
1476
- },
1477
- "SampledHTTPRequests":{
1478
- "type":"list",
1479
- "member":{"shape":"SampledHTTPRequest"}
1480
- },
1481
- "Size":{
1482
- "type":"long",
1483
- "max":21474836480,
1484
- "min":0
1485
- },
1486
- "SizeConstraint":{
1487
- "type":"structure",
1488
- "required":[
1489
- "FieldToMatch",
1490
- "TextTransformation",
1491
- "ComparisonOperator",
1492
- "Size"
1493
- ],
1494
- "members":{
1495
- "FieldToMatch":{"shape":"FieldToMatch"},
1496
- "TextTransformation":{"shape":"TextTransformation"},
1497
- "ComparisonOperator":{"shape":"ComparisonOperator"},
1498
- "Size":{"shape":"Size"}
1499
- }
1500
- },
1501
- "SizeConstraintSet":{
1502
- "type":"structure",
1503
- "required":[
1504
- "SizeConstraintSetId",
1505
- "SizeConstraints"
1506
- ],
1507
- "members":{
1508
- "SizeConstraintSetId":{"shape":"ResourceId"},
1509
- "Name":{"shape":"ResourceName"},
1510
- "SizeConstraints":{"shape":"SizeConstraints"}
1511
- }
1512
- },
1513
- "SizeConstraintSetSummaries":{
1514
- "type":"list",
1515
- "member":{"shape":"SizeConstraintSetSummary"}
1516
- },
1517
- "SizeConstraintSetSummary":{
1518
- "type":"structure",
1519
- "required":[
1520
- "SizeConstraintSetId",
1521
- "Name"
1522
- ],
1523
- "members":{
1524
- "SizeConstraintSetId":{"shape":"ResourceId"},
1525
- "Name":{"shape":"ResourceName"}
1526
- }
1527
- },
1528
- "SizeConstraintSetUpdate":{
1529
- "type":"structure",
1530
- "required":[
1531
- "Action",
1532
- "SizeConstraint"
1533
- ],
1534
- "members":{
1535
- "Action":{"shape":"ChangeAction"},
1536
- "SizeConstraint":{"shape":"SizeConstraint"}
1537
- }
1538
- },
1539
- "SizeConstraintSetUpdates":{
1540
- "type":"list",
1541
- "member":{"shape":"SizeConstraintSetUpdate"}
1542
- },
1543
- "SizeConstraints":{
1544
- "type":"list",
1545
- "member":{"shape":"SizeConstraint"}
1546
- },
1547
- "SqlInjectionMatchSet":{
1548
- "type":"structure",
1549
- "required":[
1550
- "SqlInjectionMatchSetId",
1551
- "SqlInjectionMatchTuples"
1552
- ],
1553
- "members":{
1554
- "SqlInjectionMatchSetId":{"shape":"ResourceId"},
1555
- "Name":{"shape":"ResourceName"},
1556
- "SqlInjectionMatchTuples":{"shape":"SqlInjectionMatchTuples"}
1557
- }
1558
- },
1559
- "SqlInjectionMatchSetSummaries":{
1560
- "type":"list",
1561
- "member":{"shape":"SqlInjectionMatchSetSummary"}
1562
- },
1563
- "SqlInjectionMatchSetSummary":{
1564
- "type":"structure",
1565
- "required":[
1566
- "SqlInjectionMatchSetId",
1567
- "Name"
1568
- ],
1569
- "members":{
1570
- "SqlInjectionMatchSetId":{"shape":"ResourceId"},
1571
- "Name":{"shape":"ResourceName"}
1572
- }
1573
- },
1574
- "SqlInjectionMatchSetUpdate":{
1575
- "type":"structure",
1576
- "required":[
1577
- "Action",
1578
- "SqlInjectionMatchTuple"
1579
- ],
1580
- "members":{
1581
- "Action":{"shape":"ChangeAction"},
1582
- "SqlInjectionMatchTuple":{"shape":"SqlInjectionMatchTuple"}
1583
- }
1584
- },
1585
- "SqlInjectionMatchSetUpdates":{
1586
- "type":"list",
1587
- "member":{"shape":"SqlInjectionMatchSetUpdate"}
1588
- },
1589
- "SqlInjectionMatchTuple":{
1590
- "type":"structure",
1591
- "required":[
1592
- "FieldToMatch",
1593
- "TextTransformation"
1594
- ],
1595
- "members":{
1596
- "FieldToMatch":{"shape":"FieldToMatch"},
1597
- "TextTransformation":{"shape":"TextTransformation"}
1598
- }
1599
- },
1600
- "SqlInjectionMatchTuples":{
1601
- "type":"list",
1602
- "member":{"shape":"SqlInjectionMatchTuple"}
1603
- },
1604
- "TextTransformation":{
1605
- "type":"string",
1606
- "enum":[
1607
- "NONE",
1608
- "COMPRESS_WHITE_SPACE",
1609
- "HTML_ENTITY_DECODE",
1610
- "LOWERCASE",
1611
- "CMD_LINE",
1612
- "URL_DECODE"
1613
- ]
1614
- },
1615
- "TimeWindow":{
1616
- "type":"structure",
1617
- "required":[
1618
- "StartTime",
1619
- "EndTime"
1620
- ],
1621
- "members":{
1622
- "StartTime":{"shape":"Timestamp"},
1623
- "EndTime":{"shape":"Timestamp"}
1624
- }
1625
- },
1626
- "Timestamp":{"type":"timestamp"},
1627
- "URIString":{"type":"string"},
1628
- "UpdateByteMatchSetRequest":{
1629
- "type":"structure",
1630
- "required":[
1631
- "ByteMatchSetId",
1632
- "ChangeToken",
1633
- "Updates"
1634
- ],
1635
- "members":{
1636
- "ByteMatchSetId":{"shape":"ResourceId"},
1637
- "ChangeToken":{"shape":"ChangeToken"},
1638
- "Updates":{"shape":"ByteMatchSetUpdates"}
1639
- }
1640
- },
1641
- "UpdateByteMatchSetResponse":{
1642
- "type":"structure",
1643
- "members":{
1644
- "ChangeToken":{"shape":"ChangeToken"}
1645
- }
1646
- },
1647
- "UpdateIPSetRequest":{
1648
- "type":"structure",
1649
- "required":[
1650
- "IPSetId",
1651
- "ChangeToken",
1652
- "Updates"
1653
- ],
1654
- "members":{
1655
- "IPSetId":{"shape":"ResourceId"},
1656
- "ChangeToken":{"shape":"ChangeToken"},
1657
- "Updates":{"shape":"IPSetUpdates"}
1658
- }
1659
- },
1660
- "UpdateIPSetResponse":{
1661
- "type":"structure",
1662
- "members":{
1663
- "ChangeToken":{"shape":"ChangeToken"}
1664
- }
1665
- },
1666
- "UpdateRuleRequest":{
1667
- "type":"structure",
1668
- "required":[
1669
- "RuleId",
1670
- "ChangeToken",
1671
- "Updates"
1672
- ],
1673
- "members":{
1674
- "RuleId":{"shape":"ResourceId"},
1675
- "ChangeToken":{"shape":"ChangeToken"},
1676
- "Updates":{"shape":"RuleUpdates"}
1677
- }
1678
- },
1679
- "UpdateRuleResponse":{
1680
- "type":"structure",
1681
- "members":{
1682
- "ChangeToken":{"shape":"ChangeToken"}
1683
- }
1684
- },
1685
- "UpdateSizeConstraintSetRequest":{
1686
- "type":"structure",
1687
- "required":[
1688
- "SizeConstraintSetId",
1689
- "ChangeToken",
1690
- "Updates"
1691
- ],
1692
- "members":{
1693
- "SizeConstraintSetId":{"shape":"ResourceId"},
1694
- "ChangeToken":{"shape":"ChangeToken"},
1695
- "Updates":{"shape":"SizeConstraintSetUpdates"}
1696
- }
1697
- },
1698
- "UpdateSizeConstraintSetResponse":{
1699
- "type":"structure",
1700
- "members":{
1701
- "ChangeToken":{"shape":"ChangeToken"}
1702
- }
1703
- },
1704
- "UpdateSqlInjectionMatchSetRequest":{
1705
- "type":"structure",
1706
- "required":[
1707
- "SqlInjectionMatchSetId",
1708
- "ChangeToken",
1709
- "Updates"
1710
- ],
1711
- "members":{
1712
- "SqlInjectionMatchSetId":{"shape":"ResourceId"},
1713
- "ChangeToken":{"shape":"ChangeToken"},
1714
- "Updates":{"shape":"SqlInjectionMatchSetUpdates"}
1715
- }
1716
- },
1717
- "UpdateSqlInjectionMatchSetResponse":{
1718
- "type":"structure",
1719
- "members":{
1720
- "ChangeToken":{"shape":"ChangeToken"}
1721
- }
1722
- },
1723
- "UpdateWebACLRequest":{
1724
- "type":"structure",
1725
- "required":[
1726
- "WebACLId",
1727
- "ChangeToken"
1728
- ],
1729
- "members":{
1730
- "WebACLId":{"shape":"ResourceId"},
1731
- "ChangeToken":{"shape":"ChangeToken"},
1732
- "Updates":{"shape":"WebACLUpdates"},
1733
- "DefaultAction":{"shape":"WafAction"}
1734
- }
1735
- },
1736
- "UpdateWebACLResponse":{
1737
- "type":"structure",
1738
- "members":{
1739
- "ChangeToken":{"shape":"ChangeToken"}
1740
- }
1741
- },
1742
- "UpdateXssMatchSetRequest":{
1743
- "type":"structure",
1744
- "required":[
1745
- "XssMatchSetId",
1746
- "ChangeToken",
1747
- "Updates"
1748
- ],
1749
- "members":{
1750
- "XssMatchSetId":{"shape":"ResourceId"},
1751
- "ChangeToken":{"shape":"ChangeToken"},
1752
- "Updates":{"shape":"XssMatchSetUpdates"}
1753
- }
1754
- },
1755
- "UpdateXssMatchSetResponse":{
1756
- "type":"structure",
1757
- "members":{
1758
- "ChangeToken":{"shape":"ChangeToken"}
1759
- }
1760
- },
1761
- "WAFDisallowedNameException":{
1762
- "type":"structure",
1763
- "members":{
1764
- "message":{"shape":"errorMessage"}
1765
- },
1766
- "exception":true
1767
- },
1768
- "WAFInternalErrorException":{
1769
- "type":"structure",
1770
- "members":{
1771
- "message":{"shape":"errorMessage"}
1772
- },
1773
- "exception":true,
1774
- "fault":true
1775
- },
1776
- "WAFInvalidAccountException":{
1777
- "type":"structure",
1778
- "members":{
1779
- },
1780
- "exception":true
1781
- },
1782
- "WAFInvalidOperationException":{
1783
- "type":"structure",
1784
- "members":{
1785
- "message":{"shape":"errorMessage"}
1786
- },
1787
- "exception":true
1788
- },
1789
- "WAFInvalidParameterException":{
1790
- "type":"structure",
1791
- "members":{
1792
- "field":{"shape":"ParameterExceptionField"},
1793
- "parameter":{"shape":"ParameterExceptionParameter"},
1794
- "reason":{"shape":"ParameterExceptionReason"}
1795
- },
1796
- "exception":true
1797
- },
1798
- "WAFLimitsExceededException":{
1799
- "type":"structure",
1800
- "members":{
1801
- "message":{"shape":"errorMessage"}
1802
- },
1803
- "exception":true
1804
- },
1805
- "WAFNonEmptyEntityException":{
1806
- "type":"structure",
1807
- "members":{
1808
- "message":{"shape":"errorMessage"}
1809
- },
1810
- "exception":true
1811
- },
1812
- "WAFNonexistentContainerException":{
1813
- "type":"structure",
1814
- "members":{
1815
- "message":{"shape":"errorMessage"}
1816
- },
1817
- "exception":true
1818
- },
1819
- "WAFNonexistentItemException":{
1820
- "type":"structure",
1821
- "members":{
1822
- "message":{"shape":"errorMessage"}
1823
- },
1824
- "exception":true
1825
- },
1826
- "WAFReferencedItemException":{
1827
- "type":"structure",
1828
- "members":{
1829
- "message":{"shape":"errorMessage"}
1830
- },
1831
- "exception":true
1832
- },
1833
- "WAFStaleDataException":{
1834
- "type":"structure",
1835
- "members":{
1836
- "message":{"shape":"errorMessage"}
1837
- },
1838
- "exception":true
1839
- },
1840
- "WafAction":{
1841
- "type":"structure",
1842
- "required":["Type"],
1843
- "members":{
1844
- "Type":{"shape":"WafActionType"}
1845
- }
1846
- },
1847
- "WafActionType":{
1848
- "type":"string",
1849
- "enum":[
1850
- "BLOCK",
1851
- "ALLOW",
1852
- "COUNT"
1853
- ]
1854
- },
1855
- "WebACL":{
1856
- "type":"structure",
1857
- "required":[
1858
- "WebACLId",
1859
- "DefaultAction",
1860
- "Rules"
1861
- ],
1862
- "members":{
1863
- "WebACLId":{"shape":"ResourceId"},
1864
- "Name":{"shape":"ResourceName"},
1865
- "MetricName":{"shape":"MetricName"},
1866
- "DefaultAction":{"shape":"WafAction"},
1867
- "Rules":{"shape":"ActivatedRules"}
1868
- }
1869
- },
1870
- "WebACLSummaries":{
1871
- "type":"list",
1872
- "member":{"shape":"WebACLSummary"}
1873
- },
1874
- "WebACLSummary":{
1875
- "type":"structure",
1876
- "required":[
1877
- "WebACLId",
1878
- "Name"
1879
- ],
1880
- "members":{
1881
- "WebACLId":{"shape":"ResourceId"},
1882
- "Name":{"shape":"ResourceName"}
1883
- }
1884
- },
1885
- "WebACLUpdate":{
1886
- "type":"structure",
1887
- "required":[
1888
- "Action",
1889
- "ActivatedRule"
1890
- ],
1891
- "members":{
1892
- "Action":{"shape":"ChangeAction"},
1893
- "ActivatedRule":{"shape":"ActivatedRule"}
1894
- }
1895
- },
1896
- "WebACLUpdates":{
1897
- "type":"list",
1898
- "member":{"shape":"WebACLUpdate"}
1899
- },
1900
- "XssMatchSet":{
1901
- "type":"structure",
1902
- "required":[
1903
- "XssMatchSetId",
1904
- "XssMatchTuples"
1905
- ],
1906
- "members":{
1907
- "XssMatchSetId":{"shape":"ResourceId"},
1908
- "Name":{"shape":"ResourceName"},
1909
- "XssMatchTuples":{"shape":"XssMatchTuples"}
1910
- }
1911
- },
1912
- "XssMatchSetSummaries":{
1913
- "type":"list",
1914
- "member":{"shape":"XssMatchSetSummary"}
1915
- },
1916
- "XssMatchSetSummary":{
1917
- "type":"structure",
1918
- "required":[
1919
- "XssMatchSetId",
1920
- "Name"
1921
- ],
1922
- "members":{
1923
- "XssMatchSetId":{"shape":"ResourceId"},
1924
- "Name":{"shape":"ResourceName"}
1925
- }
1926
- },
1927
- "XssMatchSetUpdate":{
1928
- "type":"structure",
1929
- "required":[
1930
- "Action",
1931
- "XssMatchTuple"
1932
- ],
1933
- "members":{
1934
- "Action":{"shape":"ChangeAction"},
1935
- "XssMatchTuple":{"shape":"XssMatchTuple"}
1936
- }
1937
- },
1938
- "XssMatchSetUpdates":{
1939
- "type":"list",
1940
- "member":{"shape":"XssMatchSetUpdate"}
1941
- },
1942
- "XssMatchTuple":{
1943
- "type":"structure",
1944
- "required":[
1945
- "FieldToMatch",
1946
- "TextTransformation"
1947
- ],
1948
- "members":{
1949
- "FieldToMatch":{"shape":"FieldToMatch"},
1950
- "TextTransformation":{"shape":"TextTransformation"}
1951
- }
1952
- },
1953
- "XssMatchTuples":{
1954
- "type":"list",
1955
- "member":{"shape":"XssMatchTuple"}
1956
- },
1957
- "errorMessage":{"type":"string"}
1958
- }
1959
- }