pub enum CreateReplicationInstanceError {
AccessDeniedFault(String),
InsufficientResourceCapacityFault(String),
InvalidResourceStateFault(String),
InvalidSubnet(String),
KMSKeyNotAccessibleFault(String),
ReplicationSubnetGroupDoesNotCoverEnoughAZs(String),
ResourceAlreadyExistsFault(String),
ResourceNotFoundFault(String),
ResourceQuotaExceededFault(String),
StorageQuotaExceededFault(String),
}Expand description
Errors returned by CreateReplicationInstance
Variants§
AccessDeniedFault(String)
AWS DMS was denied access to the endpoint. Check that the role is correctly configured.
InsufficientResourceCapacityFault(String)
There are not enough resources allocated to the database migration.
InvalidResourceStateFault(String)
The resource is in a state that prevents it from being used for database migration.
InvalidSubnet(String)
The subnet provided is invalid.
KMSKeyNotAccessibleFault(String)
AWS DMS cannot access the AWS KMS key.
ReplicationSubnetGroupDoesNotCoverEnoughAZs(String)
The replication subnet group does not cover enough Availability Zones (AZs). Edit the replication subnet group and add more AZs.
ResourceAlreadyExistsFault(String)
The resource you are attempting to create already exists.
ResourceNotFoundFault(String)
The resource could not be found.
ResourceQuotaExceededFault(String)
The quota for this resource quota has been exceeded.
StorageQuotaExceededFault(String)
The storage quota has been exceeded.
Implementations§
Trait Implementations§
Source§impl Error for CreateReplicationInstanceError
impl Error for CreateReplicationInstanceError
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()
Source§impl PartialEq for CreateReplicationInstanceError
impl PartialEq for CreateReplicationInstanceError
Source§fn eq(&self, other: &CreateReplicationInstanceError) -> bool
fn eq(&self, other: &CreateReplicationInstanceError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateReplicationInstanceError
Auto Trait Implementations§
impl Freeze for CreateReplicationInstanceError
impl RefUnwindSafe for CreateReplicationInstanceError
impl Send for CreateReplicationInstanceError
impl Sync for CreateReplicationInstanceError
impl Unpin for CreateReplicationInstanceError
impl UnwindSafe for CreateReplicationInstanceError
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