pub use crate::types::error::_service_unavailable_exception::ServiceUnavailableException;
pub use crate::types::error::_operation_aborted_exception::OperationAbortedException;
pub use crate::types::error::_invalid_parameter_exception::InvalidParameterException;
pub use crate::types::error::_resource_not_found_exception::ResourceNotFoundException;
pub use crate::types::error::_access_denied_exception::AccessDeniedException;
pub use crate::types::error::_validation_exception::ValidationException;
pub use crate::types::error::_conflict_exception::ConflictException;
pub use crate::types::error::_throttling_exception::ThrottlingException;
pub use crate::types::error::_invalid_operation_exception::InvalidOperationException;
pub use crate::types::error::_too_many_tags_exception::TooManyTagsException;
pub use crate::types::error::_limit_exceeded_exception::LimitExceededException;
pub use crate::types::error::_malformed_query_exception::MalformedQueryException;
pub use crate::types::error::_session_streaming_exception::SessionStreamingException;
pub use crate::types::error::_session_timeout_exception::SessionTimeoutException;
#[non_exhaustive]
#[derive(::std::fmt::Debug)]
pub enum StartLiveTailResponseStreamError {
SessionTimeoutException(crate::types::error::SessionTimeoutException),
SessionStreamingException(crate::types::error::SessionStreamingException),
#[deprecated(note = "Matching `Unhandled` directly is not forwards compatible. Instead, match using a \
variable wildcard pattern and check `.code()`:
\
`err if err.code() == Some(\"SpecificExceptionCode\") => { /* handle the error */ }`
\
See [`ProvideErrorMetadata`](#impl-ProvideErrorMetadata-for-StartLiveTailResponseStreamError) for what information is available for the error.")]
Unhandled(crate::error::sealed_unhandled::Unhandled),
}
impl StartLiveTailResponseStreamError {
pub fn unhandled(
err: impl ::std::convert::Into<::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>>,
) -> Self {
Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
source: err.into(),
meta: ::std::default::Default::default(),
})
}
pub fn generic(err: ::aws_smithy_types::error::ErrorMetadata) -> Self {
Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
source: err.clone().into(),
meta: err,
})
}
pub fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
match self {
Self::SessionTimeoutException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
Self::SessionStreamingException(e) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(e),
Self::Unhandled(e) => &e.meta,
}
}
pub fn is_session_timeout_exception(&self) -> bool {
matches!(self, Self::SessionTimeoutException(_))
}
pub fn is_session_streaming_exception(&self) -> bool {
matches!(self, Self::SessionStreamingException(_))
}
}
impl ::std::error::Error for StartLiveTailResponseStreamError {
fn source(&self) -> ::std::option::Option<&(dyn ::std::error::Error + 'static)> {
match self {
Self::SessionTimeoutException(_inner) => ::std::option::Option::Some(_inner),
Self::SessionStreamingException(_inner) => ::std::option::Option::Some(_inner),
Self::Unhandled(_inner) => ::std::option::Option::Some(&*_inner.source),
}
}
}
impl ::std::fmt::Display for StartLiveTailResponseStreamError {
fn fmt(&self, f: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
match self {
Self::SessionTimeoutException(_inner) => _inner.fmt(f),
Self::SessionStreamingException(_inner) => _inner.fmt(f),
Self::Unhandled(_inner) => {
if let ::std::option::Option::Some(code) = ::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self) {
write!(f, "unhandled error ({code})")
} else {
f.write_str("unhandled error")
}
}
}
}
}
impl ::aws_smithy_types::retry::ProvideErrorKind for StartLiveTailResponseStreamError {
fn code(&self) -> ::std::option::Option<&str> {
::aws_smithy_types::error::metadata::ProvideErrorMetadata::code(self)
}
fn retryable_error_kind(&self) -> ::std::option::Option<::aws_smithy_types::retry::ErrorKind> {
::std::option::Option::None
}
}
impl ::aws_smithy_types::error::metadata::ProvideErrorMetadata for StartLiveTailResponseStreamError {
fn meta(&self) -> &::aws_smithy_types::error::ErrorMetadata {
match self {
Self::SessionTimeoutException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
Self::SessionStreamingException(_inner) => ::aws_smithy_types::error::metadata::ProvideErrorMetadata::meta(_inner),
Self::Unhandled(_inner) => &_inner.meta,
}
}
}
impl ::aws_smithy_runtime_api::client::result::CreateUnhandledError for StartLiveTailResponseStreamError {
fn create_unhandled_error(
source: ::std::boxed::Box<dyn ::std::error::Error + ::std::marker::Send + ::std::marker::Sync + 'static>,
meta: ::std::option::Option<::aws_smithy_types::error::ErrorMetadata>,
) -> Self {
Self::Unhandled(crate::error::sealed_unhandled::Unhandled {
source,
meta: meta.unwrap_or_default(),
})
}
}
impl ::aws_types::request_id::RequestId for crate::types::error::StartLiveTailResponseStreamError {
fn request_id(&self) -> Option<&str> {
self.meta().request_id()
}
}
pub use crate::types::error::_data_already_accepted_exception::DataAlreadyAcceptedException;
pub use crate::types::error::_invalid_sequence_token_exception::InvalidSequenceTokenException;
pub use crate::types::error::_unrecognized_client_exception::UnrecognizedClientException;
pub use crate::types::error::_service_quota_exceeded_exception::ServiceQuotaExceededException;
pub use crate::types::error::_resource_already_exists_exception::ResourceAlreadyExistsException;
mod _access_denied_exception;
mod _conflict_exception;
mod _data_already_accepted_exception;
mod _invalid_operation_exception;
mod _invalid_parameter_exception;
mod _invalid_sequence_token_exception;
mod _limit_exceeded_exception;
mod _malformed_query_exception;
mod _operation_aborted_exception;
mod _resource_already_exists_exception;
mod _resource_not_found_exception;
mod _service_quota_exceeded_exception;
mod _service_unavailable_exception;
mod _session_streaming_exception;
mod _session_timeout_exception;
mod _throttling_exception;
mod _too_many_tags_exception;
mod _unrecognized_client_exception;
mod _validation_exception;
pub mod builders;