WAFRegionalClient#
Index > WAFRegional > WAFRegionalClient
Auto-generated documentation for WAFRegional type annotations stubs module types-boto3-waf-regional.
WAFRegionalClient#
Type annotations and code completion for boto3.client("waf-regional").
 boto3 documentation
# WAFRegionalClient usage example
from boto3.session import Session
from types_boto3_waf_regional.client import WAFRegionalClient
def get_waf-regional_client() -> WAFRegionalClient:
    return Session().client("waf-regional")Exceptions#
boto3 client exceptions are generated in runtime.
This class provides code completion for boto3.client("waf-regional").exceptions structure.
# Exceptions.exceptions usage example
client = boto3.client("waf-regional")
try:
    do_something(client)
except (
    client.exceptions.ClientError,
    client.exceptions.WAFBadRequestException,
    client.exceptions.WAFDisallowedNameException,
    client.exceptions.WAFEntityMigrationException,
    client.exceptions.WAFInternalErrorException,
    client.exceptions.WAFInvalidAccountException,
    client.exceptions.WAFInvalidOperationException,
    client.exceptions.WAFInvalidParameterException,
    client.exceptions.WAFInvalidPermissionPolicyException,
    client.exceptions.WAFInvalidRegexPatternException,
    client.exceptions.WAFLimitsExceededException,
    client.exceptions.WAFNonEmptyEntityException,
    client.exceptions.WAFNonexistentContainerException,
    client.exceptions.WAFNonexistentItemException,
    client.exceptions.WAFReferencedItemException,
    client.exceptions.WAFServiceLinkedRoleErrorException,
    client.exceptions.WAFStaleDataException,
    client.exceptions.WAFSubscriptionNotFoundException,
    client.exceptions.WAFTagOperationException,
    client.exceptions.WAFTagOperationInternalErrorException,
    client.exceptions.WAFUnavailableEntityException,
) as e:
    print(e)# Exceptions.exceptions type checking example
from types_boto3_waf_regional.client import Exceptions
def handle_error(exc: Exceptions.ClientError) -> None:
    ...Methods#
can_paginate#
Type annotations and code completion for boto3.client("waf-regional").can_paginate method.
 boto3 documentation
# can_paginate method definition
def can_paginate(
    self,
    operation_name: str,
) -> bool:
    ...generate_presigned_url#
Type annotations and code completion for boto3.client("waf-regional").generate_presigned_url method.
 boto3 documentation
# generate_presigned_url method definition
def generate_presigned_url(
    self,
    ClientMethod: str,
    Params: Mapping[str, Any] = ...,
    ExpiresIn: int = 3600,
    HttpMethod: str = ...,
) -> str:
    ...associate_web_acl#
This is AWS WAF Classic Regional documentation.
Type annotations and code completion for boto3.client("waf-regional").associate_web_acl method.
 boto3 documentation
# associate_web_acl method definition
def associate_web_acl(
    self,
    *,
    WebACLId: str,
    ResourceArn: str,
) -> Dict[str, Any]:
    ...# associate_web_acl method usage example with argument unpacking
kwargs: AssociateWebACLRequestTypeDef = {  # (1)
    "WebACLId": ...,
    "ResourceArn": ...,
}
parent.associate_web_acl(**kwargs)create_byte_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").create_byte_match_set method.
 boto3 documentation
# create_byte_match_set method definition
def create_byte_match_set(
    self,
    *,
    Name: str,
    ChangeToken: str,
) -> CreateByteMatchSetResponseTypeDef:  # (1)
    ...# create_byte_match_set method usage example with argument unpacking
kwargs: CreateByteMatchSetRequestTypeDef = {  # (1)
    "Name": ...,
    "ChangeToken": ...,
}
parent.create_byte_match_set(**kwargs)create_geo_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").create_geo_match_set method.
 boto3 documentation
# create_geo_match_set method definition
def create_geo_match_set(
    self,
    *,
    Name: str,
    ChangeToken: str,
) -> CreateGeoMatchSetResponseTypeDef:  # (1)
    ...# create_geo_match_set method usage example with argument unpacking
kwargs: CreateGeoMatchSetRequestTypeDef = {  # (1)
    "Name": ...,
    "ChangeToken": ...,
}
parent.create_geo_match_set(**kwargs)create_ip_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").create_ip_set method.
 boto3 documentation
# create_ip_set method definition
def create_ip_set(
    self,
    *,
    Name: str,
    ChangeToken: str,
) -> CreateIPSetResponseTypeDef:  # (1)
    ...# create_ip_set method usage example with argument unpacking
kwargs: CreateIPSetRequestTypeDef = {  # (1)
    "Name": ...,
    "ChangeToken": ...,
}
parent.create_ip_set(**kwargs)create_rate_based_rule#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").create_rate_based_rule method.
 boto3 documentation
# create_rate_based_rule method definition
def create_rate_based_rule(
    self,
    *,
    Name: str,
    MetricName: str,
    RateKey: RateKeyType,  # (1)
    RateLimit: int,
    ChangeToken: str,
    Tags: Sequence[TagTypeDef] = ...,  # (2)
) -> CreateRateBasedRuleResponseTypeDef:  # (3)
    ...- See RateKeyType
- See Sequence[TagTypeDef]
- See CreateRateBasedRuleResponseTypeDef
# create_rate_based_rule method usage example with argument unpacking
kwargs: CreateRateBasedRuleRequestTypeDef = {  # (1)
    "Name": ...,
    "MetricName": ...,
    "RateKey": ...,
    "RateLimit": ...,
    "ChangeToken": ...,
}
parent.create_rate_based_rule(**kwargs)create_regex_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").create_regex_match_set method.
 boto3 documentation
# create_regex_match_set method definition
def create_regex_match_set(
    self,
    *,
    Name: str,
    ChangeToken: str,
) -> CreateRegexMatchSetResponseTypeDef:  # (1)
    ...# create_regex_match_set method usage example with argument unpacking
kwargs: CreateRegexMatchSetRequestTypeDef = {  # (1)
    "Name": ...,
    "ChangeToken": ...,
}
parent.create_regex_match_set(**kwargs)create_regex_pattern_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").create_regex_pattern_set method.
 boto3 documentation
