pub enum CreateReplicationJobError {
InternalError(String),
InvalidParameter(String),
MissingRequiredParameter(String),
NoConnectorsAvailable(String),
OperationNotPermitted(String),
ReplicationJobAlreadyExists(String),
ServerCannotBeReplicated(String),
TemporarilyUnavailable(String),
UnauthorizedOperation(String),
}Expand description
Errors returned by CreateReplicationJob
Variants§
InternalError(String)
An internal error occurred.
InvalidParameter(String)
A specified parameter is not valid.
MissingRequiredParameter(String)
A required parameter is missing.
NoConnectorsAvailable(String)
There are no connectors available.
OperationNotPermitted(String)
This operation is not allowed.
ReplicationJobAlreadyExists(String)
The specified replication job already exists.
ServerCannotBeReplicated(String)
The specified server cannot be replicated.
The service is temporarily unavailable.
You lack permissions needed to perform this operation. Check your IAM policies, and ensure that you are using the correct access keys.
Implementations§
Source§impl CreateReplicationJobError
impl CreateReplicationJobError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateReplicationJobError>
Trait Implementations§
Source§impl Debug for CreateReplicationJobError
impl Debug for CreateReplicationJobError
Source§impl Display for CreateReplicationJobError
impl Display for CreateReplicationJobError
Source§impl Error for CreateReplicationJobError
impl Error for CreateReplicationJobError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl StructuralPartialEq for CreateReplicationJobError
Auto Trait Implementations§
impl Freeze for CreateReplicationJobError
impl RefUnwindSafe for CreateReplicationJobError
impl Send for CreateReplicationJobError
impl Sync for CreateReplicationJobError
impl Unpin for CreateReplicationJobError
impl UnwindSafe for CreateReplicationJobError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more