pub enum CreateStackSetError {
CreatedButModified(String),
LimitExceeded(String),
NameAlreadyExists(String),
}Expand description
Errors returned by CreateStackSet
Variants§
CreatedButModified(String)
The specified resource exists, but has been changed.
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.
NameAlreadyExists(String)
The specified name is already in use.
Implementations§
Source§impl CreateStackSetError
impl CreateStackSetError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateStackSetError>
Trait Implementations§
Source§impl Debug for CreateStackSetError
impl Debug for CreateStackSetError
Source§impl Display for CreateStackSetError
impl Display for CreateStackSetError
Source§impl Error for CreateStackSetError
impl Error for CreateStackSetError
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 CreateStackSetError
impl PartialEq for CreateStackSetError
impl StructuralPartialEq for CreateStackSetError
Auto Trait Implementations§
impl Freeze for CreateStackSetError
impl RefUnwindSafe for CreateStackSetError
impl Send for CreateStackSetError
impl Sync for CreateStackSetError
impl Unpin for CreateStackSetError
impl UnwindSafe for CreateStackSetError
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