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