pub enum CreateStackInstancesError {
InvalidOperation(String),
LimitExceeded(String),
OperationIdAlreadyExists(String),
OperationInProgress(String),
StackSetNotFound(String),
StaleRequest(String),
}Expand description
Errors returned by CreateStackInstances
Variants§
InvalidOperation(String)
The specified operation isn't valid.
LimitExceeded(String)
The quota for the resource has already been reached.
For information on resource and stack limitations, see Limits in the AWS CloudFormation User Guide.
OperationIdAlreadyExists(String)
The specified operation ID already exists.
OperationInProgress(String)
Another operation is currently in progress for this stack set. Only one operation can be performed for a stack set at a given time.
StackSetNotFound(String)
The specified stack set doesn't exist.
StaleRequest(String)
Another operation has been performed on this stack set since the specified operation was performed.
Implementations§
Source§impl CreateStackInstancesError
impl CreateStackInstancesError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateStackInstancesError>
Trait Implementations§
Source§impl Debug for CreateStackInstancesError
impl Debug for CreateStackInstancesError
Source§impl Display for CreateStackInstancesError
impl Display for CreateStackInstancesError
Source§impl Error for CreateStackInstancesError
impl Error for CreateStackInstancesError
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()
impl StructuralPartialEq for CreateStackInstancesError
Auto Trait Implementations§
impl Freeze for CreateStackInstancesError
impl RefUnwindSafe for CreateStackInstancesError
impl Send for CreateStackInstancesError
impl Sync for CreateStackInstancesError
impl Unpin for CreateStackInstancesError
impl UnwindSafe for CreateStackInstancesError
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