# create_regex_pattern_set method definition
def create_regex_pattern_set(
    self,
    *,
    Name: str,
    ChangeToken: str,
) -> CreateRegexPatternSetResponseTypeDef:  # (1)
    ...# create_regex_pattern_set method usage example with argument unpacking
kwargs: CreateRegexPatternSetRequestTypeDef = {  # (1)
    "Name": ...,
    "ChangeToken": ...,
}
parent.create_regex_pattern_set(**kwargs)create_rule#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").create_rule method.
 boto3 documentation
# create_rule method definition
def create_rule(
    self,
    *,
    Name: str,
    MetricName: str,
    ChangeToken: str,
    Tags: Sequence[TagTypeDef] = ...,  # (1)
) -> CreateRuleResponseTypeDef:  # (2)
    ...- See Sequence[TagTypeDef]
- See CreateRuleResponseTypeDef
# create_rule method usage example with argument unpacking
kwargs: CreateRuleRequestTypeDef = {  # (1)
    "Name": ...,
    "MetricName": ...,
    "ChangeToken": ...,
}
parent.create_rule(**kwargs)create_rule_group#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").create_rule_group method.
 boto3 documentation
# create_rule_group method definition
def create_rule_group(
    self,
    *,
    Name: str,
    MetricName: str,
    ChangeToken: str,
    Tags: Sequence[TagTypeDef] = ...,  # (1)
) -> CreateRuleGroupResponseTypeDef:  # (2)
    ...- See Sequence[TagTypeDef]
- See CreateRuleGroupResponseTypeDef
# create_rule_group method usage example with argument unpacking
kwargs: CreateRuleGroupRequestTypeDef = {  # (1)
    "Name": ...,
    "MetricName": ...,
    "ChangeToken": ...,
}
parent.create_rule_group(**kwargs)create_size_constraint_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").create_size_constraint_set method.
 boto3 documentation
# create_size_constraint_set method definition
def create_size_constraint_set(
    self,
    *,
    Name: str,
    ChangeToken: str,
) -> CreateSizeConstraintSetResponseTypeDef:  # (1)
    ...# create_size_constraint_set method usage example with argument unpacking
kwargs: CreateSizeConstraintSetRequestTypeDef = {  # (1)
    "Name": ...,
    "ChangeToken": ...,
}
parent.create_size_constraint_set(**kwargs)create_sql_injection_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").create_sql_injection_match_set method.
 boto3 documentation
# create_sql_injection_match_set method definition
def create_sql_injection_match_set(
    self,
    *,
    Name: str,
    ChangeToken: str,
) -> CreateSqlInjectionMatchSetResponseTypeDef:  # (1)
    ...# create_sql_injection_match_set method usage example with argument unpacking
kwargs: CreateSqlInjectionMatchSetRequestTypeDef = {  # (1)
    "Name": ...,
    "ChangeToken": ...,
}
parent.create_sql_injection_match_set(**kwargs)create_web_acl#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").create_web_acl method.
 boto3 documentation
# create_web_acl method definition
def create_web_acl(
    self,
    *,
    Name: str,
    MetricName: str,
    DefaultAction: WafActionTypeDef,  # (1)
    ChangeToken: str,
    Tags: Sequence[TagTypeDef] = ...,  # (2)
) -> CreateWebACLResponseTypeDef:  # (3)
    ...- See WafActionTypeDef
- See Sequence[TagTypeDef]
- See CreateWebACLResponseTypeDef
# create_web_acl method usage example with argument unpacking
kwargs: CreateWebACLRequestTypeDef = {  # (1)
    "Name": ...,
    "MetricName": ...,
    "DefaultAction": ...,
    "ChangeToken": ...,
}
parent.create_web_acl(**kwargs)create_web_acl_migration_stack#
Creates an AWS CloudFormation WAFV2 template for the specified web ACL in the specified Amazon S3 bucket.
Type annotations and code completion for boto3.client("waf-regional").create_web_acl_migration_stack method.
 boto3 documentation
# create_web_acl_migration_stack method definition
def create_web_acl_migration_stack(
    self,
    *,
    WebACLId: str,
    S3BucketName: str,
    IgnoreUnsupportedType: bool,
) -> CreateWebACLMigrationStackResponseTypeDef:  # (1)
    ...# create_web_acl_migration_stack method usage example with argument unpacking
kwargs: CreateWebACLMigrationStackRequestTypeDef = {  # (1)
    "WebACLId": ...,
    "S3BucketName": ...,
    "IgnoreUnsupportedType": ...,
}
parent.create_web_acl_migration_stack(**kwargs)create_xss_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").create_xss_match_set method.
 boto3 documentation
# create_xss_match_set method definition
def create_xss_match_set(
    self,
    *,
    Name: str,
    ChangeToken: str,
) -> CreateXssMatchSetResponseTypeDef:  # (1)
    ...# create_xss_match_set method usage example with argument unpacking
kwargs: CreateXssMatchSetRequestTypeDef = {  # (1)
    "Name": ...,
    "ChangeToken": ...,
}
parent.create_xss_match_set(**kwargs)delete_byte_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").delete_byte_match_set method.
 boto3 documentation
# delete_byte_match_set method definition
def delete_byte_match_set(
    self,
    *,
    ByteMatchSetId: str,
    ChangeToken: str,
) -> DeleteByteMatchSetResponseTypeDef:  # (1)
    ...# delete_byte_match_set method usage example with argument unpacking
kwargs: DeleteByteMatchSetRequestTypeDef = {  # (1)
    "ByteMatchSetId": ...,
    "ChangeToken": ...,
}
parent.delete_byte_match_set(**kwargs)delete_geo_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").delete_geo_match_set method.
 boto3 documentation
# delete_geo_match_set method definition
def delete_geo_match_set(
    self,
    *,
    GeoMatchSetId: str,
    ChangeToken: str,
) -> DeleteGeoMatchSetResponseTypeDef:  # (1)
    ...# delete_geo_match_set method usage example with argument unpacking
