pub enum CreateRelationalDatabaseError {
AccessDenied(String),
AccountSetupInProgress(String),
InvalidInput(String),
NotFound(String),
OperationFailure(String),
Service(String),
Unauthenticated(String),
}Expand description
Errors returned by CreateRelationalDatabase
Variants§
AccessDenied(String)
Lightsail throws this exception when the user cannot be authenticated or uses invalid credentials to access a resource.
AccountSetupInProgress(String)
Lightsail throws this exception when an account is still in the setup in progress state.
InvalidInput(String)
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.
NotFound(String)
Lightsail throws this exception when it cannot find a resource.
OperationFailure(String)
Lightsail throws this exception when an operation fails to execute.
Service(String)
A general service exception.
Unauthenticated(String)
Lightsail throws this exception when the user has not been authenticated.
Implementations§
Trait Implementations§
Source§impl Error for CreateRelationalDatabaseError
impl Error for CreateRelationalDatabaseError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
Source§impl PartialEq for CreateRelationalDatabaseError
impl PartialEq for CreateRelationalDatabaseError
Source§fn eq(&self, other: &CreateRelationalDatabaseError) -> bool
fn eq(&self, other: &CreateRelationalDatabaseError) -> bool
self and other values to be equal, and is used by ==.