#[non_exhaustive]pub enum ModifyAccountError {
AccessDeniedException(AccessDeniedException),
InvalidParameterValuesException(InvalidParameterValuesException),
InvalidResourceStateException(InvalidResourceStateException),
ResourceNotFoundException(ResourceNotFoundException),
ResourceUnavailableException(ResourceUnavailableException),
Unhandled(Unhandled),
}
Expand description
Error type for the ModifyAccountError
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
AccessDeniedException(AccessDeniedException)
The user is not authorized to access a resource.
InvalidParameterValuesException(InvalidParameterValuesException)
One or more parameter values are not valid.
InvalidResourceStateException(InvalidResourceStateException)
The state of the resource is not valid for this operation.
ResourceNotFoundException(ResourceNotFoundException)
The resource could not be found.
The specified resource is not available.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl ModifyAccountError
impl ModifyAccountError
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 ModifyAccountError::Unhandled
variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the ModifyAccountError::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_access_denied_exception(&self) -> bool
pub fn is_access_denied_exception(&self) -> bool
Returns true
if the error kind is ModifyAccountError::AccessDeniedException
.
sourcepub fn is_invalid_parameter_values_exception(&self) -> bool
pub fn is_invalid_parameter_values_exception(&self) -> bool
Returns true
if the error kind is ModifyAccountError::InvalidParameterValuesException
.
sourcepub fn is_invalid_resource_state_exception(&self) -> bool
pub fn is_invalid_resource_state_exception(&self) -> bool
Returns true
if the error kind is ModifyAccountError::InvalidResourceStateException
.
sourcepub fn is_resource_not_found_exception(&self) -> bool
pub fn is_resource_not_found_exception(&self) -> bool
Returns true
if the error kind is ModifyAccountError::ResourceNotFoundException
.
Returns true
if the error kind is ModifyAccountError::ResourceUnavailableException
.
Trait Implementations§
source§impl CreateUnhandledError for ModifyAccountError
impl CreateUnhandledError for ModifyAccountError
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 ModifyAccountError
impl Debug for ModifyAccountError
source§impl Display for ModifyAccountError
impl Display for ModifyAccountError
source§impl Error for ModifyAccountError
impl Error for ModifyAccountError
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<ModifyAccountError> for Error
impl From<ModifyAccountError> for Error
source§fn from(err: ModifyAccountError) -> Self
fn from(err: ModifyAccountError) -> Self
source§impl ProvideErrorMetadata for ModifyAccountError
impl ProvideErrorMetadata for ModifyAccountError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for ModifyAccountError
impl RequestId for ModifyAccountError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.