Struct aws_sdk_cloudcontrol::error::ListResourcesError
source · #[non_exhaustive]pub struct ListResourcesError {
pub kind: ListResourcesErrorKind,
/* private fields */
}
Expand description
Error type for the ListResources
operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.kind: ListResourcesErrorKind
Kind of error that occurred.
Implementations§
source§impl ListResourcesError
impl ListResourcesError
sourcepub fn new(kind: ListResourcesErrorKind, meta: Error) -> Self
pub fn new(kind: ListResourcesErrorKind, meta: Error) -> Self
Creates a new ListResourcesError
.
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 ListResourcesError::Unhandled
variant from any error type.
sourcepub fn generic(err: Error) -> Self
pub fn generic(err: Error) -> Self
Creates the ListResourcesError::Unhandled
variant from a aws_smithy_types::Error
.
sourcepub fn meta(&self) -> &Error
pub fn meta(&self) -> &Error
Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
sourcepub fn request_id(&self) -> Option<&str>
pub fn request_id(&self) -> Option<&str>
Returns the request ID if it’s available.
sourcepub fn is_already_exists_exception(&self) -> bool
pub fn is_already_exists_exception(&self) -> bool
Returns true
if the error kind is ListResourcesErrorKind::AlreadyExistsException
.
sourcepub fn is_general_service_exception(&self) -> bool
pub fn is_general_service_exception(&self) -> bool
Returns true
if the error kind is ListResourcesErrorKind::GeneralServiceException
.
sourcepub fn is_handler_failure_exception(&self) -> bool
pub fn is_handler_failure_exception(&self) -> bool
Returns true
if the error kind is ListResourcesErrorKind::HandlerFailureException
.
sourcepub fn is_handler_internal_failure_exception(&self) -> bool
pub fn is_handler_internal_failure_exception(&self) -> bool
Returns true
if the error kind is ListResourcesErrorKind::HandlerInternalFailureException
.
sourcepub fn is_invalid_credentials_exception(&self) -> bool
pub fn is_invalid_credentials_exception(&self) -> bool
Returns true
if the error kind is ListResourcesErrorKind::InvalidCredentialsException
.
sourcepub fn is_invalid_request_exception(&self) -> bool
pub fn is_invalid_request_exception(&self) -> bool
Returns true
if the error kind is ListResourcesErrorKind::InvalidRequestException
.
sourcepub fn is_network_failure_exception(&self) -> bool
pub fn is_network_failure_exception(&self) -> bool
Returns true
if the error kind is ListResourcesErrorKind::NetworkFailureException
.
sourcepub fn is_not_stabilized_exception(&self) -> bool
pub fn is_not_stabilized_exception(&self) -> bool
Returns true
if the error kind is ListResourcesErrorKind::NotStabilizedException
.
sourcepub fn is_not_updatable_exception(&self) -> bool
pub fn is_not_updatable_exception(&self) -> bool
Returns true
if the error kind is ListResourcesErrorKind::NotUpdatableException
.
sourcepub fn is_private_type_exception(&self) -> bool
pub fn is_private_type_exception(&self) -> bool
Returns true
if the error kind is ListResourcesErrorKind::PrivateTypeException
.
sourcepub fn is_resource_conflict_exception(&self) -> bool
pub fn is_resource_conflict_exception(&self) -> bool
Returns true
if the error kind is ListResourcesErrorKind::ResourceConflictException
.
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 ListResourcesErrorKind::ResourceNotFoundException
.
sourcepub fn is_service_internal_error_exception(&self) -> bool
pub fn is_service_internal_error_exception(&self) -> bool
Returns true
if the error kind is ListResourcesErrorKind::ServiceInternalErrorException
.
sourcepub fn is_service_limit_exceeded_exception(&self) -> bool
pub fn is_service_limit_exceeded_exception(&self) -> bool
Returns true
if the error kind is ListResourcesErrorKind::ServiceLimitExceededException
.
sourcepub fn is_throttling_exception(&self) -> bool
pub fn is_throttling_exception(&self) -> bool
Returns true
if the error kind is ListResourcesErrorKind::ThrottlingException
.
sourcepub fn is_type_not_found_exception(&self) -> bool
pub fn is_type_not_found_exception(&self) -> bool
Returns true
if the error kind is ListResourcesErrorKind::TypeNotFoundException
.
sourcepub fn is_unsupported_action_exception(&self) -> bool
pub fn is_unsupported_action_exception(&self) -> bool
Returns true
if the error kind is ListResourcesErrorKind::UnsupportedActionException
.