Enum rusoto_lightsail::CreateInstancesError[][src]

pub enum CreateInstancesError {
    AccessDenied(String),
    AccountSetupInProgress(String),
    InvalidInput(String),
    NotFound(String),
    OperationFailure(String),
    Service(String),
    Unauthenticated(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateInstances

Variants

Lightsail throws this exception when the user cannot be authenticated or uses invalid credentials to access a resource.

Lightsail throws this exception when an account is still in the setup in progress state.

Lightsail throws this exception when user input does not conform to the validation rules of an input field.

Domain-related APIs are only available in the N. Virginia (us-east-1) Region. Please set your AWS Region configuration to us-east-1 to create, view, or edit these resources.

Lightsail throws this exception when it cannot find a resource.

Lightsail throws this exception when an operation fails to execute.

A general service exception.

Lightsail throws this exception when the user has not been authenticated.

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

Trait Implementations

impl Debug for CreateInstancesError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for CreateInstancesError
[src]

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

This method tests for !=.

impl From<Error> for CreateInstancesError
[src]

Performs the conversion.

impl From<CredentialsError> for CreateInstancesError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateInstancesError
[src]

Performs the conversion.

impl From<Error> for CreateInstancesError
[src]

Performs the conversion.

impl Display for CreateInstancesError
[src]

Formats the value using the given formatter. Read more

impl Error for CreateInstancesError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations