[][src]Enum rusoto_cloudtrail::AddTagsError

pub enum AddTagsError {
    CloudTrailARNInvalid(String),
    InvalidTagParameter(String),
    InvalidTrailName(String),
    NotOrganizationMasterAccount(String),
    OperationNotPermitted(String),
    ResourceNotFound(String),
    ResourceTypeNotSupported(String),
    TagsLimitExceeded(String),
    UnsupportedOperation(String),
}

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 and my--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.

Implementations

impl AddTagsError[src]

Trait Implementations

impl Debug for AddTagsError[src]

impl Display for AddTagsError[src]

impl Error for AddTagsError[src]

impl PartialEq<AddTagsError> for AddTagsError[src]

impl StructuralPartialEq for AddTagsError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.