#[non_exhaustive]
pub enum RemoveTagsErrorKind {
    CloudTrailArnInvalidException(CloudTrailArnInvalidException),
    EventDataStoreNotFoundException(EventDataStoreNotFoundException),
    InactiveEventDataStoreException(InactiveEventDataStoreException),
    InvalidTagParameterException(InvalidTagParameterException),
    InvalidTrailNameException(InvalidTrailNameException),
    NotOrganizationMasterAccountException(NotOrganizationMasterAccountException),
    OperationNotPermittedException(OperationNotPermittedException),
    ResourceNotFoundException(ResourceNotFoundException),
    ResourceTypeNotSupportedException(ResourceTypeNotSupportedException),
    UnsupportedOperationException(UnsupportedOperationException),
    Unhandled(Box<dyn Error + Send + Sync + 'static>),
}
Expand description

Types of errors that can occur for the RemoveTags operation.

Variants (Non-exhaustive)

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.

CloudTrailArnInvalidException(CloudTrailArnInvalidException)

This exception is thrown when an operation is called with a trail ARN that is not valid. The following is the format of a trail ARN.

arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail

EventDataStoreNotFoundException(EventDataStoreNotFoundException)

The specified event data store was not found.

InactiveEventDataStoreException(InactiveEventDataStoreException)

The event data store against which you ran your query is inactive.

InvalidTagParameterException(InvalidTagParameterException)

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.

InvalidTrailNameException(InvalidTrailNameException)

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 not valid.

  • Not be in IP address format (for example, 192.168.5.4)

NotOrganizationMasterAccountException(NotOrganizationMasterAccountException)

This exception is thrown when the Amazon Web Services account making the request to create or update an organization trail is not the management account for an organization in Organizations. For more information, see Prepare For Creating a Trail For Your Organization.

OperationNotPermittedException(OperationNotPermittedException)

This exception is thrown when the requested operation is not permitted.

ResourceNotFoundException(ResourceNotFoundException)

This exception is thrown when the specified resource is not found.

ResourceTypeNotSupportedException(ResourceTypeNotSupportedException)

This exception is thrown when the specified resource type is not supported by CloudTrail.

UnsupportedOperationException(UnsupportedOperationException)

This exception is thrown when the requested operation is not supported.

Unhandled(Box<dyn Error + Send + Sync + 'static>)

An unexpected error, e.g. invalid JSON returned by the service or an unknown error code

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more