Enum rusoto_route53::CreateHealthCheckError[][src]

pub enum CreateHealthCheckError {
    HealthCheckAlreadyExists(String),
    InvalidInput(String),
    TooManyHealthChecks(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateHealthCheck

Variants

The health check you're attempting to create already exists. Amazon Route 53 returns this error when you submit a request that has the following values:

  • The same value for CallerReference as an existing health check, and one or more values that differ from the existing health check that has the same caller reference.

  • The same value for CallerReference as a health check that you created and later deleted, regardless of the other settings in the request.

The input is not valid.

This health check can't be created because the current account has reached the limit on the number of active health checks.

For information about default limits, see Limits in the Amazon Route 53 Developer Guide.

For information about how to get the current limit for an account, see GetAccountLimit. To request a higher limit, create a case with the AWS Support Center.

You have reached the maximum number of active health checks for an AWS account. To request a higher limit, create a case with the AWS Support Center.

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

Trait Implementations

impl Debug for CreateHealthCheckError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for CreateHealthCheckError
[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 CreateHealthCheckError
[src]

Performs the conversion.

impl From<CredentialsError> for CreateHealthCheckError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateHealthCheckError
[src]

Performs the conversion.

impl From<Error> for CreateHealthCheckError
[src]

Performs the conversion.

impl Display for CreateHealthCheckError
[src]

Formats the value using the given formatter. Read more

impl Error for CreateHealthCheckError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations