pub enum AddTagsError {
CloudTrailARNInvalid(String),
InvalidTagParameter(String),
InvalidTrailName(String),
NotOrganizationMasterAccount(String),
OperationNotPermitted(String),
ResourceNotFound(String),
ResourceTypeNotSupported(String),
TagsLimitExceeded(String),
UnsupportedOperation(String),
}
Expand description
Errors returned by AddTags
Variants§
CloudTrailARNInvalid(String)
This exception is thrown when an operation is called with an invalid trail ARN. The format of a trail ARN is:
arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail
InvalidTagParameter(String)
This exception is thrown when the specified tag key or values are not valid. It can also occur if there are duplicate tags or too many tags on the resource.
InvalidTrailName(String)
This exception is thrown when the provided trail name is not valid. Trail names must meet the following requirements:
-
Contain only ASCII letters (a-z, A-Z), numbers (0-9), periods (.), underscores (), or dashes (-)
-
Start with a letter or number, and end with a letter or number
-
Be between 3 and 128 characters
-
Have no adjacent periods, underscores or dashes. Names like
my-namespace
andmy--namespace
are invalid. -
Not be in IP address format (for example, 192.168.5.4)
NotOrganizationMasterAccount(String)
This exception is thrown when the AWS account making the request to create or update an organization trail is not the master account for an organization in AWS Organizations. For more information, see Prepare For Creating a Trail For Your Organization.
OperationNotPermitted(String)
This exception is thrown when the requested operation is not permitted.
ResourceNotFound(String)
This exception is thrown when the specified resource is not found.
ResourceTypeNotSupported(String)
This exception is thrown when the specified resource type is not supported by CloudTrail.
TagsLimitExceeded(String)
The number of tags per trail has exceeded the permitted amount. Currently, the limit is 50.
UnsupportedOperation(String)
This exception is thrown when the requested operation is not supported.