pub enum UpdateSubnetGroupError {
InvalidSubnet(String),
ServiceLinkedRoleNotFoundFault(String),
SubnetGroupNotFoundFault(String),
SubnetInUse(String),
SubnetQuotaExceededFault(String),
}
Expand description
Errors returned by UpdateSubnetGroup
Variants§
InvalidSubnet(String)
An invalid subnet identifier was specified.
ServiceLinkedRoleNotFoundFault(String)
The specified service linked role (SLR) was not found.
SubnetGroupNotFoundFault(String)
The requested subnet group name does not refer to an existing subnet group.
SubnetInUse(String)
The requested subnet is being used by another subnet group.
SubnetQuotaExceededFault(String)
The request cannot be processed because it would exceed the allowed number of subnets in a subnet group.
Implementations§
Source§impl UpdateSubnetGroupError
impl UpdateSubnetGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<UpdateSubnetGroupError>
Trait Implementations§
Source§impl Debug for UpdateSubnetGroupError
impl Debug for UpdateSubnetGroupError
Source§impl Display for UpdateSubnetGroupError
impl Display for UpdateSubnetGroupError
Source§impl Error for UpdateSubnetGroupError
impl Error for UpdateSubnetGroupError
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 UpdateSubnetGroupError
impl PartialEq for UpdateSubnetGroupError
impl StructuralPartialEq for UpdateSubnetGroupError
Auto Trait Implementations§
impl Freeze for UpdateSubnetGroupError
impl RefUnwindSafe for UpdateSubnetGroupError
impl Send for UpdateSubnetGroupError
impl Sync for UpdateSubnetGroupError
impl Unpin for UpdateSubnetGroupError
impl UnwindSafe for UpdateSubnetGroupError
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