kwargs: DeleteGeoMatchSetRequestTypeDef = {  # (1)
    "GeoMatchSetId": ...,
    "ChangeToken": ...,
}
parent.delete_geo_match_set(**kwargs)delete_ip_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").delete_ip_set method.
 boto3 documentation
# delete_ip_set method definition
def delete_ip_set(
    self,
    *,
    IPSetId: str,
    ChangeToken: str,
) -> DeleteIPSetResponseTypeDef:  # (1)
    ...# delete_ip_set method usage example with argument unpacking
kwargs: DeleteIPSetRequestTypeDef = {  # (1)
    "IPSetId": ...,
    "ChangeToken": ...,
}
parent.delete_ip_set(**kwargs)delete_logging_configuration#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").delete_logging_configuration method.
 boto3 documentation
# delete_logging_configuration method definition
def delete_logging_configuration(
    self,
    *,
    ResourceArn: str,
) -> Dict[str, Any]:
    ...# delete_logging_configuration method usage example with argument unpacking
kwargs: DeleteLoggingConfigurationRequestTypeDef = {  # (1)
    "ResourceArn": ...,
}
parent.delete_logging_configuration(**kwargs)delete_permission_policy#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").delete_permission_policy method.
 boto3 documentation
# delete_permission_policy method definition
def delete_permission_policy(
    self,
    *,
    ResourceArn: str,
) -> Dict[str, Any]:
    ...# delete_permission_policy method usage example with argument unpacking
kwargs: DeletePermissionPolicyRequestTypeDef = {  # (1)
    "ResourceArn": ...,
}
parent.delete_permission_policy(**kwargs)delete_rate_based_rule#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").delete_rate_based_rule method.
 boto3 documentation
# delete_rate_based_rule method definition
def delete_rate_based_rule(
    self,
    *,
    RuleId: str,
    ChangeToken: str,
) -> DeleteRateBasedRuleResponseTypeDef:  # (1)
    ...# delete_rate_based_rule method usage example with argument unpacking
kwargs: DeleteRateBasedRuleRequestTypeDef = {  # (1)
    "RuleId": ...,
    "ChangeToken": ...,
}
parent.delete_rate_based_rule(**kwargs)delete_regex_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").delete_regex_match_set method.
 boto3 documentation
# delete_regex_match_set method definition
def delete_regex_match_set(
    self,
    *,
    RegexMatchSetId: str,
    ChangeToken: str,
) -> DeleteRegexMatchSetResponseTypeDef:  # (1)
    ...# delete_regex_match_set method usage example with argument unpacking
kwargs: DeleteRegexMatchSetRequestTypeDef = {  # (1)
    "RegexMatchSetId": ...,
    "ChangeToken": ...,
}
parent.delete_regex_match_set(**kwargs)delete_regex_pattern_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").delete_regex_pattern_set method.
 boto3 documentation
# delete_regex_pattern_set method definition
def delete_regex_pattern_set(
    self,
    *,
    RegexPatternSetId: str,
    ChangeToken: str,
) -> DeleteRegexPatternSetResponseTypeDef:  # (1)
    ...# delete_regex_pattern_set method usage example with argument unpacking
kwargs: DeleteRegexPatternSetRequestTypeDef = {  # (1)
    "RegexPatternSetId": ...,
    "ChangeToken": ...,
}
parent.delete_regex_pattern_set(**kwargs)delete_rule#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").delete_rule method.
 boto3 documentation
# delete_rule method definition
def delete_rule(
    self,
    *,
    RuleId: str,
    ChangeToken: str,
) -> DeleteRuleResponseTypeDef:  # (1)
    ...# delete_rule method usage example with argument unpacking
kwargs: DeleteRuleRequestTypeDef = {  # (1)
    "RuleId": ...,
    "ChangeToken": ...,
}
parent.delete_rule(**kwargs)delete_rule_group#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").delete_rule_group method.
 boto3 documentation
# delete_rule_group method definition
def delete_rule_group(
    self,
    *,
    RuleGroupId: str,
    ChangeToken: str,
) -> DeleteRuleGroupResponseTypeDef:  # (1)
    ...# delete_rule_group method usage example with argument unpacking
kwargs: DeleteRuleGroupRequestTypeDef = {  # (1)
    "RuleGroupId": ...,
    "ChangeToken": ...,
}
parent.delete_rule_group(**kwargs)delete_size_constraint_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").delete_size_constraint_set method.
 boto3 documentation
# delete_size_constraint_set method definition
def delete_size_constraint_set(
    self,
    *,
    SizeConstraintSetId: str,
    ChangeToken: str,
) -> DeleteSizeConstraintSetResponseTypeDef:  # (1)
    ...# delete_size_constraint_set method usage example with argument unpacking
kwargs: DeleteSizeConstraintSetRequestTypeDef = {  # (1)
    "SizeConstraintSetId": ...,
    "ChangeToken": ...,
}
parent.delete_size_constraint_set(**kwargs)delete_sql_injection_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").delete_sql_injection_match_set method.
 boto3 documentation
# delete_sql_injection_match_set method definition
def delete_sql_injection_match_set(
    self,
    *,
    SqlInjectionMatchSetId: str,
    ChangeToken: str,
) -> DeleteSqlInjectionMatchSetResponseTypeDef:  # (1)
    ...# delete_sql_injection_match_set method usage example with argument unpacking
kwargs: DeleteSqlInjectionMatchSetRequestTypeDef = {  # (1)
    "SqlInjectionMatchSetId": ...,
    "ChangeToken": ...,
}
parent.delete_sql_injection_match_set(**kwargs)delete_web_acl#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").delete_web_acl method.
 boto3 documentation
# delete_web_acl method definition
def delete_web_acl(
    self,
    *,
    WebACLId: str,
    ChangeToken: str,
) -> DeleteWebACLResponseTypeDef:  # (1)
    ...# delete_web_acl method usage example with argument unpacking
kwargs: DeleteWebACLRequestTypeDef = {  # (1)
    "WebACLId": ...,
    "ChangeToken": ...,
}
parent.delete_web_acl(**kwargs)delete_xss_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").delete_xss_match_set method.
 boto3 documentation
