The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Paws::WAFV2 - Perl Interface to AWS AWS WAFV2

SYNOPSIS

  use Paws;

  my $obj = Paws->service('WAFV2');
  my $res = $obj->Method(
    Arg1 => $val1,
    Arg2 => [ 'V1', 'V2' ],
    # if Arg3 is an object, the HashRef will be used as arguments to the constructor
    # of the arguments type
    Arg3 => { Att1 => 'Val1' },
    # if Arg4 is an array of objects, the HashRefs will be passed as arguments to
    # the constructor of the arguments type
    Arg4 => [ { Att1 => 'Val1'  }, { Att1 => 'Val2' } ],
  );

DESCRIPTION

WAF

This is the latest version of the WAF API, released in November, 2019. The names of the entities that you use to access this API, like endpoints and namespaces, all have the versioning information added, like "V2" or "v2", to distinguish from the prior version. We recommend migrating your resources to this version, because it has a number of significant improvements.

If you used WAF prior to this release, you can't use this WAFV2 API to access any WAF resources that you created before. You can access your old rules, web ACLs, and other WAF resources only through the WAF Classic APIs. The WAF Classic APIs have retained the prior names, endpoints, and namespaces.

For information, including how to migrate your WAF resources to this version, see the WAF Developer Guide (https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html).

WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to Amazon CloudFront, an Amazon API Gateway REST API, an Application Load Balancer, or an AppSync GraphQL API. WAF also lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, the Amazon API Gateway REST API, CloudFront distribution, the Application Load Balancer, or the AppSync GraphQL API responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You also can configure CloudFront to return a custom error page when a request is blocked.

