#[non_exhaustive]pub enum ExecuteChangeSetError {
ChangeSetNotFoundException(ChangeSetNotFoundException),
InsufficientCapabilitiesException(InsufficientCapabilitiesException),
InvalidChangeSetStatusException(InvalidChangeSetStatusException),
TokenAlreadyExistsException(TokenAlreadyExistsException),
Unhandled(Unhandled),
}
Expand description
Error type for the ExecuteChangeSetError
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
ChangeSetNotFoundException(ChangeSetNotFoundException)
The specified change set name or ID doesn't exit. To view valid change sets for a stack, use the ListChangeSets
operation.
InsufficientCapabilitiesException(InsufficientCapabilitiesException)
The template contains resources with capabilities that weren't specified in the Capabilities parameter.
InvalidChangeSetStatusException(InvalidChangeSetStatusException)
The specified change set can't be used to update the stack. For example, the change set status might be CREATE_IN_PROGRESS
, or the stack status might be UPDATE_IN_PROGRESS
.
TokenAlreadyExistsException(TokenAlreadyExistsException)
A client request token already exists.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl ExecuteChangeSetError
impl ExecuteChangeSetError
sourcepub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
pub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
Creates the ExecuteChangeSetError::Unhandled
variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the ExecuteChangeSetError::Unhandled
variant from a aws_smithy_types::error::ErrorMetadata
.
sourcepub fn meta(&self) -> &ErrorMetadata
pub fn meta(&self) -> &ErrorMetadata
Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
sourcepub fn is_change_set_not_found_exception(&self) -> bool
pub fn is_change_set_not_found_exception(&self) -> bool
Returns true
if the error kind is ExecuteChangeSetError::ChangeSetNotFoundException
.
sourcepub fn is_insufficient_capabilities_exception(&self) -> bool
pub fn is_insufficient_capabilities_exception(&self) -> bool
Returns true
if the error kind is ExecuteChangeSetError::InsufficientCapabilitiesException
.
sourcepub fn is_invalid_change_set_status_exception(&self) -> bool
pub fn is_invalid_change_set_status_exception(&self) -> bool
Returns true
if the error kind is ExecuteChangeSetError::InvalidChangeSetStatusException
.
sourcepub fn is_token_already_exists_exception(&self) -> bool
pub fn is_token_already_exists_exception(&self) -> bool
Returns true
if the error kind is ExecuteChangeSetError::TokenAlreadyExistsException
.
Trait Implementations§
source§impl CreateUnhandledError for ExecuteChangeSetError
impl CreateUnhandledError for ExecuteChangeSetError
source§fn create_unhandled_error(
source: Box<dyn Error + Send + Sync + 'static>,
meta: Option<ErrorMetadata>
) -> Self
fn create_unhandled_error( source: Box<dyn Error + Send + Sync + 'static>, meta: Option<ErrorMetadata> ) -> Self
source
and error metadata.source§impl Debug for ExecuteChangeSetError
impl Debug for ExecuteChangeSetError
source§impl Display for ExecuteChangeSetError
impl Display for ExecuteChangeSetError
source§impl Error for ExecuteChangeSetError
impl Error for ExecuteChangeSetError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
source§impl From<ExecuteChangeSetError> for Error
impl From<ExecuteChangeSetError> for Error
source§fn from(err: ExecuteChangeSetError) -> Self
fn from(err: ExecuteChangeSetError) -> Self
source§impl ProvideErrorMetadata for ExecuteChangeSetError
impl ProvideErrorMetadata for ExecuteChangeSetError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for ExecuteChangeSetError
impl RequestId for ExecuteChangeSetError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.