pub enum CreateCloudFormationChangeSetError {
BadRequest(String),
Forbidden(String),
InternalServerError(String),
TooManyRequests(String),
}Expand description
Errors returned by CreateCloudFormationChangeSet
Variants§
BadRequest(String)
One of the parameters in the request is invalid.
Forbidden(String)
The client is not authenticated.
InternalServerError(String)
The AWS Serverless Application Repository service encountered an internal error.
TooManyRequests(String)
The client is sending more than the allowed number of requests per unit of time.
Implementations§
Trait Implementations§
Source§impl Error for CreateCloudFormationChangeSetError
impl Error for CreateCloudFormationChangeSetError
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 CreateCloudFormationChangeSetError
impl PartialEq for CreateCloudFormationChangeSetError
Source§fn eq(&self, other: &CreateCloudFormationChangeSetError) -> bool
fn eq(&self, other: &CreateCloudFormationChangeSetError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateCloudFormationChangeSetError
Auto Trait Implementations§
impl Freeze for CreateCloudFormationChangeSetError
impl RefUnwindSafe for CreateCloudFormationChangeSetError
impl Send for CreateCloudFormationChangeSetError
impl Sync for CreateCloudFormationChangeSetError
impl Unpin for CreateCloudFormationChangeSetError
impl UnwindSafe for CreateCloudFormationChangeSetError
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