Enum rusoto_sms::CreateReplicationJobError[][src]

pub enum CreateReplicationJobError {
    InternalError(String),
    InvalidParameter(String),
    MissingRequiredParameter(String),
    NoConnectorsAvailable(String),
    OperationNotPermitted(String),
    ReplicationJobAlreadyExists(String),
    ServerCannotBeReplicated(String),
    UnauthorizedOperation(String),
    HttpDispatch(HttpDispatchError),
    Credentials(CredentialsError),
    Validation(String),
    Unknown(String),
}

Errors returned by CreateReplicationJob

Variants

An internal error has occured.

A parameter specified in the request is not valid, is unsupported, or cannot be used.

The request is missing a required parameter. Ensure that you have supplied all the required parameters for the request.

No connectors are available to handle this request. Please associate connector(s) and verify any existing connectors are healthy and can respond to requests.

The specified operation is not allowed. This error can occur for a number of reasons; for example, you might be trying to start a Replication Run before seed Replication Run.

An active Replication Job already exists for the specified server.

The provided server cannot be replicated.

This user does not have permissions to perform this operation.

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

Trait Implementations

impl Debug for CreateReplicationJobError
[src]

Formats the value using the given formatter. Read more

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

Performs the conversion.

impl From<CredentialsError> for CreateReplicationJobError
[src]

Performs the conversion.

impl From<HttpDispatchError> for CreateReplicationJobError
[src]

Performs the conversion.

impl From<Error> for CreateReplicationJobError
[src]

Performs the conversion.

impl Display for CreateReplicationJobError
[src]

Formats the value using the given formatter. Read more

impl Error for CreateReplicationJobError
[src]

This method is soft-deprecated. Read more

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

Auto Trait Implementations