1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
"""Exceptions raised by the cloudtrail service."""
from moto.core.exceptions import JsonRESTError
class InvalidParameterCombinationException(JsonRESTError):
code = 400
def __init__(self, message: str):
super().__init__("InvalidParameterCombinationException", message)
class S3BucketDoesNotExistException(JsonRESTError):
code = 400
def __init__(self, message: str):
super().__init__("S3BucketDoesNotExistException", message)
class InsufficientSnsTopicPolicyException(JsonRESTError):
code = 400
def __init__(self, message: str):
super().__init__("InsufficientSnsTopicPolicyException", message)
class TrailNotFoundException(JsonRESTError):
code = 400
def __init__(self, account_id: str, name: str):
super().__init__(
"TrailNotFoundException",
f"Unknown trail: {name} for the user: {account_id}",
)
class InvalidTrailNameException(JsonRESTError):
code = 400
def __init__(self, message: str):
super().__init__("InvalidTrailNameException", message)
class TrailNameTooShort(InvalidTrailNameException):
def __init__(self, actual_length: int):
super().__init__(
f"Trail name too short. Minimum allowed length: 3 characters. Specified name length: {actual_length} characters."
)
class TrailNameTooLong(InvalidTrailNameException):
def __init__(self, actual_length: int):
super().__init__(
f"Trail name too long. Maximum allowed length: 128 characters. Specified name length: {actual_length} characters."
)
class TrailNameNotStartingCorrectly(InvalidTrailNameException):
def __init__(self) -> None:
super().__init__("Trail name must starts with a letter or number.")
class TrailNameNotEndingCorrectly(InvalidTrailNameException):
def __init__(self) -> None:
super().__init__("Trail name must ends with a letter or number.")
class TrailNameInvalidChars(InvalidTrailNameException):
def __init__(self) -> None:
super().__init__(
"Trail name or ARN can only contain uppercase letters, lowercase letters, numbers, periods (.), hyphens (-), and underscores (_)."
)
|