#[non_exhaustive]pub struct Builder { /* private fields */ }Expand description
A builder for Statement
Implementations
sourceimpl Builder
impl Builder
sourcepub fn byte_match_statement(self, input: ByteMatchStatement) -> Self
pub fn byte_match_statement(self, input: ByteMatchStatement) -> Self
A rule statement that defines a string match search for WAF to apply to web requests. The byte match statement provides the bytes to search for, the location in requests that you want WAF to search, and other settings. The bytes to search for are typically a string that corresponds with ASCII characters. In the WAF console and the developer guide, this is refered to as a string match statement.
sourcepub fn set_byte_match_statement(self, input: Option<ByteMatchStatement>) -> Self
pub fn set_byte_match_statement(self, input: Option<ByteMatchStatement>) -> Self
A rule statement that defines a string match search for WAF to apply to web requests. The byte match statement provides the bytes to search for, the location in requests that you want WAF to search, and other settings. The bytes to search for are typically a string that corresponds with ASCII characters. In the WAF console and the developer guide, this is refered to as a string match statement.
sourcepub fn sqli_match_statement(self, input: SqliMatchStatement) -> Self
pub fn sqli_match_statement(self, input: SqliMatchStatement) -> Self
Attackers sometimes insert malicious SQL code into web requests in an effort to extract data from your database. To allow or block web requests that appear to contain malicious SQL code, create one or more SQL injection match conditions. An SQL injection match condition identifies the part of web requests, such as the URI or the query string, that you want WAF to inspect. Later in the process, when you create a web ACL, you specify whether to allow or block requests that appear to contain malicious SQL code.
sourcepub fn set_sqli_match_statement(self, input: Option<SqliMatchStatement>) -> Self
pub fn set_sqli_match_statement(self, input: Option<SqliMatchStatement>) -> Self
Attackers sometimes insert malicious SQL code into web requests in an effort to extract data from your database. To allow or block web requests that appear to contain malicious SQL code, create one or more SQL injection match conditions. An SQL injection match condition identifies the part of web requests, such as the URI or the query string, that you want WAF to inspect. Later in the process, when you create a web ACL, you specify whether to allow or block requests that appear to contain malicious SQL code.
sourcepub fn xss_match_statement(self, input: XssMatchStatement) -> Self
pub fn xss_match_statement(self, input: XssMatchStatement) -> Self
A rule statement that defines a cross-site scripting (XSS) match search for WAF to apply to web requests. XSS attacks are those where the attacker uses vulnerabilities in a benign website as a vehicle to inject malicious client-site scripts into other legitimate web browsers. The XSS match statement provides the location in requests that you want WAF to search and text transformations to use on the search area before WAF searches for character sequences that are likely to be malicious strings.
sourcepub fn set_xss_match_statement(self, input: Option<XssMatchStatement>) -> Self
pub fn set_xss_match_statement(self, input: Option<XssMatchStatement>) -> Self
A rule statement that defines a cross-site scripting (XSS) match search for WAF to apply to web requests. XSS attacks are those where the attacker uses vulnerabilities in a benign website as a vehicle to inject malicious client-site scripts into other legitimate web browsers. The XSS match statement provides the location in requests that you want WAF to search and text transformations to use on the search area before WAF searches for character sequences that are likely to be malicious strings.
sourcepub fn size_constraint_statement(self, input: SizeConstraintStatement) -> Self
pub fn size_constraint_statement(self, input: SizeConstraintStatement) -> Self
A rule statement that compares a number of bytes against the size of a request component, using a comparison operator, such as greater than (>) or less than (<). For example, you can use a size constraint statement to look for query strings that are longer than 100 bytes.
If you configure WAF to inspect the request body, WAF inspects only the first 8192 bytes (8 KB). If the request body for your web requests never exceeds 8192 bytes, you can create a size constraint condition and block requests that have a request body greater than 8192 bytes.
If you choose URI for the value of Part of the request to filter on, the slash (/) in the URI counts as one character. For example, the URI /logo.jpg is nine characters long.
sourcepub fn set_size_constraint_statement(
self,
input: Option<SizeConstraintStatement>
) -> Self
pub fn set_size_constraint_statement(
self,
input: Option<SizeConstraintStatement>
) -> Self
A rule statement that compares a number of bytes against the size of a request component, using a comparison operator, such as greater than (>) or less than (<). For example, you can use a size constraint statement to look for query strings that are longer than 100 bytes.
If you configure WAF to inspect the request body, WAF inspects only the first 8192 bytes (8 KB). If the request body for your web requests never exceeds 8192 bytes, you can create a size constraint condition and block requests that have a request body greater than 8192 bytes.
If you choose URI for the value of Part of the request to filter on, the slash (/) in the URI counts as one character. For example, the URI /logo.jpg is nine characters long.
sourcepub fn geo_match_statement(self, input: GeoMatchStatement) -> Self
pub fn geo_match_statement(self, input: GeoMatchStatement) -> Self
A rule statement used to identify web requests based on country of origin.
sourcepub fn set_geo_match_statement(self, input: Option<GeoMatchStatement>) -> Self
pub fn set_geo_match_statement(self, input: Option<GeoMatchStatement>) -> Self
A rule statement used to identify web requests based on country of origin.
sourcepub fn rule_group_reference_statement(
self,
input: RuleGroupReferenceStatement
) -> Self
pub fn rule_group_reference_statement(
self,
input: RuleGroupReferenceStatement
) -> Self
A rule statement used to run the rules that are defined in a RuleGroup. To use this, create a rule group with your rules, then provide the ARN of the rule group in this statement.
You cannot nest a RuleGroupReferenceStatement, for example for use inside a NotStatement or OrStatement. You can only use a rule group reference statement at the top level inside a web ACL.
sourcepub fn set_rule_group_reference_statement(
self,
input: Option<RuleGroupReferenceStatement>
) -> Self
pub fn set_rule_group_reference_statement(
self,
input: Option<RuleGroupReferenceStatement>
) -> Self
A rule statement used to run the rules that are defined in a RuleGroup. To use this, create a rule group with your rules, then provide the ARN of the rule group in this statement.
You cannot nest a RuleGroupReferenceStatement, for example for use inside a NotStatement or OrStatement. You can only use a rule group reference statement at the top level inside a web ACL.
sourcepub fn ip_set_reference_statement(self, input: IpSetReferenceStatement) -> Self
pub fn ip_set_reference_statement(self, input: IpSetReferenceStatement) -> Self
A rule statement used to detect web requests coming from particular IP addresses or address ranges. To use this, create an IPSet that specifies the addresses you want to detect, then use the ARN of that set in this statement. To create an IP set, see CreateIPSet.
Each IP set rule statement references an IP set. You create and maintain the set independent of your rules. This allows you to use the single set in multiple rules. When you update the referenced set, WAF automatically updates all rules that reference it.
sourcepub fn set_ip_set_reference_statement(
self,
input: Option<IpSetReferenceStatement>
) -> Self
pub fn set_ip_set_reference_statement(
self,
input: Option<IpSetReferenceStatement>
) -> Self
A rule statement used to detect web requests coming from particular IP addresses or address ranges. To use this, create an IPSet that specifies the addresses you want to detect, then use the ARN of that set in this statement. To create an IP set, see CreateIPSet.
Each IP set rule statement references an IP set. You create and maintain the set independent of your rules. This allows you to use the single set in multiple rules. When you update the referenced set, WAF automatically updates all rules that reference it.
sourcepub fn regex_pattern_set_reference_statement(
self,
input: RegexPatternSetReferenceStatement
) -> Self
pub fn regex_pattern_set_reference_statement(
self,
input: RegexPatternSetReferenceStatement
) -> Self
A rule statement used to search web request components for matches with regular expressions. To use this, create a RegexPatternSet that specifies the expressions that you want to detect, then use the ARN of that set in this statement. A web request matches the pattern set rule statement if the request component matches any of the patterns in the set. To create a regex pattern set, see CreateRegexPatternSet.
Each regex pattern set rule statement references a regex pattern set. You create and maintain the set independent of your rules. This allows you to use the single set in multiple rules. When you update the referenced set, WAF automatically updates all rules that reference it.
sourcepub fn set_regex_pattern_set_reference_statement(
self,
input: Option<RegexPatternSetReferenceStatement>
) -> Self
pub fn set_regex_pattern_set_reference_statement(
self,
input: Option<RegexPatternSetReferenceStatement>
) -> Self
A rule statement used to search web request components for matches with regular expressions. To use this, create a RegexPatternSet that specifies the expressions that you want to detect, then use the ARN of that set in this statement. A web request matches the pattern set rule statement if the request component matches any of the patterns in the set. To create a regex pattern set, see CreateRegexPatternSet.
Each regex pattern set rule statement references a regex pattern set. You create and maintain the set independent of your rules. This allows you to use the single set in multiple rules. When you update the referenced set, WAF automatically updates all rules that reference it.
sourcepub fn rate_based_statement(self, input: RateBasedStatement) -> Self
pub fn rate_based_statement(self, input: RateBasedStatement) -> Self
A rate-based rule tracks the rate of requests for each originating IP address, and triggers the rule action when the rate exceeds a limit that you specify on the number of requests in any 5-minute time span. You can use this to put a temporary block on requests from an IP address that is sending excessive requests.
WAF tracks and manages web requests separately for each instance of a rate-based rule that you use. For example, if you provide the same rate-based rule settings in two web ACLs, each of the two rule statements represents a separate instance of the rate-based rule and gets its own tracking and management by WAF. If you define a rate-based rule inside a rule group, and then use that rule group in multiple places, each use creates a separate instance of the rate-based rule that gets its own tracking and management by WAF.
When the rule action triggers, WAF blocks additional requests from the IP address until the request rate falls below the limit.
You can optionally nest another statement inside the rate-based statement, to narrow the scope of the rule so that it only counts requests that match the nested statement. For example, based on recent requests that you have seen from an attacker, you might create a rate-based rule with a nested AND rule statement that contains the following nested statements:
-
An IP match statement with an IP set that specified the address 192.0.2.44.
-
A string match statement that searches in the User-Agent header for the string BadBot.
In this rate-based rule, you also define a rate limit. For this example, the rate limit is 1,000. Requests that meet both of the conditions in the statements are counted. If the count exceeds 1,000 requests per five minutes, the rule action triggers. Requests that do not meet both conditions are not counted towards the rate limit and are not affected by this rule.
You cannot nest a RateBasedStatement inside another statement, for example inside a NotStatement or OrStatement. You can define a RateBasedStatement inside a web ACL and inside a rule group.
sourcepub fn set_rate_based_statement(self, input: Option<RateBasedStatement>) -> Self
pub fn set_rate_based_statement(self, input: Option<RateBasedStatement>) -> Self
A rate-based rule tracks the rate of requests for each originating IP address, and triggers the rule action when the rate exceeds a limit that you specify on the number of requests in any 5-minute time span. You can use this to put a temporary block on requests from an IP address that is sending excessive requests.
WAF tracks and manages web requests separately for each instance of a rate-based rule that you use. For example, if you provide the same rate-based rule settings in two web ACLs, each of the two rule statements represents a separate instance of the rate-based rule and gets its own tracking and management by WAF. If you define a rate-based rule inside a rule group, and then use that rule group in multiple places, each use creates a separate instance of the rate-based rule that gets its own tracking and management by WAF.
When the rule action triggers, WAF blocks additional requests from the IP address until the request rate falls below the limit.
You can optionally nest another statement inside the rate-based statement, to narrow the scope of the rule so that it only counts requests that match the nested statement. For example, based on recent requests that you have seen from an attacker, you might create a rate-based rule with a nested AND rule statement that contains the following nested statements:
-
An IP match statement with an IP set that specified the address 192.0.2.44.
-
A string match statement that searches in the User-Agent header for the string BadBot.
In this rate-based rule, you also define a rate limit. For this example, the rate limit is 1,000. Requests that meet both of the conditions in the statements are counted. If the count exceeds 1,000 requests per five minutes, the rule action triggers. Requests that do not meet both conditions are not counted towards the rate limit and are not affected by this rule.
You cannot nest a RateBasedStatement inside another statement, for example inside a NotStatement or OrStatement. You can define a RateBasedStatement inside a web ACL and inside a rule group.
sourcepub fn and_statement(self, input: AndStatement) -> Self
pub fn and_statement(self, input: AndStatement) -> Self
A logical rule statement used to combine other rule statements with AND logic. You provide more than one Statement within the AndStatement.
sourcepub fn set_and_statement(self, input: Option<AndStatement>) -> Self
pub fn set_and_statement(self, input: Option<AndStatement>) -> Self
A logical rule statement used to combine other rule statements with AND logic. You provide more than one Statement within the AndStatement.
sourcepub fn or_statement(self, input: OrStatement) -> Self
pub fn or_statement(self, input: OrStatement) -> Self
A logical rule statement used to combine other rule statements with OR logic. You provide more than one Statement within the OrStatement.
sourcepub fn set_or_statement(self, input: Option<OrStatement>) -> Self
pub fn set_or_statement(self, input: Option<OrStatement>) -> Self
A logical rule statement used to combine other rule statements with OR logic. You provide more than one Statement within the OrStatement.
sourcepub fn not_statement(self, input: NotStatement) -> Self
pub fn not_statement(self, input: NotStatement) -> Self
A logical rule statement used to negate the results of another rule statement. You provide one Statement within the NotStatement.
sourcepub fn set_not_statement(self, input: Option<NotStatement>) -> Self
pub fn set_not_statement(self, input: Option<NotStatement>) -> Self
A logical rule statement used to negate the results of another rule statement. You provide one Statement within the NotStatement.
sourcepub fn managed_rule_group_statement(
self,
input: ManagedRuleGroupStatement
) -> Self
pub fn managed_rule_group_statement(
self,
input: ManagedRuleGroupStatement
) -> Self
A rule statement used to run the rules that are defined in a managed rule group. To use this, provide the vendor name and the name of the rule group in this statement. You can retrieve the required names by calling ListAvailableManagedRuleGroups.
You cannot nest a ManagedRuleGroupStatement, for example for use inside a NotStatement or OrStatement. It can only be referenced as a top-level statement within a rule.
sourcepub fn set_managed_rule_group_statement(
self,
input: Option<ManagedRuleGroupStatement>
) -> Self
pub fn set_managed_rule_group_statement(
self,
input: Option<ManagedRuleGroupStatement>
) -> Self
A rule statement used to run the rules that are defined in a managed rule group. To use this, provide the vendor name and the name of the rule group in this statement. You can retrieve the required names by calling ListAvailableManagedRuleGroups.
You cannot nest a ManagedRuleGroupStatement, for example for use inside a NotStatement or OrStatement. It can only be referenced as a top-level statement within a rule.
sourcepub fn label_match_statement(self, input: LabelMatchStatement) -> Self
pub fn label_match_statement(self, input: LabelMatchStatement) -> Self
A rule statement that defines a string match search against labels that have been added to the web request by rules that have already run in the web ACL.
The label match statement provides the label or namespace string to search for. The label string can represent a part or all of the fully qualified label name that had been added to the web request. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label. If you do not provide the fully qualified name in your label match string, WAF performs the search for labels that were added in the same context as the label match statement.
sourcepub fn set_label_match_statement(
self,
input: Option<LabelMatchStatement>
) -> Self
pub fn set_label_match_statement(
self,
input: Option<LabelMatchStatement>
) -> Self
A rule statement that defines a string match search against labels that have been added to the web request by rules that have already run in the web ACL.
The label match statement provides the label or namespace string to search for. The label string can represent a part or all of the fully qualified label name that had been added to the web request. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label. If you do not provide the fully qualified name in your label match string, WAF performs the search for labels that were added in the same context as the label match statement.
sourcepub fn regex_match_statement(self, input: RegexMatchStatement) -> Self
pub fn regex_match_statement(self, input: RegexMatchStatement) -> Self
A rule statement used to search web request components for a match against a single regular expression.
sourcepub fn set_regex_match_statement(
self,
input: Option<RegexMatchStatement>
) -> Self
pub fn set_regex_match_statement(
self,
input: Option<RegexMatchStatement>
) -> Self
A rule statement used to search web request components for a match against a single regular expression.
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more