Enum rusoto_elasticbeanstalk::UpdateTagsForResourceError [] [src]

pub enum UpdateTagsForResourceError {
    InsufficientPrivileges(String),
    OperationInProgress(String),
    ResourceNotFound(String),
    ResourceTypeNotSupported(String),
    TooManyTags(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by UpdateTagsForResource

Variants

The specified account does not have sufficient privileges for one of more AWS services.

Unable to perform the specified operation because another operation that effects an element in this activity is already in progress.

A resource doesn't exist for the specified Amazon Resource Name (ARN).

The type of the specified Amazon Resource Name (ARN) isn't supported for this operation.

The number of tags in the resource would exceed the number of tags that each resource can have.

To calculate this, the operation considers both the number of tags the resource already has and the tags this operation would add if it succeeded.

An error occurred dispatching the HTTP request

An error was encountered with AWS credentials.

A validation error occurred. Details from AWS are provided.

An unknown error occurred. The raw HTTP response is provided.

Methods

impl UpdateTagsForResourceError
[src]

Trait Implementations

impl Debug for UpdateTagsForResourceError
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for UpdateTagsForResourceError
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl From<XmlParseError> for UpdateTagsForResourceError
[src]

[src]

Performs the conversion.

impl From<CredentialsError> for UpdateTagsForResourceError
[src]

[src]

Performs the conversion.

impl From<HttpDispatchError> for UpdateTagsForResourceError
[src]

[src]

Performs the conversion.

impl From<Error> for UpdateTagsForResourceError
[src]

[src]

Performs the conversion.

impl Display for UpdateTagsForResourceError
[src]

[src]

Formats the value using the given formatter. Read more

impl Error for UpdateTagsForResourceError
[src]

[src]

A short description of the error. Read more

1.0.0
[src]

The lower-level cause of this error, if any. Read more

Auto Trait Implementations