from typing import Optional from moto.core.exceptions import JsonRESTError class WAFv2ClientError(JsonRESTError): code = 400 class WAFV2DuplicateItemException(WAFv2ClientError): def __init__(self) -> None: super().__init__( "WafV2DuplicateItem", "AWS WAF could not perform the operation because some resource in your request is a duplicate of an existing one.", ) class WAFV2InsufficientInformationException(WAFv2ClientError): def __init__( self, name: Optional[str], scope: Optional[str], id: Optional[str], arn: Optional[str], ) -> None: super().__init__( "AcessDeniedException", ( "Critical information is missing in your request: " f"GetRuleGroupRequest(name={name if name else 'null'}, " f"scope={scope if scope else 'null'}, " f"id={id if id else 'null'}, " f"aRN={arn if arn is not None else 'null'})." ), ) class WAFNonexistentItemException(WAFv2ClientError): def __init__(self) -> None: super().__init__( "WAFNonexistentItemException", "AWS WAF couldn’t perform the operation because your resource doesn’t exist.", ) class WAFOptimisticLockException(WAFv2ClientError): def __init__(self) -> None: super().__init__( "WAFOptimisticLockException", "AWS WAF couldn’t save your changes because someone changed the resource after you started to edit it. Reapply your changes.", )
Memory