# delete_xss_match_set method definition
def delete_xss_match_set(
    self,
    *,
    XssMatchSetId: str,
    ChangeToken: str,
) -> DeleteXssMatchSetResponseTypeDef:  # (1)
    ...# delete_xss_match_set method usage example with argument unpacking
kwargs: DeleteXssMatchSetRequestTypeDef = {  # (1)
    "XssMatchSetId": ...,
    "ChangeToken": ...,
}
parent.delete_xss_match_set(**kwargs)disassociate_web_acl#
This is AWS WAF Classic Regional documentation.
Type annotations and code completion for boto3.client("waf-regional").disassociate_web_acl method.
 boto3 documentation
# disassociate_web_acl method definition
def disassociate_web_acl(
    self,
    *,
    ResourceArn: str,
) -> Dict[str, Any]:
    ...# disassociate_web_acl method usage example with argument unpacking
kwargs: DisassociateWebACLRequestTypeDef = {  # (1)
    "ResourceArn": ...,
}
parent.disassociate_web_acl(**kwargs)get_byte_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_byte_match_set method.
 boto3 documentation
# get_byte_match_set method definition
def get_byte_match_set(
    self,
    *,
    ByteMatchSetId: str,
) -> GetByteMatchSetResponseTypeDef:  # (1)
    ...# get_byte_match_set method usage example with argument unpacking
kwargs: GetByteMatchSetRequestTypeDef = {  # (1)
    "ByteMatchSetId": ...,
}
parent.get_byte_match_set(**kwargs)get_change_token#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_change_token method.
 boto3 documentation
# get_change_token method definition
def get_change_token(
    self,
) -> GetChangeTokenResponseTypeDef:  # (1)
    ...get_change_token_status#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_change_token_status method.
 boto3 documentation
# get_change_token_status method definition
def get_change_token_status(
    self,
    *,
    ChangeToken: str,
) -> GetChangeTokenStatusResponseTypeDef:  # (1)
    ...# get_change_token_status method usage example with argument unpacking
kwargs: GetChangeTokenStatusRequestTypeDef = {  # (1)
    "ChangeToken": ...,
}
parent.get_change_token_status(**kwargs)get_geo_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_geo_match_set method.
 boto3 documentation
# get_geo_match_set method definition
def get_geo_match_set(
    self,
    *,
    GeoMatchSetId: str,
) -> GetGeoMatchSetResponseTypeDef:  # (1)
    ...# get_geo_match_set method usage example with argument unpacking
kwargs: GetGeoMatchSetRequestTypeDef = {  # (1)
    "GeoMatchSetId": ...,
}
parent.get_geo_match_set(**kwargs)get_ip_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_ip_set method.
 boto3 documentation
# get_ip_set method definition
def get_ip_set(
    self,
    *,
    IPSetId: str,
) -> GetIPSetResponseTypeDef:  # (1)
    ...# get_ip_set method usage example with argument unpacking
kwargs: GetIPSetRequestTypeDef = {  # (1)
    "IPSetId": ...,
}
parent.get_ip_set(**kwargs)get_logging_configuration#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_logging_configuration method.
 boto3 documentation
# get_logging_configuration method definition
def get_logging_configuration(
    self,
    *,
    ResourceArn: str,
) -> GetLoggingConfigurationResponseTypeDef:  # (1)
    ...# get_logging_configuration method usage example with argument unpacking
kwargs: GetLoggingConfigurationRequestTypeDef = {  # (1)
    "ResourceArn": ...,
}
parent.get_logging_configuration(**kwargs)get_permission_policy#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_permission_policy method.
 boto3 documentation
# get_permission_policy method definition
def get_permission_policy(
    self,
    *,
    ResourceArn: str,
) -> GetPermissionPolicyResponseTypeDef:  # (1)
    ...# get_permission_policy method usage example with argument unpacking
kwargs: GetPermissionPolicyRequestTypeDef = {  # (1)
    "ResourceArn": ...,
}
parent.get_permission_policy(**kwargs)get_rate_based_rule#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_rate_based_rule method.
 boto3 documentation
# get_rate_based_rule method definition
def get_rate_based_rule(
    self,
    *,
    RuleId: str,
) -> GetRateBasedRuleResponseTypeDef:  # (1)
    ...# get_rate_based_rule method usage example with argument unpacking
kwargs: GetRateBasedRuleRequestTypeDef = {  # (1)
    "RuleId": ...,
}
parent.get_rate_based_rule(**kwargs)get_rate_based_rule_managed_keys#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_rate_based_rule_managed_keys method.
 boto3 documentation
# get_rate_based_rule_managed_keys method definition
def get_rate_based_rule_managed_keys(
    self,
    *,
    RuleId: str,
    NextMarker: str = ...,
) -> GetRateBasedRuleManagedKeysResponseTypeDef:  # (1)
    ...# get_rate_based_rule_managed_keys method usage example with argument unpacking
kwargs: GetRateBasedRuleManagedKeysRequestTypeDef = {  # (1)
    "RuleId": ...,
}
parent.get_rate_based_rule_managed_keys(**kwargs)get_regex_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_regex_match_set method.
 boto3 documentation
# get_regex_match_set method definition
def get_regex_match_set(
    self,
    *,
    RegexMatchSetId: str,
) -> GetRegexMatchSetResponseTypeDef:  # (1)
    ...# get_regex_match_set method usage example with argument unpacking
kwargs: GetRegexMatchSetRequestTypeDef = {  # (1)
    "RegexMatchSetId": ...,
}
parent.get_regex_match_set(**kwargs)get_regex_pattern_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_regex_pattern_set method.
 boto3 documentation
# get_regex_pattern_set method definition
def get_regex_pattern_set(
    self,
    *,
    RegexPatternSetId: str,
) -> GetRegexPatternSetResponseTypeDef:  # (1)
    ...# get_regex_pattern_set method usage example with argument unpacking
kwargs: GetRegexPatternSetRequestTypeDef = {  # (1)
    "RegexPatternSetId": ...,
}
parent.get_regex_pattern_set(**kwargs)get_rule#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_rule method.
 boto3 documentation
# get_rule method definition
def get_rule(
    self,
    *,
    RuleId: str,
) -> GetRuleResponseTypeDef:  # (1)
    ...# get_rule method usage example with argument unpacking
kwargs: GetRuleRequestTypeDef = {  # (1)
    "RuleId": ...,
}
parent.get_rule(**kwargs)get_rule_group#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_rule_group method.
 boto3 documentation
# get_rule_group method definition
def get_rule_group(
    self,
    *,
    RuleGroupId: str,
) -> GetRuleGroupResponseTypeDef:  # (1)
    ...# get_rule_group method usage example with argument unpacking
kwargs: GetRuleGroupRequestTypeDef = {  # (1)
    "RuleGroupId": ...,
}
parent.get_rule_group(**kwargs)get_sampled_requests#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_sampled_requests method.
 boto3 documentation
# get_sampled_requests method definition
def get_sampled_requests(
    self,
    *,
    WebAclId: str,
    RuleId: str,
    TimeWindow: TimeWindowUnionTypeDef,  # (1)
    MaxItems: int,
) -> GetSampledRequestsResponseTypeDef:  # (2)
    ...# get_sampled_requests method usage example with argument unpacking
kwargs: GetSampledRequestsRequestTypeDef = {  # (1)
    "WebAclId": ...,
    "RuleId": ...,
    "TimeWindow": ...,
    "MaxItems": ...,
}
parent.get_sampled_requests(**kwargs)get_size_constraint_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_size_constraint_set method.
 boto3 documentation
# get_size_constraint_set method definition
def get_size_constraint_set(
    self,
    *,
    SizeConstraintSetId: str,
) -> GetSizeConstraintSetResponseTypeDef:  # (1)
    ...# get_size_constraint_set method usage example with argument unpacking
kwargs: GetSizeConstraintSetRequestTypeDef = {  # (1)
    "SizeConstraintSetId": ...,
}
parent.get_size_constraint_set(**kwargs)get_sql_injection_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_sql_injection_match_set method.
 boto3 documentation
# get_sql_injection_match_set method definition
def get_sql_injection_match_set(
    self,
    *,
    SqlInjectionMatchSetId: str,
) -> GetSqlInjectionMatchSetResponseTypeDef:  # (1)
    ...# get_sql_injection_match_set method usage example with argument unpacking
kwargs: GetSqlInjectionMatchSetRequestTypeDef = {  # (1)
    "SqlInjectionMatchSetId": ...,
}
parent.get_sql_injection_match_set(**kwargs)get_web_acl#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_web_acl method.
 boto3 documentation
# get_web_acl method definition
def get_web_acl(
    self,
    *,
    WebACLId: str,
) -> GetWebACLResponseTypeDef:  # (1)
    ...# get_web_acl method usage example with argument unpacking
kwargs: GetWebACLRequestTypeDef = {  # (1)
    "WebACLId": ...,
}
parent.get_web_acl(**kwargs)get_web_acl_for_resource#
This is AWS WAF Classic Regional documentation.
Type annotations and code completion for boto3.client("waf-regional").get_web_acl_for_resource method.
 boto3 documentation
# get_web_acl_for_resource method definition
def get_web_acl_for_resource(
    self,
    *,
    ResourceArn: str,
) -> GetWebACLForResourceResponseTypeDef:  # (1)
    ...# get_web_acl_for_resource method usage example with argument unpacking
kwargs: GetWebACLForResourceRequestTypeDef = {  # (1)
    "ResourceArn": ...,
}
parent.get_web_acl_for_resource(**kwargs)get_xss_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").get_xss_match_set method.
 boto3 documentation
# get_xss_match_set method definition
def get_xss_match_set(
    self,
    *,
    XssMatchSetId: str,
) -> GetXssMatchSetResponseTypeDef:  # (1)
    ...# get_xss_match_set method usage example with argument unpacking
kwargs: GetXssMatchSetRequestTypeDef = {  # (1)
    "XssMatchSetId": ...,
}
parent.get_xss_match_set(**kwargs)list_activated_rules_in_rule_group#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").list_activated_rules_in_rule_group method.
 boto3 documentation
# list_activated_rules_in_rule_group method definition
def list_activated_rules_in_rule_group(
    self,
    *,
    RuleGroupId: str = ...,
    NextMarker: str = ...,
    Limit: int = ...,
) -> ListActivatedRulesInRuleGroupResponseTypeDef:  # (1)
    ...# list_activated_rules_in_rule_group method usage example with argument unpacking
kwargs: ListActivatedRulesInRuleGroupRequestTypeDef = {  # (1)
    "RuleGroupId": ...,
}
parent.list_activated_rules_in_rule_group(**kwargs)list_byte_match_sets#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").list_byte_match_sets method.
 boto3 documentation
# list_byte_match_sets method definition
def list_byte_match_sets(
    self,
    *,
    NextMarker: str = ...,
    Limit: int = ...,
) -> ListByteMatchSetsResponseTypeDef:  # (1)
    ...# list_byte_match_sets method usage example with argument unpacking
kwargs: ListByteMatchSetsRequestTypeDef = {  # (1)
    "NextMarker": ...,
}
parent.list_byte_match_sets(**kwargs)list_geo_match_sets#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").list_geo_match_sets method.
 boto3 documentation
# list_geo_match_sets method definition
def list_geo_match_sets(
    self,
    *,
    NextMarker: str = ...,
    Limit: int = ...,
) -> ListGeoMatchSetsResponseTypeDef:  # (1)
    ...# list_geo_match_sets method usage example with argument unpacking
kwargs: ListGeoMatchSetsRequestTypeDef = {  # (1)
    "NextMarker": ...,
}
parent.list_geo_match_sets(**kwargs)list_ip_sets#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").list_ip_sets method.
 boto3 documentation
# list_ip_sets method definition
def list_ip_sets(
    self,
    *,
    NextMarker: str = ...,
    Limit: int = ...,
) -> ListIPSetsResponseTypeDef:  # (1)
    ...# list_ip_sets method usage example with argument unpacking
