pub enum CreateSubnetGroupError {
InvalidSubnet(String),
ServiceLinkedRoleNotFoundFault(String),
SubnetGroupAlreadyExistsFault(String),
SubnetGroupQuotaExceededFault(String),
SubnetQuotaExceededFault(String),
}
Expand description
Errors returned by CreateSubnetGroup
Variants§
InvalidSubnet(String)
An invalid subnet identifier was specified.
ServiceLinkedRoleNotFoundFault(String)
The specified service linked role (SLR) was not found.
SubnetGroupAlreadyExistsFault(String)
The specified subnet group already exists.
SubnetGroupQuotaExceededFault(String)
The request cannot be processed because it would exceed the allowed number of subnets in a 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 CreateSubnetGroupError
impl CreateSubnetGroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateSubnetGroupError>
Trait Implementations§
Source§impl Debug for CreateSubnetGroupError
impl Debug for CreateSubnetGroupError
Source§impl Display for CreateSubnetGroupError
impl Display for CreateSubnetGroupError
Source§impl Error for CreateSubnetGroupError
impl Error for CreateSubnetGroupError
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 CreateSubnetGroupError
impl PartialEq for CreateSubnetGroupError
impl StructuralPartialEq for CreateSubnetGroupError
Auto Trait Implementations§
impl Freeze for CreateSubnetGroupError
impl RefUnwindSafe for CreateSubnetGroupError
impl Send for CreateSubnetGroupError
impl Sync for CreateSubnetGroupError
impl Unpin for CreateSubnetGroupError
impl UnwindSafe for CreateSubnetGroupError
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