pub enum CreateChangeSetError {
AlreadyExists(String),
InsufficientCapabilities(String),
LimitExceeded(String),
}Expand description
Errors returned by CreateChangeSet
Variants§
AlreadyExists(String)
The resource with the name requested already exists.
InsufficientCapabilities(String)
The template contains resources with capabilities that weren't specified in the Capabilities parameter.
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.
Implementations§
Source§impl CreateChangeSetError
impl CreateChangeSetError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<CreateChangeSetError>
Trait Implementations§
Source§impl Debug for CreateChangeSetError
impl Debug for CreateChangeSetError
Source§impl Display for CreateChangeSetError
impl Display for CreateChangeSetError
Source§impl Error for CreateChangeSetError
impl Error for CreateChangeSetError
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 CreateChangeSetError
impl PartialEq for CreateChangeSetError
Source§fn eq(&self, other: &CreateChangeSetError) -> bool
fn eq(&self, other: &CreateChangeSetError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateChangeSetError
Auto Trait Implementations§
impl Freeze for CreateChangeSetError
impl RefUnwindSafe for CreateChangeSetError
impl Send for CreateChangeSetError
impl Sync for CreateChangeSetError
impl Unpin for CreateChangeSetError
impl UnsafeUnpin for CreateChangeSetError
impl UnwindSafe for CreateChangeSetError
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