kwargs: ListIPSetsRequestTypeDef = {  # (1)
    "NextMarker": ...,
}
parent.list_ip_sets(**kwargs)list_logging_configurations#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").list_logging_configurations method.
 boto3 documentation
# list_logging_configurations method definition
def list_logging_configurations(
    self,
    *,
    NextMarker: str = ...,
    Limit: int = ...,
) -> ListLoggingConfigurationsResponseTypeDef:  # (1)
    ...# list_logging_configurations method usage example with argument unpacking
kwargs: ListLoggingConfigurationsRequestTypeDef = {  # (1)
    "NextMarker": ...,
}
parent.list_logging_configurations(**kwargs)list_rate_based_rules#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").list_rate_based_rules method.
 boto3 documentation
# list_rate_based_rules method definition
def list_rate_based_rules(
    self,
    *,
    NextMarker: str = ...,
    Limit: int = ...,
) -> ListRateBasedRulesResponseTypeDef:  # (1)
    ...# list_rate_based_rules method usage example with argument unpacking
kwargs: ListRateBasedRulesRequestTypeDef = {  # (1)
    "NextMarker": ...,
}
parent.list_rate_based_rules(**kwargs)list_regex_match_sets#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").list_regex_match_sets method.
 boto3 documentation
# list_regex_match_sets method definition
def list_regex_match_sets(
    self,
    *,
    NextMarker: str = ...,
    Limit: int = ...,
) -> ListRegexMatchSetsResponseTypeDef:  # (1)
    ...# list_regex_match_sets method usage example with argument unpacking
kwargs: ListRegexMatchSetsRequestTypeDef = {  # (1)
    "NextMarker": ...,
}
parent.list_regex_match_sets(**kwargs)list_regex_pattern_sets#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").list_regex_pattern_sets method.
 boto3 documentation
# list_regex_pattern_sets method definition
def list_regex_pattern_sets(
    self,
    *,
    NextMarker: str = ...,
    Limit: int = ...,
) -> ListRegexPatternSetsResponseTypeDef:  # (1)
    ...# list_regex_pattern_sets method usage example with argument unpacking
kwargs: ListRegexPatternSetsRequestTypeDef = {  # (1)
    "NextMarker": ...,
}
parent.list_regex_pattern_sets(**kwargs)list_resources_for_web_acl#
This is AWS WAF Classic Regional documentation.
Type annotations and code completion for boto3.client("waf-regional").list_resources_for_web_acl method.
 boto3 documentation
# list_resources_for_web_acl method definition
def list_resources_for_web_acl(
    self,
    *,
    WebACLId: str,
    ResourceType: ResourceTypeType = ...,  # (1)
) -> ListResourcesForWebACLResponseTypeDef:  # (2)
    ...# list_resources_for_web_acl method usage example with argument unpacking
kwargs: ListResourcesForWebACLRequestTypeDef = {  # (1)
    "WebACLId": ...,
}
parent.list_resources_for_web_acl(**kwargs)list_rule_groups#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").list_rule_groups method.
 boto3 documentation
# list_rule_groups method definition
def list_rule_groups(
    self,
    *,
    NextMarker: str = ...,
    Limit: int = ...,
) -> ListRuleGroupsResponseTypeDef:  # (1)
    ...# list_rule_groups method usage example with argument unpacking
kwargs: ListRuleGroupsRequestTypeDef = {  # (1)
    "NextMarker": ...,
}
parent.list_rule_groups(**kwargs)list_rules#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").list_rules method.
 boto3 documentation
# list_rules method definition
def list_rules(
    self,
    *,
    NextMarker: str = ...,
    Limit: int = ...,
) -> ListRulesResponseTypeDef:  # (1)
    ...# list_rules method usage example with argument unpacking
kwargs: ListRulesRequestTypeDef = {  # (1)
    "NextMarker": ...,
}
parent.list_rules(**kwargs)list_size_constraint_sets#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").list_size_constraint_sets method.
 boto3 documentation
# list_size_constraint_sets method definition
def list_size_constraint_sets(
    self,
    *,
    NextMarker: str = ...,
    Limit: int = ...,
) -> ListSizeConstraintSetsResponseTypeDef:  # (1)
    ...# list_size_constraint_sets method usage example with argument unpacking
kwargs: ListSizeConstraintSetsRequestTypeDef = {  # (1)
    "NextMarker": ...,
}
parent.list_size_constraint_sets(**kwargs)list_sql_injection_match_sets#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").list_sql_injection_match_sets method.
 boto3 documentation
# list_sql_injection_match_sets method definition
def list_sql_injection_match_sets(
    self,
    *,
    NextMarker: str = ...,
    Limit: int = ...,
) -> ListSqlInjectionMatchSetsResponseTypeDef:  # (1)
    ...# list_sql_injection_match_sets method usage example with argument unpacking
kwargs: ListSqlInjectionMatchSetsRequestTypeDef = {  # (1)
    "NextMarker": ...,
}
parent.list_sql_injection_match_sets(**kwargs)list_subscribed_rule_groups#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").list_subscribed_rule_groups method.
 boto3 documentation
# list_subscribed_rule_groups method definition
def list_subscribed_rule_groups(
    self,
    *,
    NextMarker: str = ...,
    Limit: int = ...,
) -> ListSubscribedRuleGroupsResponseTypeDef:  # (1)
    ...# list_subscribed_rule_groups method usage example with argument unpacking
kwargs: ListSubscribedRuleGroupsRequestTypeDef = {  # (1)
    "NextMarker": ...,
}
parent.list_subscribed_rule_groups(**kwargs)list_tags_for_resource#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").list_tags_for_resource method.
 boto3 documentation
# list_tags_for_resource method definition
def list_tags_for_resource(
    self,
    *,
    ResourceARN: str,
    NextMarker: str = ...,
    Limit: int = ...,
) -> ListTagsForResourceResponseTypeDef:  # (1)
    ...# list_tags_for_resource method usage example with argument unpacking
kwargs: ListTagsForResourceRequestTypeDef = {  # (1)
    "ResourceARN": ...,
}
parent.list_tags_for_resource(**kwargs)list_web_acls#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").list_web_acls method.
 boto3 documentation
