#[non_exhaustive]pub enum AddCommunicationToCaseError {
AttachmentSetExpired(AttachmentSetExpired),
AttachmentSetIdNotFound(AttachmentSetIdNotFound),
CaseIdNotFound(CaseIdNotFound),
InternalServerError(InternalServerError),
Unhandled(Unhandled),
}
Expand description
Error type for the AddCommunicationToCaseError
operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
AttachmentSetExpired(AttachmentSetExpired)
The expiration time of the attachment set has passed. The set expires 1 hour after it is created.
AttachmentSetIdNotFound(AttachmentSetIdNotFound)
An attachment set with the specified ID could not be found.
CaseIdNotFound(CaseIdNotFound)
The requested caseId
couldn't be located.
InternalServerError(InternalServerError)
An internal server error occurred.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl AddCommunicationToCaseError
impl AddCommunicationToCaseError
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 AddCommunicationToCaseError::Unhandled
variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the AddCommunicationToCaseError::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_attachment_set_expired(&self) -> bool
pub fn is_attachment_set_expired(&self) -> bool
Returns true
if the error kind is AddCommunicationToCaseError::AttachmentSetExpired
.
sourcepub fn is_attachment_set_id_not_found(&self) -> bool
pub fn is_attachment_set_id_not_found(&self) -> bool
Returns true
if the error kind is AddCommunicationToCaseError::AttachmentSetIdNotFound
.
sourcepub fn is_case_id_not_found(&self) -> bool
pub fn is_case_id_not_found(&self) -> bool
Returns true
if the error kind is AddCommunicationToCaseError::CaseIdNotFound
.
sourcepub fn is_internal_server_error(&self) -> bool
pub fn is_internal_server_error(&self) -> bool
Returns true
if the error kind is AddCommunicationToCaseError::InternalServerError
.
Trait Implementations§
source§impl CreateUnhandledError for AddCommunicationToCaseError
impl CreateUnhandledError for AddCommunicationToCaseError
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 AddCommunicationToCaseError
impl Debug for AddCommunicationToCaseError
source§impl Error for AddCommunicationToCaseError
impl Error for AddCommunicationToCaseError
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<AddCommunicationToCaseError> for Error
impl From<AddCommunicationToCaseError> for Error
source§fn from(err: AddCommunicationToCaseError) -> Self
fn from(err: AddCommunicationToCaseError) -> Self
source§impl ProvideErrorMetadata for AddCommunicationToCaseError
impl ProvideErrorMetadata for AddCommunicationToCaseError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for AddCommunicationToCaseError
impl RequestId for AddCommunicationToCaseError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.