Enum rusoto_cloudfront::CreateInvalidationError[][src]

pub enum CreateInvalidationError {
    AccessDenied(String),
    BatchTooLarge(String),
    InconsistentQuantities(String),
    InvalidArgument(String),
    MissingBody(String),
    NoSuchDistribution(String),
    TooManyInvalidationsInProgress(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateInvalidation

Variants

Access denied.

The value of Quantity and the size of Items don't match.

The argument is invalid.

This operation requires a body. Ensure that the body is present and the Content-Type header is set.

The specified distribution does not exist.

You have exceeded the maximum number of allowable InProgress invalidation batch requests, or invalidation objects.

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 CreateInvalidationError
[src]

Trait Implementations

impl Debug for CreateInvalidationError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for CreateInvalidationError
[src]

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

This method tests for !=.

impl From<XmlParseError> for CreateInvalidationError
[src]

Performs the conversion.

impl From<CredentialsError> for CreateInvalidationError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateInvalidationError
[src]

Performs the conversion.

impl From<Error> for CreateInvalidationError
[src]

Performs the conversion.

impl Display for CreateInvalidationError
[src]

Formats the value using the given formatter. Read more

impl Error for CreateInvalidationError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations