pub enum SkipWaitTimeForInstanceTerminationError {
DeploymentAlreadyCompleted(String),
DeploymentDoesNotExist(String),
DeploymentIdRequired(String),
DeploymentNotStarted(String),
InvalidDeploymentId(String),
UnsupportedActionForDeploymentType(String),
}
Expand description
Errors returned by SkipWaitTimeForInstanceTermination
Variants§
DeploymentAlreadyCompleted(String)
The deployment is already complete.
DeploymentDoesNotExist(String)
The deployment with the IAM user or AWS account does not exist.
DeploymentIdRequired(String)
At least one deployment ID must be specified.
DeploymentNotStarted(String)
The specified deployment has not started.
InvalidDeploymentId(String)
At least one of the deployment IDs was specified in an invalid format.
UnsupportedActionForDeploymentType(String)
A call was submitted that is not supported for the specified deployment type.
Implementations§
Trait Implementations§
Source§impl Error for SkipWaitTimeForInstanceTerminationError
impl Error for SkipWaitTimeForInstanceTerminationError
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 SkipWaitTimeForInstanceTerminationError
impl PartialEq for SkipWaitTimeForInstanceTerminationError
Source§fn eq(&self, other: &SkipWaitTimeForInstanceTerminationError) -> bool
fn eq(&self, other: &SkipWaitTimeForInstanceTerminationError) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SkipWaitTimeForInstanceTerminationError
Auto Trait Implementations§
impl Freeze for SkipWaitTimeForInstanceTerminationError
impl RefUnwindSafe for SkipWaitTimeForInstanceTerminationError
impl Send for SkipWaitTimeForInstanceTerminationError
impl Sync for SkipWaitTimeForInstanceTerminationError
impl Unpin for SkipWaitTimeForInstanceTerminationError
impl UnwindSafe for SkipWaitTimeForInstanceTerminationError
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