# list_web_acls method definition
def list_web_acls(
    self,
    *,
    NextMarker: str = ...,
    Limit: int = ...,
) -> ListWebACLsResponseTypeDef:  # (1)
    ...# list_web_acls method usage example with argument unpacking
kwargs: ListWebACLsRequestTypeDef = {  # (1)
    "NextMarker": ...,
}
parent.list_web_acls(**kwargs)list_xss_match_sets#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").list_xss_match_sets method.
 boto3 documentation
# list_xss_match_sets method definition
def list_xss_match_sets(
    self,
    *,
    NextMarker: str = ...,
    Limit: int = ...,
) -> ListXssMatchSetsResponseTypeDef:  # (1)
    ...# list_xss_match_sets method usage example with argument unpacking
kwargs: ListXssMatchSetsRequestTypeDef = {  # (1)
    "NextMarker": ...,
}
parent.list_xss_match_sets(**kwargs)put_logging_configuration#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").put_logging_configuration method.
 boto3 documentation
# put_logging_configuration method definition
def put_logging_configuration(
    self,
    *,
    LoggingConfiguration: LoggingConfigurationUnionTypeDef,  # (1)
) -> PutLoggingConfigurationResponseTypeDef:  # (2)
    ...# put_logging_configuration method usage example with argument unpacking
kwargs: PutLoggingConfigurationRequestTypeDef = {  # (1)
    "LoggingConfiguration": ...,
}
parent.put_logging_configuration(**kwargs)put_permission_policy#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").put_permission_policy method.
 boto3 documentation
# put_permission_policy method definition
def put_permission_policy(
    self,
    *,
    ResourceArn: str,
    Policy: str,
) -> Dict[str, Any]:
    ...# put_permission_policy method usage example with argument unpacking
kwargs: PutPermissionPolicyRequestTypeDef = {  # (1)
    "ResourceArn": ...,
    "Policy": ...,
}
parent.put_permission_policy(**kwargs)tag_resource#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").tag_resource method.
 boto3 documentation
# tag_resource method definition
def tag_resource(
    self,
    *,
    ResourceARN: str,
    Tags: Sequence[TagTypeDef],  # (1)
) -> Dict[str, Any]:
    ...- See Sequence[TagTypeDef]
# tag_resource method usage example with argument unpacking
kwargs: TagResourceRequestTypeDef = {  # (1)
    "ResourceARN": ...,
    "Tags": ...,
}
parent.tag_resource(**kwargs)untag_resource#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").untag_resource method.
 boto3 documentation
# untag_resource method definition
def untag_resource(
    self,
    *,
    ResourceARN: str,
    TagKeys: Sequence[str],
) -> Dict[str, Any]:
    ...# untag_resource method usage example with argument unpacking
kwargs: UntagResourceRequestTypeDef = {  # (1)
    "ResourceARN": ...,
    "TagKeys": ...,
}
parent.untag_resource(**kwargs)update_byte_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").update_byte_match_set method.
 boto3 documentation
# update_byte_match_set method definition
def update_byte_match_set(
    self,
    *,
    ByteMatchSetId: str,
    ChangeToken: str,
    Updates: Sequence[ByteMatchSetUpdateTypeDef],  # (1)
) -> UpdateByteMatchSetResponseTypeDef:  # (2)
    ...- See Sequence[ByteMatchSetUpdateTypeDef]
- See UpdateByteMatchSetResponseTypeDef
# update_byte_match_set method usage example with argument unpacking
kwargs: UpdateByteMatchSetRequestTypeDef = {  # (1)
    "ByteMatchSetId": ...,
    "ChangeToken": ...,
    "Updates": ...,
}
parent.update_byte_match_set(**kwargs)update_geo_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").update_geo_match_set method.
 boto3 documentation
# update_geo_match_set method definition
def update_geo_match_set(
    self,
    *,
    GeoMatchSetId: str,
    ChangeToken: str,
    Updates: Sequence[GeoMatchSetUpdateTypeDef],  # (1)
) -> UpdateGeoMatchSetResponseTypeDef:  # (2)
    ...- See Sequence[GeoMatchSetUpdateTypeDef]
- See UpdateGeoMatchSetResponseTypeDef
# update_geo_match_set method usage example with argument unpacking
kwargs: UpdateGeoMatchSetRequestTypeDef = {  # (1)
    "GeoMatchSetId": ...,
    "ChangeToken": ...,
    "Updates": ...,
}
parent.update_geo_match_set(**kwargs)update_ip_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").update_ip_set method.
 boto3 documentation
# update_ip_set method definition
def update_ip_set(
    self,
    *,
    IPSetId: str,
    ChangeToken: str,
    Updates: Sequence[IPSetUpdateTypeDef],  # (1)
) -> UpdateIPSetResponseTypeDef:  # (2)
    ...- See Sequence[IPSetUpdateTypeDef]
- See UpdateIPSetResponseTypeDef
# update_ip_set method usage example with argument unpacking
kwargs: UpdateIPSetRequestTypeDef = {  # (1)
    "IPSetId": ...,
    "ChangeToken": ...,
    "Updates": ...,
}
parent.update_ip_set(**kwargs)update_rate_based_rule#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").update_rate_based_rule method.
 boto3 documentation
# update_rate_based_rule method definition
def update_rate_based_rule(
    self,
    *,
    RuleId: str,
    ChangeToken: str,
    Updates: Sequence[RuleUpdateTypeDef],  # (1)
    RateLimit: int,
) -> UpdateRateBasedRuleResponseTypeDef:  # (2)
    ...- See Sequence[RuleUpdateTypeDef]
- See UpdateRateBasedRuleResponseTypeDef
# update_rate_based_rule method usage example with argument unpacking
kwargs: UpdateRateBasedRuleRequestTypeDef = {  # (1)
    "RuleId": ...,
    "ChangeToken": ...,
    "Updates": ...,
    "RateLimit": ...,
}
parent.update_rate_based_rule(**kwargs)update_regex_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").update_regex_match_set method.
 boto3 documentation
