WAFRegionalClient#
Index > WAFRegional > WAFRegionalClient
Auto-generated documentation for WAFRegional type annotations stubs module mypy-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 mypy_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 mypy_boto3_waf_regional.client import Exceptions
def handle_error(exc: Exceptions.ClientError) -> None:
...
Methods#
associate_web_acl#
.
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: AssociateWebACLRequestRequestTypeDef = { # (1)
"WebACLId": ...,
"ResourceArn": ...,
}
parent.associate_web_acl(**kwargs)
can_paginate#
Check if an operation can be paginated.
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:
...
close#
Closes underlying endpoint connections.
Type annotations and code completion for boto3.client("waf-regional").close
method.
boto3 documentation
# close method definition
def close(
self,
) -> None:
...
create_byte_match_set#
.
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: CreateByteMatchSetRequestRequestTypeDef = { # (1)
"Name": ...,
"ChangeToken": ...,
}
parent.create_byte_match_set(**kwargs)
create_geo_match_set#
.
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: CreateGeoMatchSetRequestRequestTypeDef = { # (1)
"Name": ...,
"ChangeToken": ...,
}
parent.create_geo_match_set(**kwargs)
create_ip_set#
.
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: CreateIPSetRequestRequestTypeDef = { # (1)
"Name": ...,
"ChangeToken": ...,
}
parent.create_ip_set(**kwargs)
create_rate_based_rule#
.
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 TagTypeDef
- See CreateRateBasedRuleResponseTypeDef
# create_rate_based_rule method usage example with argument unpacking
kwargs: CreateRateBasedRuleRequestRequestTypeDef = { # (1)
"Name": ...,
"MetricName": ...,
"RateKey": ...,
"RateLimit": ...,
"ChangeToken": ...,
}
parent.create_rate_based_rule(**kwargs)
create_regex_match_set#
.
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: CreateRegexMatchSetRequestRequestTypeDef = { # (1)
"Name": ...,
"ChangeToken": ...,
}
parent.create_regex_match_set(**kwargs)
create_regex_pattern_set#
.
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: CreateRegexPatternSetRequestRequestTypeDef = { # (1)
"Name": ...,
"ChangeToken": ...,
}
parent.create_regex_pattern_set(**kwargs)
create_rule#
.
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 TagTypeDef
- See CreateRuleResponseTypeDef
# create_rule method usage example with argument unpacking
kwargs: CreateRuleRequestRequestTypeDef = { # (1)
"Name": ...,
"MetricName": ...,
"ChangeToken": ...,
}
parent.create_rule(**kwargs)
create_rule_group#
.
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)
...
# create_rule_group method usage example with argument unpacking
kwargs: CreateRuleGroupRequestRequestTypeDef = { # (1)
"Name": ...,
"MetricName": ...,
"ChangeToken": ...,
}
parent.create_rule_group(**kwargs)
create_size_constraint_set#
.
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: CreateSizeConstraintSetRequestRequestTypeDef = { # (1)
"Name": ...,
"ChangeToken": ...,
}
parent.create_size_constraint_set(**kwargs)
create_sql_injection_match_set#
.
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: CreateSqlInjectionMatchSetRequestRequestTypeDef = { # (1)
"Name": ...,
"ChangeToken": ...,
}
parent.create_sql_injection_match_set(**kwargs)
create_web_acl#
.
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 TagTypeDef
- See CreateWebACLResponseTypeDef
# create_web_acl method usage example with argument unpacking
kwargs: CreateWebACLRequestRequestTypeDef = { # (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: CreateWebACLMigrationStackRequestRequestTypeDef = { # (1)
"WebACLId": ...,
"S3BucketName": ...,
"IgnoreUnsupportedType": ...,
}
parent.create_web_acl_migration_stack(**kwargs)
create_xss_match_set#
.
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: CreateXssMatchSetRequestRequestTypeDef = { # (1)
"Name": ...,
"ChangeToken": ...,
}
parent.create_xss_match_set(**kwargs)
delete_byte_match_set#
.
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: DeleteByteMatchSetRequestRequestTypeDef = { # (1)
"ByteMatchSetId": ...,
"ChangeToken": ...,
}
parent.delete_byte_match_set(**kwargs)
delete_geo_match_set#
.
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: DeleteGeoMatchSetRequestRequestTypeDef = { # (1)
"GeoMatchSetId": ...,
"ChangeToken": ...,
}
parent.delete_geo_match_set(**kwargs)
delete_ip_set#
.
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: DeleteIPSetRequestRequestTypeDef = { # (1)
"IPSetId": ...,
"ChangeToken": ...,
}
parent.delete_ip_set(**kwargs)
delete_logging_configuration#
.
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: DeleteLoggingConfigurationRequestRequestTypeDef = { # (1)
"ResourceArn": ...,
}
parent.delete_logging_configuration(**kwargs)
delete_permission_policy#
.
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: DeletePermissionPolicyRequestRequestTypeDef = { # (1)
"ResourceArn": ...,
}
parent.delete_permission_policy(**kwargs)
delete_rate_based_rule#
.
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: DeleteRateBasedRuleRequestRequestTypeDef = { # (1)
"RuleId": ...,
"ChangeToken": ...,
}
parent.delete_rate_based_rule(**kwargs)
delete_regex_match_set#
.
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: DeleteRegexMatchSetRequestRequestTypeDef = { # (1)
"RegexMatchSetId": ...,
"ChangeToken": ...,
}
parent.delete_regex_match_set(**kwargs)
delete_regex_pattern_set#
.
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: DeleteRegexPatternSetRequestRequestTypeDef = { # (1)
"RegexPatternSetId": ...,
"ChangeToken": ...,
}
parent.delete_regex_pattern_set(**kwargs)
delete_rule#
.
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: DeleteRuleRequestRequestTypeDef = { # (1)
"RuleId": ...,
"ChangeToken": ...,
}
parent.delete_rule(**kwargs)
delete_rule_group#
.
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: DeleteRuleGroupRequestRequestTypeDef = { # (1)
"RuleGroupId": ...,
"ChangeToken": ...,
}
parent.delete_rule_group(**kwargs)
delete_size_constraint_set#
.
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: DeleteSizeConstraintSetRequestRequestTypeDef = { # (1)
"SizeConstraintSetId": ...,
"ChangeToken": ...,
}
parent.delete_size_constraint_set(**kwargs)
delete_sql_injection_match_set#
.
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: DeleteSqlInjectionMatchSetRequestRequestTypeDef = { # (1)
"SqlInjectionMatchSetId": ...,
"ChangeToken": ...,
}
parent.delete_sql_injection_match_set(**kwargs)
delete_web_acl#
.
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: DeleteWebACLRequestRequestTypeDef = { # (1)
"WebACLId": ...,
"ChangeToken": ...,
}
parent.delete_web_acl(**kwargs)
delete_xss_match_set#
.
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: DeleteXssMatchSetRequestRequestTypeDef = { # (1)
"XssMatchSetId": ...,
"ChangeToken": ...,
}
parent.delete_xss_match_set(**kwargs)
disassociate_web_acl#
.
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: DisassociateWebACLRequestRequestTypeDef = { # (1)
"ResourceArn": ...,
}
parent.disassociate_web_acl(**kwargs)
generate_presigned_url#
Generate a presigned url given a client, its method, and arguments.
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:
...
get_byte_match_set#
.
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: GetByteMatchSetRequestRequestTypeDef = { # (1)
"ByteMatchSetId": ...,
}
parent.get_byte_match_set(**kwargs)
get_change_token#
.
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#
.
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: GetChangeTokenStatusRequestRequestTypeDef = { # (1)
"ChangeToken": ...,
}
parent.get_change_token_status(**kwargs)
get_geo_match_set#
.
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: GetGeoMatchSetRequestRequestTypeDef = { # (1)
"GeoMatchSetId": ...,
}
parent.get_geo_match_set(**kwargs)
get_ip_set#
.
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: GetIPSetRequestRequestTypeDef = { # (1)
"IPSetId": ...,
}
parent.get_ip_set(**kwargs)
get_logging_configuration#
.
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: GetLoggingConfigurationRequestRequestTypeDef = { # (1)
"ResourceArn": ...,
}
parent.get_logging_configuration(**kwargs)
get_permission_policy#
.
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: GetPermissionPolicyRequestRequestTypeDef = { # (1)
"ResourceArn": ...,
}
parent.get_permission_policy(**kwargs)
get_rate_based_rule#
.
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: GetRateBasedRuleRequestRequestTypeDef = { # (1)
"RuleId": ...,
}
parent.get_rate_based_rule(**kwargs)
get_rate_based_rule_managed_keys#
.
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: GetRateBasedRuleManagedKeysRequestRequestTypeDef = { # (1)
"RuleId": ...,
}
parent.get_rate_based_rule_managed_keys(**kwargs)
get_regex_match_set#
.
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: GetRegexMatchSetRequestRequestTypeDef = { # (1)
"RegexMatchSetId": ...,
}
parent.get_regex_match_set(**kwargs)
get_regex_pattern_set#
.
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: GetRegexPatternSetRequestRequestTypeDef = { # (1)
"RegexPatternSetId": ...,
}
parent.get_regex_pattern_set(**kwargs)
get_rule#
.
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: GetRuleRequestRequestTypeDef = { # (1)
"RuleId": ...,
}
parent.get_rule(**kwargs)
get_rule_group#
.
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: GetRuleGroupRequestRequestTypeDef = { # (1)
"RuleGroupId": ...,
}
parent.get_rule_group(**kwargs)
get_sampled_requests#
.
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: TimeWindowTypeDef, # (1)
MaxItems: int,
) -> GetSampledRequestsResponseTypeDef: # (2)
...
# get_sampled_requests method usage example with argument unpacking
kwargs: GetSampledRequestsRequestRequestTypeDef = { # (1)
"WebAclId": ...,
"RuleId": ...,
"TimeWindow": ...,
"MaxItems": ...,
}
parent.get_sampled_requests(**kwargs)
get_size_constraint_set#
.
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: GetSizeConstraintSetRequestRequestTypeDef = { # (1)
"SizeConstraintSetId": ...,
}
parent.get_size_constraint_set(**kwargs)
get_sql_injection_match_set#
.
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: GetSqlInjectionMatchSetRequestRequestTypeDef = { # (1)
"SqlInjectionMatchSetId": ...,
}
parent.get_sql_injection_match_set(**kwargs)
get_web_acl#
.
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: GetWebACLRequestRequestTypeDef = { # (1)
"WebACLId": ...,
}
parent.get_web_acl(**kwargs)
get_web_acl_for_resource#
.
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: GetWebACLForResourceRequestRequestTypeDef = { # (1)
"ResourceArn": ...,
}
parent.get_web_acl_for_resource(**kwargs)
get_xss_match_set#
.
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: GetXssMatchSetRequestRequestTypeDef = { # (1)
"XssMatchSetId": ...,
}
parent.get_xss_match_set(**kwargs)
list_activated_rules_in_rule_group#
.
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: ListActivatedRulesInRuleGroupRequestRequestTypeDef = { # (1)
"RuleGroupId": ...,
}
parent.list_activated_rules_in_rule_group(**kwargs)
list_byte_match_sets#
.
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: ListByteMatchSetsRequestRequestTypeDef = { # (1)
"NextMarker": ...,
}
parent.list_byte_match_sets(**kwargs)
list_geo_match_sets#
.
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: ListGeoMatchSetsRequestRequestTypeDef = { # (1)
"NextMarker": ...,
}
parent.list_geo_match_sets(**kwargs)
list_ip_sets#
.
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: ListIPSetsRequestRequestTypeDef = { # (1)
"NextMarker": ...,
}
parent.list_ip_sets(**kwargs)
list_logging_configurations#
.
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: ListLoggingConfigurationsRequestRequestTypeDef = { # (1)
"NextMarker": ...,
}
parent.list_logging_configurations(**kwargs)
list_rate_based_rules#
.
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: ListRateBasedRulesRequestRequestTypeDef = { # (1)
"NextMarker": ...,
}
parent.list_rate_based_rules(**kwargs)
list_regex_match_sets#
.
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: ListRegexMatchSetsRequestRequestTypeDef = { # (1)
"NextMarker": ...,
}
parent.list_regex_match_sets(**kwargs)
list_regex_pattern_sets#
.
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: ListRegexPatternSetsRequestRequestTypeDef = { # (1)
"NextMarker": ...,
}
parent.list_regex_pattern_sets(**kwargs)
list_resources_for_web_acl#
.
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: ListResourcesForWebACLRequestRequestTypeDef = { # (1)
"WebACLId": ...,
}
parent.list_resources_for_web_acl(**kwargs)
list_rule_groups#
.
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: ListRuleGroupsRequestRequestTypeDef = { # (1)
"NextMarker": ...,
}
parent.list_rule_groups(**kwargs)
list_rules#
.
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: ListRulesRequestRequestTypeDef = { # (1)
"NextMarker": ...,
}
parent.list_rules(**kwargs)
list_size_constraint_sets#
.
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: ListSizeConstraintSetsRequestRequestTypeDef = { # (1)
"NextMarker": ...,
}
parent.list_size_constraint_sets(**kwargs)
list_sql_injection_match_sets#
.
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: ListSqlInjectionMatchSetsRequestRequestTypeDef = { # (1)
"NextMarker": ...,
}
parent.list_sql_injection_match_sets(**kwargs)
list_subscribed_rule_groups#
.
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: ListSubscribedRuleGroupsRequestRequestTypeDef = { # (1)
"NextMarker": ...,
}
parent.list_subscribed_rule_groups(**kwargs)
list_tags_for_resource#
.
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: ListTagsForResourceRequestRequestTypeDef = { # (1)
"ResourceARN": ...,
}
parent.list_tags_for_resource(**kwargs)
list_web_acls#
.
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: ListWebACLsRequestRequestTypeDef = { # (1)
"NextMarker": ...,
}
parent.list_web_acls(**kwargs)
list_xss_match_sets#
.
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: ListXssMatchSetsRequestRequestTypeDef = { # (1)
"NextMarker": ...,
}
parent.list_xss_match_sets(**kwargs)
put_logging_configuration#
.
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: LoggingConfigurationTypeDef, # (1)
) -> PutLoggingConfigurationResponseTypeDef: # (2)
...
# put_logging_configuration method usage example with argument unpacking
kwargs: PutLoggingConfigurationRequestRequestTypeDef = { # (1)
"LoggingConfiguration": ...,
}
parent.put_logging_configuration(**kwargs)
put_permission_policy#
.
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: PutPermissionPolicyRequestRequestTypeDef = { # (1)
"ResourceArn": ...,
"Policy": ...,
}
parent.put_permission_policy(**kwargs)
tag_resource#
.
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 TagTypeDef
# tag_resource method usage example with argument unpacking
kwargs: TagResourceRequestRequestTypeDef = { # (1)
"ResourceARN": ...,
"Tags": ...,
}
parent.tag_resource(**kwargs)
untag_resource#
.
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: UntagResourceRequestRequestTypeDef = { # (1)
"ResourceARN": ...,
"TagKeys": ...,
}
parent.untag_resource(**kwargs)
update_byte_match_set#
.
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)
...
# update_byte_match_set method usage example with argument unpacking
kwargs: UpdateByteMatchSetRequestRequestTypeDef = { # (1)
"ByteMatchSetId": ...,
"ChangeToken": ...,
"Updates": ...,
}
parent.update_byte_match_set(**kwargs)
update_geo_match_set#
.
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)
...
# update_geo_match_set method usage example with argument unpacking
kwargs: UpdateGeoMatchSetRequestRequestTypeDef = { # (1)
"GeoMatchSetId": ...,
"ChangeToken": ...,
"Updates": ...,
}
parent.update_geo_match_set(**kwargs)
update_ip_set#
.
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)
...
# update_ip_set method usage example with argument unpacking
kwargs: UpdateIPSetRequestRequestTypeDef = { # (1)
"IPSetId": ...,
"ChangeToken": ...,
"Updates": ...,
}
parent.update_ip_set(**kwargs)
update_rate_based_rule#
.
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)
...
# update_rate_based_rule method usage example with argument unpacking
kwargs: UpdateRateBasedRuleRequestRequestTypeDef = { # (1)
"RuleId": ...,
"ChangeToken": ...,
"Updates": ...,
"RateLimit": ...,
}
parent.update_rate_based_rule(**kwargs)
update_regex_match_set#
.
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)
...
# update_regex_match_set method usage example with argument unpacking
kwargs: UpdateRegexMatchSetRequestRequestTypeDef = { # (1)
"RegexMatchSetId": ...,
"Updates": ...,
"ChangeToken": ...,
}
parent.update_regex_match_set(**kwargs)
update_regex_pattern_set#
.
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)
...
# update_regex_pattern_set method usage example with argument unpacking
kwargs: UpdateRegexPatternSetRequestRequestTypeDef = { # (1)
"RegexPatternSetId": ...,
"Updates": ...,
"ChangeToken": ...,
}
parent.update_regex_pattern_set(**kwargs)
update_rule#
.
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)
...
# update_rule method usage example with argument unpacking
kwargs: UpdateRuleRequestRequestTypeDef = { # (1)
"RuleId": ...,
"ChangeToken": ...,
"Updates": ...,
}
parent.update_rule(**kwargs)
update_rule_group#
.
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)
...
# update_rule_group method usage example with argument unpacking
kwargs: UpdateRuleGroupRequestRequestTypeDef = { # (1)
"RuleGroupId": ...,
"Updates": ...,
"ChangeToken": ...,
}
parent.update_rule_group(**kwargs)
update_size_constraint_set#
.
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)
...
# update_size_constraint_set method usage example with argument unpacking
kwargs: UpdateSizeConstraintSetRequestRequestTypeDef = { # (1)
"SizeConstraintSetId": ...,
"ChangeToken": ...,
"Updates": ...,
}
parent.update_size_constraint_set(**kwargs)
update_sql_injection_match_set#
.
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)
...
# update_sql_injection_match_set method usage example with argument unpacking
kwargs: UpdateSqlInjectionMatchSetRequestRequestTypeDef = { # (1)
"SqlInjectionMatchSetId": ...,
"ChangeToken": ...,
"Updates": ...,
}
parent.update_sql_injection_match_set(**kwargs)
update_web_acl#
.
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)
...
# update_web_acl method usage example with argument unpacking
kwargs: UpdateWebACLRequestRequestTypeDef = { # (1)
"WebACLId": ...,
"ChangeToken": ...,
}
parent.update_web_acl(**kwargs)
update_xss_match_set#
.
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)
...
# update_xss_match_set method usage example with argument unpacking
kwargs: UpdateXssMatchSetRequestRequestTypeDef = { # (1)
"XssMatchSetId": ...,
"ChangeToken": ...,
"Updates": ...,
}
parent.update_xss_match_set(**kwargs)