public static interface WebACL.Builder extends SdkPojo, CopyableBuilder<WebACL.Builder,WebACL>
| Modifier and Type | Method and Description |
|---|---|
WebACL.Builder |
arn(String arn)
The Amazon Resource Name (ARN) of the web ACL that you want to associate with the resource.
|
WebACL.Builder |
associationConfig(AssociationConfig associationConfig)
Specifies custom configurations for the associations between the web ACL and protected resources.
|
default WebACL.Builder |
associationConfig(Consumer<AssociationConfig.Builder> associationConfig)
Specifies custom configurations for the associations between the web ACL and protected resources.
|
WebACL.Builder |
capacity(Long capacity)
The web ACL capacity units (WCUs) currently being used by this web ACL.
|
WebACL.Builder |
captchaConfig(CaptchaConfig captchaConfig)
Specifies how WAF should handle
CAPTCHA evaluations for rules that don't have their own
CaptchaConfig settings. |
default WebACL.Builder |
captchaConfig(Consumer<CaptchaConfig.Builder> captchaConfig)
Specifies how WAF should handle
CAPTCHA evaluations for rules that don't have their own
CaptchaConfig settings. |
WebACL.Builder |
challengeConfig(ChallengeConfig challengeConfig)
Specifies how WAF should handle challenge evaluations for rules that don't have their own
ChallengeConfig settings. |
default WebACL.Builder |
challengeConfig(Consumer<ChallengeConfig.Builder> challengeConfig)
Specifies how WAF should handle challenge evaluations for rules that don't have their own
ChallengeConfig settings. |
WebACL.Builder |
customResponseBodies(Map<String,CustomResponseBody> customResponseBodies)
A map of custom response keys and content bodies.
|
default WebACL.Builder |
defaultAction(Consumer<DefaultAction.Builder> defaultAction)
The action to perform if none of the
Rules contained in the WebACL match. |
WebACL.Builder |
defaultAction(DefaultAction defaultAction)
The action to perform if none of the
Rules contained in the WebACL match. |
WebACL.Builder |
description(String description)
A description of the web ACL that helps with identification.
|
WebACL.Builder |
id(String id)
A unique identifier for the
WebACL. |
WebACL.Builder |
labelNamespace(String labelNamespace)
The label namespace prefix for this web ACL.
|
WebACL.Builder |
managedByFirewallManager(Boolean managedByFirewallManager)
Indicates whether this web ACL is managed by Firewall Manager.
|
WebACL.Builder |
name(String name)
The name of the web ACL.
|
WebACL.Builder |
postProcessFirewallManagerRuleGroups(Collection<FirewallManagerRuleGroup> postProcessFirewallManagerRuleGroups)
The last set of rules for WAF to process in the web ACL.
|
WebACL.Builder |
postProcessFirewallManagerRuleGroups(Consumer<FirewallManagerRuleGroup.Builder>... postProcessFirewallManagerRuleGroups)
The last set of rules for WAF to process in the web ACL.
|
WebACL.Builder |
postProcessFirewallManagerRuleGroups(FirewallManagerRuleGroup... postProcessFirewallManagerRuleGroups)
The last set of rules for WAF to process in the web ACL.
|
WebACL.Builder |
preProcessFirewallManagerRuleGroups(Collection<FirewallManagerRuleGroup> preProcessFirewallManagerRuleGroups)
The first set of rules for WAF to process in the web ACL.
|
WebACL.Builder |
preProcessFirewallManagerRuleGroups(Consumer<FirewallManagerRuleGroup.Builder>... preProcessFirewallManagerRuleGroups)
The first set of rules for WAF to process in the web ACL.
|
WebACL.Builder |
preProcessFirewallManagerRuleGroups(FirewallManagerRuleGroup... preProcessFirewallManagerRuleGroups)
The first set of rules for WAF to process in the web ACL.
|
WebACL.Builder |
rules(Collection<Rule> rules)
The Rule statements used to identify the web requests that you want to manage.
|
WebACL.Builder |
rules(Consumer<Rule.Builder>... rules)
The Rule statements used to identify the web requests that you want to manage.
|
WebACL.Builder |
rules(Rule... rules)
The Rule statements used to identify the web requests that you want to manage.
|
WebACL.Builder |
tokenDomains(Collection<String> tokenDomains)
Specifies the domains that WAF should accept in a web request token.
|
WebACL.Builder |
tokenDomains(String... tokenDomains)
Specifies the domains that WAF should accept in a web request token.
|
default WebACL.Builder |
visibilityConfig(Consumer<VisibilityConfig.Builder> visibilityConfig)
Defines and enables Amazon CloudWatch metrics and web request sample collection.
|
WebACL.Builder |
visibilityConfig(VisibilityConfig visibilityConfig)
Defines and enables Amazon CloudWatch metrics and web request sample collection.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildWebACL.Builder name(String name)
The name of the web ACL. You cannot change the name of a web ACL after you create it.
name - The name of the web ACL. You cannot change the name of a web ACL after you create it.WebACL.Builder id(String id)
A unique identifier for the WebACL. This ID is returned in the responses to create and list
commands. You use this ID to do things like get, update, and delete a WebACL.
id - A unique identifier for the WebACL. This ID is returned in the responses to create and
list commands. You use this ID to do things like get, update, and delete a WebACL.WebACL.Builder arn(String arn)
The Amazon Resource Name (ARN) of the web ACL that you want to associate with the resource.
arn - The Amazon Resource Name (ARN) of the web ACL that you want to associate with the resource.WebACL.Builder defaultAction(DefaultAction defaultAction)
The action to perform if none of the Rules contained in the WebACL match.
defaultAction - The action to perform if none of the Rules contained in the WebACL match.default WebACL.Builder defaultAction(Consumer<DefaultAction.Builder> defaultAction)
The action to perform if none of the Rules contained in the WebACL match.
DefaultAction.Builder avoiding the need
to create one manually via DefaultAction.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to defaultAction(DefaultAction).
defaultAction - a consumer that will call methods on DefaultAction.BuilderdefaultAction(DefaultAction)WebACL.Builder description(String description)
A description of the web ACL that helps with identification.
description - A description of the web ACL that helps with identification.WebACL.Builder rules(Collection<Rule> rules)
The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.
rules - The Rule statements used to identify the web requests that you want to manage. Each rule
includes one top-level statement that WAF uses to identify matching web requests, and parameters that
govern how WAF handles them.WebACL.Builder rules(Rule... rules)
The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.
rules - The Rule statements used to identify the web requests that you want to manage. Each rule
includes one top-level statement that WAF uses to identify matching web requests, and parameters that
govern how WAF handles them.WebACL.Builder rules(Consumer<Rule.Builder>... rules)
The Rule statements used to identify the web requests that you want to manage. Each rule includes one top-level statement that WAF uses to identify matching web requests, and parameters that govern how WAF handles them.
This is a convenience method that creates an instance of theRule.Builder avoiding the need to create one manually via
Rule.builder().
When the Consumer completes, SdkBuilder.build()
is called immediately and its result is passed to #rules(List.
rules - a consumer that will call methods on Rule.Builder#rules(java.util.Collection) WebACL.Builder visibilityConfig(VisibilityConfig visibilityConfig)
Defines and enables Amazon CloudWatch metrics and web request sample collection.
visibilityConfig - Defines and enables Amazon CloudWatch metrics and web request sample collection.default WebACL.Builder visibilityConfig(Consumer<VisibilityConfig.Builder> visibilityConfig)
Defines and enables Amazon CloudWatch metrics and web request sample collection.
This is a convenience method that creates an instance of theVisibilityConfig.Builder avoiding the
need to create one manually via VisibilityConfig.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to visibilityConfig(VisibilityConfig).
visibilityConfig - a consumer that will call methods on VisibilityConfig.BuildervisibilityConfig(VisibilityConfig)WebACL.Builder capacity(Long capacity)
The web ACL capacity units (WCUs) currently being used by this web ACL.
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. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.
capacity - The web ACL capacity units (WCUs) currently being used by this web ACL.
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. For more information, see WAF web ACL capacity units (WCU) in the WAF Developer Guide.
WebACL.Builder preProcessFirewallManagerRuleGroups(Collection<FirewallManagerRuleGroup> preProcessFirewallManagerRuleGroups)
The first set of rules for WAF to process in the web ACL. This is defined in an Firewall Manager WAF policy and contains only rule group references. You can't alter these. Any rules and rule groups that you define for the web ACL are prioritized after these.
In the Firewall Manager WAF policy, the Firewall Manager administrator can define a set of rule groups to run first in the web ACL and a set of rule groups to run last. Within each set, the administrator prioritizes the rule groups, to determine their relative processing order.
preProcessFirewallManagerRuleGroups - The first set of rules for WAF to process in the web ACL. This is defined in an Firewall Manager WAF
policy and contains only rule group references. You can't alter these. Any rules and rule groups that
you define for the web ACL are prioritized after these.
In the Firewall Manager WAF policy, the Firewall Manager administrator can define a set of rule groups to run first in the web ACL and a set of rule groups to run last. Within each set, the administrator prioritizes the rule groups, to determine their relative processing order.
WebACL.Builder preProcessFirewallManagerRuleGroups(FirewallManagerRuleGroup... preProcessFirewallManagerRuleGroups)
The first set of rules for WAF to process in the web ACL. This is defined in an Firewall Manager WAF policy and contains only rule group references. You can't alter these. Any rules and rule groups that you define for the web ACL are prioritized after these.
In the Firewall Manager WAF policy, the Firewall Manager administrator can define a set of rule groups to run first in the web ACL and a set of rule groups to run last. Within each set, the administrator prioritizes the rule groups, to determine their relative processing order.
preProcessFirewallManagerRuleGroups - The first set of rules for WAF to process in the web ACL. This is defined in an Firewall Manager WAF
policy and contains only rule group references. You can't alter these. Any rules and rule groups that
you define for the web ACL are prioritized after these.
In the Firewall Manager WAF policy, the Firewall Manager administrator can define a set of rule groups to run first in the web ACL and a set of rule groups to run last. Within each set, the administrator prioritizes the rule groups, to determine their relative processing order.
WebACL.Builder preProcessFirewallManagerRuleGroups(Consumer<FirewallManagerRuleGroup.Builder>... preProcessFirewallManagerRuleGroups)
The first set of rules for WAF to process in the web ACL. This is defined in an Firewall Manager WAF policy and contains only rule group references. You can't alter these. Any rules and rule groups that you define for the web ACL are prioritized after these.
In the Firewall Manager WAF policy, the Firewall Manager administrator can define a set of rule groups to run first in the web ACL and a set of rule groups to run last. Within each set, the administrator prioritizes the rule groups, to determine their relative processing order.
This is a convenience method that creates an instance of theFirewallManagerRuleGroup.Builder avoiding the need to
create one manually via
FirewallManagerRuleGroup.builder().
When the Consumer completes,
SdkBuilder.build() is called
immediately and its result is passed to #preProcessFirewallManagerRuleGroups(List.
preProcessFirewallManagerRuleGroups - a consumer that will call methods on
FirewallManagerRuleGroup.Builder#preProcessFirewallManagerRuleGroups(java.util.Collection) WebACL.Builder postProcessFirewallManagerRuleGroups(Collection<FirewallManagerRuleGroup> postProcessFirewallManagerRuleGroups)
The last set of rules for WAF to process in the web ACL. This is defined in an Firewall Manager WAF policy and contains only rule group references. You can't alter these. Any rules and rule groups that you define for the web ACL are prioritized before these.
In the Firewall Manager WAF policy, the Firewall Manager administrator can define a set of rule groups to run first in the web ACL and a set of rule groups to run last. Within each set, the administrator prioritizes the rule groups, to determine their relative processing order.
postProcessFirewallManagerRuleGroups - The last set of rules for WAF to process in the web ACL. This is defined in an Firewall Manager WAF
policy and contains only rule group references. You can't alter these. Any rules and rule groups that
you define for the web ACL are prioritized before these.
In the Firewall Manager WAF policy, the Firewall Manager administrator can define a set of rule groups to run first in the web ACL and a set of rule groups to run last. Within each set, the administrator prioritizes the rule groups, to determine their relative processing order.
WebACL.Builder postProcessFirewallManagerRuleGroups(FirewallManagerRuleGroup... postProcessFirewallManagerRuleGroups)
The last set of rules for WAF to process in the web ACL. This is defined in an Firewall Manager WAF policy and contains only rule group references. You can't alter these. Any rules and rule groups that you define for the web ACL are prioritized before these.
In the Firewall Manager WAF policy, the Firewall Manager administrator can define a set of rule groups to run first in the web ACL and a set of rule groups to run last. Within each set, the administrator prioritizes the rule groups, to determine their relative processing order.
postProcessFirewallManagerRuleGroups - The last set of rules for WAF to process in the web ACL. This is defined in an Firewall Manager WAF
policy and contains only rule group references. You can't alter these. Any rules and rule groups that
you define for the web ACL are prioritized before these.
In the Firewall Manager WAF policy, the Firewall Manager administrator can define a set of rule groups to run first in the web ACL and a set of rule groups to run last. Within each set, the administrator prioritizes the rule groups, to determine their relative processing order.
WebACL.Builder postProcessFirewallManagerRuleGroups(Consumer<FirewallManagerRuleGroup.Builder>... postProcessFirewallManagerRuleGroups)
The last set of rules for WAF to process in the web ACL. This is defined in an Firewall Manager WAF policy and contains only rule group references. You can't alter these. Any rules and rule groups that you define for the web ACL are prioritized before these.
In the Firewall Manager WAF policy, the Firewall Manager administrator can define a set of rule groups to run first in the web ACL and a set of rule groups to run last. Within each set, the administrator prioritizes the rule groups, to determine their relative processing order.
This is a convenience method that creates an instance of theFirewallManagerRuleGroup.Builder avoiding the need to
create one manually via
FirewallManagerRuleGroup.builder().
When the Consumer completes,
SdkBuilder.build() is called
immediately and its result is passed to #postProcessFirewallManagerRuleGroups(List.
postProcessFirewallManagerRuleGroups - a consumer that will call methods on
FirewallManagerRuleGroup.Builder#postProcessFirewallManagerRuleGroups(java.util.Collection) WebACL.Builder managedByFirewallManager(Boolean managedByFirewallManager)
Indicates whether this web ACL is managed by Firewall Manager. If true, then only Firewall Manager can delete the web ACL or any Firewall Manager rule groups in the web ACL.
managedByFirewallManager - Indicates whether this web ACL is managed by Firewall Manager. If true, then only Firewall Manager can
delete the web ACL or any Firewall Manager rule groups in the web ACL.WebACL.Builder labelNamespace(String labelNamespace)
The label namespace prefix for this web ACL. All labels added by rules in this web ACL have this prefix.
The syntax for the label namespace prefix for a web ACL is the following:
awswaf:<account ID>:webacl:<web ACL name>:
When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:
<label namespace>:<label from rule>
labelNamespace - The label namespace prefix for this web ACL. All labels added by rules in this web ACL have this
prefix.
The syntax for the label namespace prefix for a web ACL is the following:
awswaf:<account ID>:webacl:<web ACL name>:
When a rule with a label matches a web request, WAF adds the fully qualified label to the request. A fully qualified label is made up of the label namespace from the rule group or web ACL where the rule is defined and the label from the rule, separated by a colon:
<label namespace>:<label from rule>
WebACL.Builder customResponseBodies(Map<String,CustomResponseBody> customResponseBodies)
A map of custom response keys and content bodies. When you create a rule with a block action, you can send a custom response to the web request. You define these for the web ACL, and then use them in the rules and default actions that you define in the web ACL.
For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.
For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.
customResponseBodies - A map of custom response keys and content bodies. When you create a rule with a block action, you can
send a custom response to the web request. You define these for the web ACL, and then use them in the
rules and default actions that you define in the web ACL.
For information about customizing web requests and responses, see Customizing web requests and responses in WAF in the WAF Developer Guide.
For information about the limits on count and size for custom request and response settings, see WAF quotas in the WAF Developer Guide.
WebACL.Builder captchaConfig(CaptchaConfig captchaConfig)
Specifies how WAF should handle CAPTCHA evaluations for rules that don't have their own
CaptchaConfig settings. If you don't specify this, WAF uses its default settings for
CaptchaConfig.
captchaConfig - Specifies how WAF should handle CAPTCHA evaluations for rules that don't have their own
CaptchaConfig settings. If you don't specify this, WAF uses its default settings for
CaptchaConfig.default WebACL.Builder captchaConfig(Consumer<CaptchaConfig.Builder> captchaConfig)
Specifies how WAF should handle CAPTCHA evaluations for rules that don't have their own
CaptchaConfig settings. If you don't specify this, WAF uses its default settings for
CaptchaConfig.
CaptchaConfig.Builder avoiding the need
to create one manually via CaptchaConfig.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to captchaConfig(CaptchaConfig).
captchaConfig - a consumer that will call methods on CaptchaConfig.BuildercaptchaConfig(CaptchaConfig)WebACL.Builder challengeConfig(ChallengeConfig challengeConfig)
Specifies how WAF should handle challenge evaluations for rules that don't have their own
ChallengeConfig settings. If you don't specify this, WAF uses its default settings for
ChallengeConfig.
challengeConfig - Specifies how WAF should handle challenge evaluations for rules that don't have their own
ChallengeConfig settings. If you don't specify this, WAF uses its default settings for
ChallengeConfig.default WebACL.Builder challengeConfig(Consumer<ChallengeConfig.Builder> challengeConfig)
Specifies how WAF should handle challenge evaluations for rules that don't have their own
ChallengeConfig settings. If you don't specify this, WAF uses its default settings for
ChallengeConfig.
ChallengeConfig.Builder avoiding the
need to create one manually via ChallengeConfig.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to challengeConfig(ChallengeConfig).
challengeConfig - a consumer that will call methods on ChallengeConfig.BuilderchallengeConfig(ChallengeConfig)WebACL.Builder tokenDomains(Collection<String> tokenDomains)
Specifies the domains that WAF should accept in a web request token. This enables the use of tokens across multiple protected websites. When WAF provides a token, it uses the domain of the Amazon Web Services resource that the web ACL is protecting. If you don't specify a list of token domains, WAF accepts tokens only for the domain of the protected resource. With a token domain list, WAF accepts the resource's host domain plus all domains in the token domain list, including their prefixed subdomains.
tokenDomains - Specifies the domains that WAF should accept in a web request token. This enables the use of tokens
across multiple protected websites. When WAF provides a token, it uses the domain of the Amazon Web
Services resource that the web ACL is protecting. If you don't specify a list of token domains, WAF
accepts tokens only for the domain of the protected resource. With a token domain list, WAF accepts
the resource's host domain plus all domains in the token domain list, including their prefixed
subdomains.WebACL.Builder tokenDomains(String... tokenDomains)
Specifies the domains that WAF should accept in a web request token. This enables the use of tokens across multiple protected websites. When WAF provides a token, it uses the domain of the Amazon Web Services resource that the web ACL is protecting. If you don't specify a list of token domains, WAF accepts tokens only for the domain of the protected resource. With a token domain list, WAF accepts the resource's host domain plus all domains in the token domain list, including their prefixed subdomains.
tokenDomains - Specifies the domains that WAF should accept in a web request token. This enables the use of tokens
across multiple protected websites. When WAF provides a token, it uses the domain of the Amazon Web
Services resource that the web ACL is protecting. If you don't specify a list of token domains, WAF
accepts tokens only for the domain of the protected resource. With a token domain list, WAF accepts
the resource's host domain plus all domains in the token domain list, including their prefixed
subdomains.WebACL.Builder associationConfig(AssociationConfig associationConfig)
Specifies custom configurations for the associations between the web ACL and protected resources.
Use this to customize the maximum size of the request body that your protected CloudFront distributions forward to WAF for inspection. The default is 16 KB (16,384 bytes).
You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.
associationConfig - Specifies custom configurations for the associations between the web ACL and protected resources.
Use this to customize the maximum size of the request body that your protected CloudFront distributions forward to WAF for inspection. The default is 16 KB (16,384 bytes).
You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.
default WebACL.Builder associationConfig(Consumer<AssociationConfig.Builder> associationConfig)
Specifies custom configurations for the associations between the web ACL and protected resources.
Use this to customize the maximum size of the request body that your protected CloudFront distributions forward to WAF for inspection. The default is 16 KB (16,384 bytes).
You are charged additional fees when your protected resources forward body sizes that are larger than the default. For more information, see WAF Pricing.
AssociationConfig.Builder
avoiding the need to create one manually via AssociationConfig.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to associationConfig(AssociationConfig).
associationConfig - a consumer that will call methods on AssociationConfig.BuilderassociationConfig(AssociationConfig)Copyright © 2023. All rights reserved.