Struct aws_sdk_cloudcontrol::error::UpdateResourceError
source · #[non_exhaustive]pub struct UpdateResourceError {
pub kind: UpdateResourceErrorKind,
/* private fields */
}
Expand description
Error type for the UpdateResource
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: UpdateResourceErrorKind
Kind of error that occurred.
Implementations§
source§impl UpdateResourceError
impl UpdateResourceError
sourcepub fn new(kind: UpdateResourceErrorKind, meta: Error) -> Self
pub fn new(kind: UpdateResourceErrorKind, meta: Error) -> Self
Creates a new UpdateResourceError
.
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 UpdateResourceError::Unhandled
variant from any error type.
sourcepub fn generic(err: Error) -> Self
pub fn generic(err: Error) -> Self
Creates the UpdateResourceError::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 UpdateResourceErrorKind::AlreadyExistsException
.
sourcepub fn is_client_token_conflict_exception(&self) -> bool
pub fn is_client_token_conflict_exception(&self) -> bool
Returns true
if the error kind is UpdateResourceErrorKind::ClientTokenConflictException
.
sourcepub fn is_concurrent_operation_exception(&self) -> bool
pub fn is_concurrent_operation_exception(&self) -> bool
Returns true
if the error kind is UpdateResourceErrorKind::ConcurrentOperationException
.
sourcepub fn is_general_service_exception(&self) -> bool
pub fn is_general_service_exception(&self) -> bool
Returns true
if the error kind is UpdateResourceErrorKind::GeneralServiceException
.
sourcepub fn is_handler_failure_exception(&self) -> bool
pub fn is_handler_failure_exception(&self) -> bool
Returns true
if the error kind is UpdateResourceErrorKind::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 UpdateResourceErrorKind::HandlerInternalFailureException
.
sourcepub fn is_invalid_credentials_exception(&self) -> bool
pub fn is_invalid_credentials_exception(&self) -> bool
Returns true
if the error kind is UpdateResourceErrorKind::InvalidCredentialsException
.
sourcepub fn is_invalid_request_exception(&self) -> bool
pub fn is_invalid_request_exception(&self) -> bool
Returns true
if the error kind is UpdateResourceErrorKind::InvalidRequestException
.
sourcepub fn is_network_failure_exception(&self) -> bool
pub fn is_network_failure_exception(&self) -> bool
Returns true
if the error kind is UpdateResourceErrorKind::NetworkFailureException
.
sourcepub fn is_not_stabilized_exception(&self) -> bool
pub fn is_not_stabilized_exception(&self) -> bool
Returns true
if the error kind is UpdateResourceErrorKind::NotStabilizedException
.
sourcepub fn is_not_updatable_exception(&self) -> bool
pub fn is_not_updatable_exception(&self) -> bool
Returns true
if the error kind is UpdateResourceErrorKind::NotUpdatableException
.
sourcepub fn is_private_type_exception(&self) -> bool
pub fn is_private_type_exception(&self) -> bool
Returns true
if the error kind is UpdateResourceErrorKind::PrivateTypeException
.
sourcepub fn is_resource_conflict_exception(&self) -> bool
pub fn is_resource_conflict_exception(&self) -> bool
Returns true
if the error kind is UpdateResourceErrorKind::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 UpdateResourceErrorKind::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 UpdateResourceErrorKind::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 UpdateResourceErrorKind::ServiceLimitExceededException
.
sourcepub fn is_throttling_exception(&self) -> bool
pub fn is_throttling_exception(&self) -> bool
Returns true
if the error kind is UpdateResourceErrorKind::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 UpdateResourceErrorKind::TypeNotFoundException
.
sourcepub fn is_unsupported_action_exception(&self) -> bool
pub fn is_unsupported_action_exception(&self) -> bool
Returns true
if the error kind is UpdateResourceErrorKind::UnsupportedActionException
.