This API guide is for developers who need detailed information about WAF API actions, data types, and errors. For detailed information about WAF features and an overview of how to use WAF, see the WAF Developer Guide (https://docs.aws.amazon.com/waf/latest/developerguide/).

You can make calls using the endpoints listed in Amazon Web Services Service Endpoints for WAF (https://docs.aws.amazon.com/general/latest/gr/rande.html#waf_region).

  • For regional applications, you can use any of the endpoints in the list. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, or an AppSync GraphQL API.

  • For Amazon CloudFront applications, you must use the API endpoint listed for US East (N. Virginia): us-east-1.

Alternatively, you can use one of the Amazon Web Services SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see Amazon Web Services SDKs (http://aws.amazon.com/tools/#SDKs).

We currently provide two versions of the WAF API: this API and the prior versions, the classic WAF APIs. This new API provides the same functionality as the older versions, with the following major improvements:

  • You use one API for both global and regional applications. Where you need to distinguish the scope, you specify a Scope parameter and set it to CLOUDFRONT or REGIONAL.

  • You can define a web ACL or rule group with a single call, and update it with a single call. You define all rule specifications in JSON format, and pass them to your rule group or web ACL calls.

  • The limits WAF places on the use of rules more closely reflects the cost of running each type of rule. Rule groups include capacity settings, so you know the maximum cost of a rule group when you use it.

For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/wafv2-2019-07-29

METHODS

AssociateWebACL

ResourceArn => Str
WebACLArn => Str

Each argument is described in detail in: Paws::WAFV2::AssociateWebACL

Returns: a Paws::WAFV2::AssociateWebACLResponse instance

Associates a web ACL with a regional application resource, to protect the resource. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, or an AppSync GraphQL API.

For Amazon CloudFront, don't use this call. Instead, use your CloudFront distribution configuration. To associate a web ACL, in the CloudFront call UpdateDistribution, set the web ACL ID to the Amazon Resource Name (ARN) of the web ACL. For information, see UpdateDistribution (https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_UpdateDistribution.html).

CheckCapacity

Rules => ArrayRef[Paws::WAFV2::Rule]
Scope => Str

Each argument is described in detail in: Paws::WAFV2::CheckCapacity

Returns: a Paws::WAFV2::CheckCapacityResponse instance

Returns the web ACL capacity unit (WCU) requirements for a specified scope and set of rules. You can use this to check the capacity requirements for the rules you want to use in a RuleGroup or WebACL.

WAF uses WCUs to calculate and control the operating resources that are used to run your rules, rule groups, and web ACLs. WAF calculates capacity differently for each rule type, to reflect the relative cost of each rule. Simple rules that cost little to run use fewer WCUs than more complex rules that use more processing power. Rule group capacity is fixed at creation, which helps users plan their web ACL WCU usage when they use a rule group. The WCU limit for web ACLs is 1,500.

CreateIPSet

Addresses => ArrayRef[Str|Undef]
IPAddressVersion => Str
Name => Str
Scope => Str
[Description => Str]
[Tags => ArrayRef[Paws::WAFV2::Tag]]

Each argument is described in detail in: Paws::WAFV2::CreateIPSet

Returns: a Paws::WAFV2::CreateIPSetResponse instance

Creates an IPSet, which you use to identify web requests that originate from specific IP addresses or ranges of IP addresses. For example, if you're receiving a lot of requests from a ranges of IP addresses, you can configure WAF to block them using an IPSet that lists those IP addresses.

CreateRegexPatternSet

Name => Str
RegularExpressionList => ArrayRef[Paws::WAFV2::Regex]
Scope => Str
[Description => Str]
[Tags => ArrayRef[Paws::WAFV2::Tag]]

Each argument is described in detail in: Paws::WAFV2::CreateRegexPatternSet

Returns: a Paws::WAFV2::CreateRegexPatternSetResponse instance

Creates a RegexPatternSet, which you reference in a RegexPatternSetReferenceStatement, to have WAF inspect a web request component for the specified patterns.

CreateRuleGroup

Capacity => Int
Name => Str
Scope => Str
VisibilityConfig => Paws::WAFV2::VisibilityConfig
[CustomResponseBodies => Paws::WAFV2::CustomResponseBodies]
[Description => Str]
[Rules => ArrayRef[Paws::WAFV2::Rule]]
[Tags => ArrayRef[Paws::WAFV2::Tag]]

Each argument is described in detail in: Paws::WAFV2::CreateRuleGroup

Returns: a Paws::WAFV2::CreateRuleGroupResponse instance

Creates a RuleGroup per the specifications provided.

A rule group defines a collection of rules to inspect and control web requests that you can use in a WebACL. When you create a rule group, you define an immutable capacity limit. If you update a rule group, you must stay within the capacity. This allows others to reuse the rule group with confidence in its capacity requirements.

CreateWebACL

DefaultAction => Paws::WAFV2::DefaultAction
Name => Str
Scope => Str
VisibilityConfig => Paws::WAFV2::VisibilityConfig
[CustomResponseBodies => Paws::WAFV2::CustomResponseBodies]
[Description => Str]
[Rules => ArrayRef[Paws::WAFV2::Rule]]
[Tags => ArrayRef[Paws::WAFV2::Tag]]

Each argument is described in detail in: Paws::WAFV2::CreateWebACL

Returns: a Paws::WAFV2::CreateWebACLResponse instance

Creates a WebACL per the specifications provided.

A web ACL defines a collection of rules to use to inspect and control web requests. Each rule has an action defined (allow, block, or count) for requests that match the statement of the rule. In the web ACL, you assign a default action to take (allow, block) for any request that does not match any of the rules. The rules in a web ACL can be a combination of the types Rule, RuleGroup, and managed rule group. You can associate a web ACL with one or more Amazon Web Services resources to protect. The resources can be an Amazon CloudFront distribution, an Amazon API Gateway REST API, an Application Load Balancer, or an AppSync GraphQL API.

DeleteFirewallManagerRuleGroups

WebACLArn => Str
WebACLLockToken => Str

Each argument is described in detail in: Paws::WAFV2::DeleteFirewallManagerRuleGroups

Returns: a Paws::WAFV2::DeleteFirewallManagerRuleGroupsResponse instance

Deletes all rule groups that are managed by Firewall Manager for the specified web ACL.

You can only use this if ManagedByFirewallManager is false in the specified WebACL.

DeleteIPSet

Id => Str
LockToken => Str
Name => Str
Scope => Str

Each argument is described in detail in: Paws::WAFV2::DeleteIPSet

Returns: a Paws::WAFV2::DeleteIPSetResponse instance

Deletes the specified IPSet.

DeleteLoggingConfiguration

ResourceArn => Str

Each argument is described in detail in: Paws::WAFV2::DeleteLoggingConfiguration

Returns: a Paws::WAFV2::DeleteLoggingConfigurationResponse instance

Deletes the LoggingConfiguration from the specified web ACL.

DeletePermissionPolicy

ResourceArn => Str

Each argument is described in detail in: Paws::WAFV2::DeletePermissionPolicy

Returns: a Paws::WAFV2::DeletePermissionPolicyResponse instance

Permanently deletes an IAM policy from the specified rule group.

You must be the owner of the rule group to perform this operation.

DeleteRegexPatternSet

Id => Str
LockToken => Str
Name => Str
Scope => Str

Each argument is described in detail in: Paws::WAFV2::DeleteRegexPatternSet

Returns: a Paws::WAFV2::DeleteRegexPatternSetResponse instance

Deletes the specified RegexPatternSet.

DeleteRuleGroup

Id => Str
LockToken => Str
Name => Str
Scope => Str

Each argument is described in detail in: Paws::WAFV2::DeleteRuleGroup

Returns: a Paws::WAFV2::DeleteRuleGroupResponse instance

Deletes the specified RuleGroup.

DeleteWebACL

Id => Str
LockToken => Str
Name => Str
Scope => Str

Each argument is described in detail in: Paws::WAFV2::DeleteWebACL

Returns: a Paws::WAFV2::DeleteWebACLResponse instance

Deletes the specified WebACL.

You can only use this if ManagedByFirewallManager is false in the specified WebACL.

DescribeManagedRuleGroup

Name => Str
Scope => Str
VendorName => Str

Each argument is described in detail in: Paws::WAFV2::DescribeManagedRuleGroup

Returns: a Paws::WAFV2::DescribeManagedRuleGroupResponse instance

Provides high-level information for a managed rule group, including descriptions of the rules.

DisassociateWebACL

ResourceArn => Str

Each argument is described in detail in: Paws::WAFV2::DisassociateWebACL

Returns: a Paws::WAFV2::DisassociateWebACLResponse instance

Disassociates a web ACL from a regional application resource. A regional application can be an Application Load Balancer (ALB), an Amazon API Gateway REST API, or an AppSync GraphQL API.

For Amazon CloudFront, don't use this call. Instead, use your CloudFront distribution configuration. To disassociate a web ACL, provide an empty web ACL ID in the CloudFront call UpdateDistribution. For information, see UpdateDistribution (https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_UpdateDistribution.html).

GetIPSet

Id => Str
Name => Str
Scope => Str

Each argument is described in detail in: Paws::WAFV2::GetIPSet

Returns: a Paws::WAFV2::GetIPSetResponse instance

Retrieves the specified IPSet.

GetLoggingConfiguration

ResourceArn => Str

Each argument is described in detail in: Paws::WAFV2::GetLoggingConfiguration

Returns: a Paws::WAFV2::GetLoggingConfigurationResponse instance

Returns the LoggingConfiguration for the specified web ACL.

GetPermissionPolicy

ResourceArn => Str

Each argument is described in detail in: Paws::WAFV2::GetPermissionPolicy

Returns: a Paws::WAFV2::GetPermissionPolicyResponse instance

Returns the IAM policy that is attached to the specified rule group.

You must be the owner of the rule group to perform this operation.

GetRateBasedStatementManagedKeys

RuleName => Str
Scope => Str
WebACLId => Str
WebACLName => Str

Each argument is described in detail in: Paws::WAFV2::GetRateBasedStatementManagedKeys

Returns: a Paws::WAFV2::GetRateBasedStatementManagedKeysResponse instance

Retrieves the keys that are currently blocked by a rate-based rule. The maximum number of managed keys that can be blocked for a single rate-based rule is 10,000. If more than 10,000 addresses exceed the rate limit, those with the highest rates are blocked.

GetRegexPatternSet

Id => Str
Name => Str
Scope => Str

Each argument is described in detail in: Paws::WAFV2::GetRegexPatternSet

Returns: a Paws::WAFV2::GetRegexPatternSetResponse instance

Retrieves the specified RegexPatternSet.

GetRuleGroup

[ARN => Str]
[Id => Str]
[Name => Str]
[Scope => Str]

Each argument is described in detail in: Paws::WAFV2::GetRuleGroup

Returns: a Paws::WAFV2::GetRuleGroupResponse instance

Retrieves the specified RuleGroup.

GetSampledRequests

MaxItems => Int
RuleMetricName => Str
Scope => Str
TimeWindow => Paws::WAFV2::TimeWindow
WebAclArn => Str

Each argument is described in detail in: Paws::WAFV2::GetSampledRequests

Returns: a Paws::WAFV2::GetSampledRequestsResponse instance

Gets detailed information about a specified number of requests--a sample--that WAF randomly selects from among the first 5,000 requests that your Amazon Web Services resource received during a time range that you choose. You can specify a sample size of up to 500 requests, and you can specify any time range in the previous three hours.

GetSampledRequests returns a time range, which is usually the time range that you specified. However, if your resource (such as a CloudFront distribution) received 5,000 requests before the specified time range elapsed, GetSampledRequests returns an updated time range. This new time range indicates the actual period during which WAF selected the requests in the sample.

GetWebACL

Id => Str
Name => Str
Scope => Str

Each argument is described in detail in: Paws::WAFV2::GetWebACL

Returns: a Paws::WAFV2::GetWebACLResponse instance

Retrieves the specified WebACL.

GetWebACLForResource

ResourceArn => Str

Each argument is described in detail in: Paws::WAFV2::GetWebACLForResource

Returns: a Paws::WAFV2::GetWebACLForResourceResponse instance

Retrieves the WebACL for the specified resource.

ListAvailableManagedRuleGroups

Scope => Str
[Limit => Int]
[NextMarker => Str]

Each argument is described in detail in: Paws::WAFV2::ListAvailableManagedRuleGroups

Returns: a Paws::WAFV2::ListAvailableManagedRuleGroupsResponse instance

Retrieves an array of managed rule groups that are available for you to use. This list includes all Amazon Web Services Managed Rules rule groups and the Marketplace managed rule groups that you're subscribed to.

ListIPSets

Scope => Str
[Limit => Int]
[NextMarker => Str]

Each argument is described in detail in: Paws::WAFV2::ListIPSets

Returns: a Paws::WAFV2::ListIPSetsResponse instance

Retrieves an array of IPSetSummary objects for the IP sets that you manage.

ListLoggingConfigurations

[Limit => Int]
[NextMarker => Str]
[Scope => Str]

Each argument is described in detail in: Paws::WAFV2::ListLoggingConfigurations

Returns: a Paws::WAFV2::ListLoggingConfigurationsResponse instance

Retrieves an array of your LoggingConfiguration objects.

ListRegexPatternSets

Scope => Str
[Limit => Int]
[NextMarker => Str]

Each argument is described in detail in: Paws::WAFV2::ListRegexPatternSets

Returns: a Paws::WAFV2::ListRegexPatternSetsResponse instance

Retrieves an array of RegexPatternSetSummary objects for the regex pattern sets that you manage.

ListResourcesForWebACL

WebACLArn => Str
[ResourceType => Str]

Each argument is described in detail in: Paws::WAFV2::ListResourcesForWebACL

Returns: a Paws::WAFV2::ListResourcesForWebACLResponse instance

Retrieves an array of the Amazon Resource Names (ARNs) for the regional resources that are associated with the specified web ACL. If you want the list of Amazon CloudFront resources, use the CloudFront call ListDistributionsByWebACLId.

ListRuleGroups

Scope => Str
[Limit => Int]
[NextMarker => Str]

Each argument is described in detail in: Paws::WAFV2::ListRuleGroups

Returns: a Paws::WAFV2::ListRuleGroupsResponse instance

Retrieves an array of RuleGroupSummary objects for the rule groups that you manage.

ListTagsForResource

ResourceARN => Str
[Limit => Int]
[NextMarker => Str]

Each argument is described in detail in: Paws::WAFV2::ListTagsForResource

Returns: a Paws::WAFV2::ListTagsForResourceResponse instance

Retrieves the TagInfoForResource for the specified resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.

You can tag the Amazon Web Services resources that you manage through WAF: web ACLs, rule groups, IP sets, and regex pattern sets. You can't manage or view tags through the WAF console.

ListWebACLs

Scope => Str
[Limit => Int]
[NextMarker => Str]

Each argument is described in detail in: Paws::WAFV2::ListWebACLs

Returns: a Paws::WAFV2::ListWebACLsResponse instance

Retrieves an array of WebACLSummary objects for the web ACLs that you manage.

PutLoggingConfiguration

LoggingConfiguration => Paws::WAFV2::LoggingConfiguration

Each argument is described in detail in: Paws::WAFV2::PutLoggingConfiguration

Returns: a Paws::WAFV2::PutLoggingConfigurationResponse instance

Enables the specified LoggingConfiguration, to start logging from a web ACL, according to the configuration provided.

You can access information about all traffic that WAF inspects using the following steps:

  1. Create an Amazon Kinesis Data Firehose.

    Create the data firehose with a PUT source and in the Region that you are operating. If you are capturing logs for Amazon CloudFront, always create the firehose in US East (N. Virginia).

    Give the data firehose a name that starts with the prefix aws-waf-logs-. For example, aws-waf-logs-us-east-2-analytics.

    Do not create the data firehose using a Kinesis stream as your source.

  2. Associate that firehose to your web ACL using a PutLoggingConfiguration request.

When you successfully enable logging using a PutLoggingConfiguration request, WAF will create a service linked role with the necessary permissions to write logs to the Amazon Kinesis Data Firehose. For more information, see Logging Web ACL Traffic Information (https://docs.aws.amazon.com/waf/latest/developerguide/logging.html) in the WAF Developer Guide.

This operation completely replaces the mutable specifications that you already have for the logging configuration with the ones that you provide to this call. To modify the logging configuration, retrieve it by calling GetLoggingConfiguration, update the settings as needed, and then provide the complete logging configuration specification to this call.

PutPermissionPolicy

Policy => Str
ResourceArn => Str

Each argument is described in detail in: Paws::WAFV2::PutPermissionPolicy

Returns: a Paws::WAFV2::PutPermissionPolicyResponse instance

Attaches an IAM policy to the specified resource. Use this to share a rule group across accounts.

You must be the owner of the rule group to perform this operation.

This action is subject to the following restrictions:

  • You can attach only one policy with each PutPermissionPolicy request.

  • The ARN in the request must be a valid WAF RuleGroup ARN and the rule group must exist in the same Region.

  • The user making the request must be the owner of the rule group.

TagResource

ResourceARN => Str
Tags => ArrayRef[Paws::WAFV2::Tag]

Each argument is described in detail in: Paws::WAFV2::TagResource

Returns: a Paws::WAFV2::TagResourceResponse instance

Associates tags with the specified Amazon Web Services resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource.

You can tag the Amazon Web Services resources that you manage through WAF: web ACLs, rule groups, IP sets, and regex pattern sets. You can't manage or view tags through the WAF console.

UntagResource

ResourceARN => Str
TagKeys => ArrayRef[Str|Undef]

Each argument is described in detail in: Paws::WAFV2::UntagResource

Returns: a Paws::WAFV2::UntagResourceResponse instance

Disassociates tags from an Amazon Web Services resource. Tags are key:value pairs that you can associate with Amazon Web Services resources. For example, the tag key might be "customer" and the tag value might be "companyA." You can specify one or more tags to add to each container. You can add up to 50 tags to each Amazon Web Services resource.

UpdateIPSet

Addresses => ArrayRef[Str|Undef]
Id => Str
LockToken => Str
Name => Str
Scope => Str
[Description => Str]

Each argument is described in detail in: Paws::WAFV2::UpdateIPSet

Returns: a Paws::WAFV2::UpdateIPSetResponse instance

Updates the specified IPSet.

This operation completely replaces the mutable specifications that you already have for the IP set with the ones that you provide to this call. To modify the IP set, retrieve it by calling GetIPSet, update the settings as needed, and then provide the complete IP set specification to this call.

UpdateRegexPatternSet

Id => Str
LockToken => Str
Name => Str
RegularExpressionList => ArrayRef[Paws::WAFV2::Regex]
Scope => Str
[Description => Str]

Each argument is described in detail in: Paws::WAFV2::UpdateRegexPatternSet

Returns: a Paws::WAFV2::UpdateRegexPatternSetResponse instance

Updates the specified RegexPatternSet.

This operation completely replaces the mutable specifications that you already have for the regex pattern set with the ones that you provide to this call. To modify the regex pattern set, retrieve it by calling GetRegexPatternSet, update the settings as needed, and then provide the complete regex pattern set specification to this call.

UpdateRuleGroup

Id => Str
LockToken => Str
Name => Str
Scope => Str
VisibilityConfig => Paws::WAFV2::VisibilityConfig
[CustomResponseBodies => Paws::WAFV2::CustomResponseBodies]
[Description => Str]
[Rules => ArrayRef[Paws::WAFV2::Rule]]

Each argument is described in detail in: Paws::WAFV2::UpdateRuleGroup

Returns: a Paws::WAFV2::UpdateRuleGroupResponse instance

Updates the specified RuleGroup.

This operation completely replaces the mutable specifications that you already have for the rule group with the ones that you provide to this call. To modify the rule group, retrieve it by calling GetRuleGroup, update the settings as needed, and then provide the complete rule group specification to this call.

A rule group defines a collection of rules to inspect and control web requests that you can use in a WebACL. When you create a rule group, you define an immutable capacity limit. If you update a rule group, you must stay within the capacity. This allows others to reuse the rule group with confidence in its capacity requirements.

UpdateWebACL

DefaultAction => Paws::WAFV2::DefaultAction
Id => Str
LockToken => Str
Name => Str
Scope => Str
VisibilityConfig => Paws::WAFV2::VisibilityConfig
[CustomResponseBodies => Paws::WAFV2::CustomResponseBodies]
[Description => Str]
[Rules => ArrayRef[Paws::WAFV2::Rule]]

Each argument is described in detail in: Paws::WAFV2::UpdateWebACL

Returns: a Paws::WAFV2::UpdateWebACLResponse instance

Updates the specified WebACL.

This operation completely replaces the mutable specifications that you already have for the web ACL with the ones that you provide to this call. To modify the web ACL, retrieve it by calling GetWebACL, update the settings as needed, and then provide the complete web ACL specification to this call.

A web ACL defines a collection of rules to use to inspect and control web requests. Each rule has an action defined (allow, block, or count) for requests that match the statement of the rule. In the web ACL, you assign a default action to take (allow, block) for any request that does not match any of the rules. The rules in a web ACL can be a combination of the types Rule, RuleGroup, and managed rule group. You can associate a web ACL with one or more Amazon Web Services resources to protect. The resources can be an Amazon CloudFront distribution, an Amazon API Gateway REST API, an Application Load Balancer, or an AppSync GraphQL API.

PAGINATORS

Paginator methods are helpers that repetively call methods that return partial results

SEE ALSO

This service class forms part of Paws

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues