pub enum CreateNodegroupError {
Client(String),
InvalidParameter(String),
InvalidRequest(String),
ResourceInUse(String),
ResourceLimitExceeded(String),
Server(String),
ServiceUnavailable(String),
}
Expand description
Errors returned by CreateNodegroup
Variants§
Client(String)
These errors are usually caused by a client action. Actions can include using an action or resource on behalf of a user that doesn't have permissions to use the action or resource or specifying an identifier that is not valid.
InvalidParameter(String)
The specified parameter is invalid. Review the available parameters for the API request.
InvalidRequest(String)
The request is invalid given the state of the cluster. Check the state of the cluster and the associated operations.
ResourceInUse(String)
The specified resource is in use.
ResourceLimitExceeded(String)
You have encountered a service limit on the specified resource.
Server(String)
These errors are usually caused by a server-side issue.
The service is unavailable. Back off and retry the operation.
Implementations§
Source§impl CreateNodegroupError
impl CreateNodegroupError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateNodegroupError>
Trait Implementations§
Source§impl Debug for CreateNodegroupError
impl Debug for CreateNodegroupError
Source§impl Display for CreateNodegroupError
impl Display for CreateNodegroupError
Source§impl Error for CreateNodegroupError
impl Error for CreateNodegroupError
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 CreateNodegroupError
impl PartialEq for CreateNodegroupError
impl StructuralPartialEq for CreateNodegroupError
Auto Trait Implementations§
impl Freeze for CreateNodegroupError
impl RefUnwindSafe for CreateNodegroupError
impl Send for CreateNodegroupError
impl Sync for CreateNodegroupError
impl Unpin for CreateNodegroupError
impl UnwindSafe for CreateNodegroupError
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