#[non_exhaustive]pub enum ResetParameterGroupError {
InvalidParameterCombinationException(InvalidParameterCombinationException),
InvalidParameterGroupStateFault(InvalidParameterGroupStateFault),
InvalidParameterValueException(InvalidParameterValueException),
ParameterGroupNotFoundFault(ParameterGroupNotFoundFault),
ServiceLinkedRoleNotFoundFault(ServiceLinkedRoleNotFoundFault),
Unhandled(Unhandled),
}
Expand description
Error type for the ResetParameterGroupError
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
InvalidParameterCombinationException(InvalidParameterCombinationException)
InvalidParameterGroupStateFault(InvalidParameterGroupStateFault)
InvalidParameterValueException(InvalidParameterValueException)
ParameterGroupNotFoundFault(ParameterGroupNotFoundFault)
ServiceLinkedRoleNotFoundFault(ServiceLinkedRoleNotFoundFault)
Unhandled(Unhandled)
Unhandled
directly is not forwards compatible. Instead, match using a variable wildcard pattern and check .code()
:
err if err.code() == Some("SpecificExceptionCode") => { /* handle the error */ }
See ProvideErrorMetadata
for what information is available for the error.An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl ResetParameterGroupError
impl ResetParameterGroupError
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 ResetParameterGroupError::Unhandled
variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the ResetParameterGroupError::Unhandled
variant from an 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_invalid_parameter_combination_exception(&self) -> bool
pub fn is_invalid_parameter_combination_exception(&self) -> bool
Returns true
if the error kind is ResetParameterGroupError::InvalidParameterCombinationException
.
sourcepub fn is_invalid_parameter_group_state_fault(&self) -> bool
pub fn is_invalid_parameter_group_state_fault(&self) -> bool
Returns true
if the error kind is ResetParameterGroupError::InvalidParameterGroupStateFault
.
sourcepub fn is_invalid_parameter_value_exception(&self) -> bool
pub fn is_invalid_parameter_value_exception(&self) -> bool
Returns true
if the error kind is ResetParameterGroupError::InvalidParameterValueException
.
sourcepub fn is_parameter_group_not_found_fault(&self) -> bool
pub fn is_parameter_group_not_found_fault(&self) -> bool
Returns true
if the error kind is ResetParameterGroupError::ParameterGroupNotFoundFault
.
sourcepub fn is_service_linked_role_not_found_fault(&self) -> bool
pub fn is_service_linked_role_not_found_fault(&self) -> bool
Returns true
if the error kind is ResetParameterGroupError::ServiceLinkedRoleNotFoundFault
.
Trait Implementations§
source§impl CreateUnhandledError for ResetParameterGroupError
impl CreateUnhandledError for ResetParameterGroupError
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 ResetParameterGroupError
impl Debug for ResetParameterGroupError
source§impl Display for ResetParameterGroupError
impl Display for ResetParameterGroupError
source§impl Error for ResetParameterGroupError
impl Error for ResetParameterGroupError
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<ResetParameterGroupError> for Error
impl From<ResetParameterGroupError> for Error
source§fn from(err: ResetParameterGroupError) -> Self
fn from(err: ResetParameterGroupError) -> Self
source§impl ProvideErrorMetadata for ResetParameterGroupError
impl ProvideErrorMetadata for ResetParameterGroupError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for ResetParameterGroupError
impl RequestId for ResetParameterGroupError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.