# update_regex_match_set method definition
def update_regex_match_set(
    self,
    *,
    RegexMatchSetId: str,
    Updates: Sequence[RegexMatchSetUpdateTypeDef],  # (1)
    ChangeToken: str,
) -> UpdateRegexMatchSetResponseTypeDef:  # (2)
    ...- See Sequence[RegexMatchSetUpdateTypeDef]
- See UpdateRegexMatchSetResponseTypeDef
# update_regex_match_set method usage example with argument unpacking
kwargs: UpdateRegexMatchSetRequestTypeDef = {  # (1)
    "RegexMatchSetId": ...,
    "Updates": ...,
    "ChangeToken": ...,
}
parent.update_regex_match_set(**kwargs)update_regex_pattern_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").update_regex_pattern_set method.
 boto3 documentation
# update_regex_pattern_set method definition
def update_regex_pattern_set(
    self,
    *,
    RegexPatternSetId: str,
    Updates: Sequence[RegexPatternSetUpdateTypeDef],  # (1)
    ChangeToken: str,
) -> UpdateRegexPatternSetResponseTypeDef:  # (2)
    ...- See Sequence[RegexPatternSetUpdateTypeDef]
- See UpdateRegexPatternSetResponseTypeDef
# update_regex_pattern_set method usage example with argument unpacking
kwargs: UpdateRegexPatternSetRequestTypeDef = {  # (1)
    "RegexPatternSetId": ...,
    "Updates": ...,
    "ChangeToken": ...,
}
parent.update_regex_pattern_set(**kwargs)update_rule#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").update_rule method.
 boto3 documentation
# update_rule method definition
def update_rule(
    self,
    *,
    RuleId: str,
    ChangeToken: str,
    Updates: Sequence[RuleUpdateTypeDef],  # (1)
) -> UpdateRuleResponseTypeDef:  # (2)
    ...- See Sequence[RuleUpdateTypeDef]
- See UpdateRuleResponseTypeDef
# update_rule method usage example with argument unpacking
kwargs: UpdateRuleRequestTypeDef = {  # (1)
    "RuleId": ...,
    "ChangeToken": ...,
    "Updates": ...,
}
parent.update_rule(**kwargs)update_rule_group#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").update_rule_group method.
 boto3 documentation
# update_rule_group method definition
def update_rule_group(
    self,
    *,
    RuleGroupId: str,
    Updates: Sequence[RuleGroupUpdateTypeDef],  # (1)
    ChangeToken: str,
) -> UpdateRuleGroupResponseTypeDef:  # (2)
    ...- See Sequence[RuleGroupUpdateTypeDef]
- See UpdateRuleGroupResponseTypeDef
# update_rule_group method usage example with argument unpacking
kwargs: UpdateRuleGroupRequestTypeDef = {  # (1)
    "RuleGroupId": ...,
    "Updates": ...,
    "ChangeToken": ...,
}
parent.update_rule_group(**kwargs)update_size_constraint_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").update_size_constraint_set method.
 boto3 documentation
# update_size_constraint_set method definition
def update_size_constraint_set(
    self,
    *,
    SizeConstraintSetId: str,
    ChangeToken: str,
    Updates: Sequence[SizeConstraintSetUpdateTypeDef],  # (1)
) -> UpdateSizeConstraintSetResponseTypeDef:  # (2)
    ...- See Sequence[SizeConstraintSetUpdateTypeDef]
- See UpdateSizeConstraintSetResponseTypeDef
# update_size_constraint_set method usage example with argument unpacking
kwargs: UpdateSizeConstraintSetRequestTypeDef = {  # (1)
    "SizeConstraintSetId": ...,
    "ChangeToken": ...,
    "Updates": ...,
}
parent.update_size_constraint_set(**kwargs)update_sql_injection_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").update_sql_injection_match_set method.
 boto3 documentation
# update_sql_injection_match_set method definition
def update_sql_injection_match_set(
    self,
    *,
    SqlInjectionMatchSetId: str,
    ChangeToken: str,
    Updates: Sequence[SqlInjectionMatchSetUpdateTypeDef],  # (1)
) -> UpdateSqlInjectionMatchSetResponseTypeDef:  # (2)
    ...- See Sequence[SqlInjectionMatchSetUpdateTypeDef]
- See UpdateSqlInjectionMatchSetResponseTypeDef
# update_sql_injection_match_set method usage example with argument unpacking
kwargs: UpdateSqlInjectionMatchSetRequestTypeDef = {  # (1)
    "SqlInjectionMatchSetId": ...,
    "ChangeToken": ...,
    "Updates": ...,
}
parent.update_sql_injection_match_set(**kwargs)update_web_acl#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").update_web_acl method.
 boto3 documentation
# update_web_acl method definition
def update_web_acl(
    self,
    *,
    WebACLId: str,
    ChangeToken: str,
    Updates: Sequence[WebACLUpdateTypeDef] = ...,  # (1)
    DefaultAction: WafActionTypeDef = ...,  # (2)
) -> UpdateWebACLResponseTypeDef:  # (3)
    ...- See Sequence[WebACLUpdateTypeDef]
- See WafActionTypeDef
- See UpdateWebACLResponseTypeDef
# update_web_acl method usage example with argument unpacking
kwargs: UpdateWebACLRequestTypeDef = {  # (1)
    "WebACLId": ...,
    "ChangeToken": ...,
}
parent.update_web_acl(**kwargs)update_xss_match_set#
This is AWS WAF Classic documentation.
Type annotations and code completion for boto3.client("waf-regional").update_xss_match_set method.
 boto3 documentation
# update_xss_match_set method definition
def update_xss_match_set(
    self,
    *,
    XssMatchSetId: str,
    ChangeToken: str,
    Updates: Sequence[XssMatchSetUpdateTypeDef],  # (1)
) -> UpdateXssMatchSetResponseTypeDef:  # (2)
    ...- See Sequence[XssMatchSetUpdateTypeDef]
- See UpdateXssMatchSetResponseTypeDef
# update_xss_match_set method usage example with argument unpacking
kwargs: UpdateXssMatchSetRequestTypeDef = {  # (1)
    "XssMatchSetId": ...,
    "ChangeToken": ...,
    "Updates": ...,
}
parent.update_xss_match_set(**kwargs)