You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Module: Aws::WAF
- Defined in:
- (unknown)
Overview
This module provides a client for making API requests to AWS WAF.
Aws::WAF::Client
The Client class provides one-to-one mapping for each API operation.
waf = Aws::WAF::Client.new(region: 'us-east-1')
waf.operation_names
#=> [:create_byte_match_set, :create_geo_match_set, :create_ip_set, :create_rate_based_rule, ...]
Each API operation method accepts a hash of request parameters and returns a response object.
resp = waf.create_byte_match_set(params)
See Client for more information.
Aws::WAF::Errors
Errors returned from AWS WAF are defined in the Errors module and extend Errors::ServiceError.
begin
# do stuff
rescue Aws::WAF::Errors::ServiceError
# rescues all errors returned by AWS WAF
end
See Errors for more information.