pub enum AddRoleToDBClusterError {
DBClusterNotFoundFault(String),
DBClusterRoleAlreadyExistsFault(String),
DBClusterRoleQuotaExceededFault(String),
InvalidDBClusterStateFault(String),
}
Expand description
Errors returned by AddRoleToDBCluster
Variants§
DBClusterNotFoundFault(String)
DBClusterIdentifier
doesn't refer to an existing DB cluster.
DBClusterRoleAlreadyExistsFault(String)
The specified IAM role Amazon Resource Name (ARN) is already associated with the specified DB cluster.
DBClusterRoleQuotaExceededFault(String)
You have exceeded the maximum number of IAM roles that can be associated with the specified DB cluster.
InvalidDBClusterStateFault(String)
The requested operation can't be performed while the cluster is in this state.
Implementations§
Source§impl AddRoleToDBClusterError
impl AddRoleToDBClusterError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<AddRoleToDBClusterError>
Trait Implementations§
Source§impl Debug for AddRoleToDBClusterError
impl Debug for AddRoleToDBClusterError
Source§impl Display for AddRoleToDBClusterError
impl Display for AddRoleToDBClusterError
Source§impl Error for AddRoleToDBClusterError
impl Error for AddRoleToDBClusterError
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 AddRoleToDBClusterError
impl PartialEq for AddRoleToDBClusterError
impl StructuralPartialEq for AddRoleToDBClusterError
Auto Trait Implementations§
impl Freeze for AddRoleToDBClusterError
impl RefUnwindSafe for AddRoleToDBClusterError
impl Send for AddRoleToDBClusterError
impl Sync for AddRoleToDBClusterError
impl Unpin for AddRoleToDBClusterError
impl UnwindSafe for AddRoleToDBClusterError
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