Enum rusoto_lightsail::GetLoadBalancerTlsCertificatesError[][src]

pub enum GetLoadBalancerTlsCertificatesError {
    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 GetLoadBalancerTlsCertificates

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

Trait Implementations

impl Debug for GetLoadBalancerTlsCertificatesError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for GetLoadBalancerTlsCertificatesError
[src]

Performs the conversion.

impl From<HttpDispatchError> for GetLoadBalancerTlsCertificatesError
[src]

impl From<Error> for GetLoadBalancerTlsCertificatesError
[src]

Performs the conversion.

impl Display for GetLoadBalancerTlsCertificatesError
[src]

Formats the value using the given formatter. Read more

impl Error for GetLoadBalancerTlsCertificatesError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations