aws_sdk_sts::error

Type Alias SdkError

Source
pub type SdkError<E, R = HttpResponse> = SdkError<E, R>;
Expand description

Error type returned by the client.

Aliased Type§

enum SdkError<E, R = HttpResponse> {
    ConstructionFailure(ConstructionFailure),
    TimeoutError(TimeoutError),
    DispatchFailure(DispatchFailure),
    ResponseError(ResponseError<R>),
    ServiceError(ServiceError<E, R>),
}

Variants§

§

ConstructionFailure(ConstructionFailure)

The request failed during construction. It was not dispatched over the network.

§

TimeoutError(TimeoutError)

The request failed due to a timeout. The request MAY have been sent and received.

§

DispatchFailure(DispatchFailure)

The request failed during dispatch. An HTTP response was not received. The request MAY have been sent.

§

ResponseError(ResponseError<R>)

A response was received but it was not parseable according the the protocol (for example the server hung up without sending a complete response)

§

ServiceError(ServiceError<E, R>)

An error response was received from the service

Implementations

Source§

impl<E, R> SdkError<E, R>

Source

pub fn construction_failure( source: impl Into<Box<dyn Error + Send + Sync>>, ) -> SdkError<E, R>

Construct a SdkError for a construction failure

Source

pub fn timeout_error( source: impl Into<Box<dyn Error + Send + Sync>>, ) -> SdkError<E, R>

Construct a SdkError for a timeout

Source

pub fn dispatch_failure(source: ConnectorError) -> SdkError<E, R>

Construct a SdkError for a dispatch failure with a ConnectorError

Source

pub fn response_error( source: impl Into<Box<dyn Error + Send + Sync>>, raw: R, ) -> SdkError<E, R>

Construct a SdkError for a response error

Source

pub fn service_error(source: E, raw: R) -> SdkError<E, R>

Construct a SdkError for a service failure

Source

pub fn into_service_error(self) -> E
where E: Error + Send + Sync + CreateUnhandledError + 'static, R: Debug + Send + Sync + 'static,

Returns the underlying service error E if there is one

If the SdkError is not a ServiceError (for example, the error is a network timeout), then it will be converted into an unhandled variant of E. This makes it easy to match on the service’s error response while simultaneously bubbling up transient failures. For example, handling the NoSuchKey error for S3’s GetObject operation may look as follows:

match sdk_err.into_service_error() {
    GetObjectError::NoSuchKey(_) => {
        // handle NoSuchKey
    }
    err @ _ => return Err(err),
}
Source

pub fn as_service_error(&self) -> Option<&E>

Returns a reference underlying service error E if there is one

§Examples
if sdk_err.as_service_error().map(|e|e.is_not_found()) == Some(true) {
    println!("the object doesn't exist");
    // return None, or handle this error specifically
}
// ... handle other error cases, happy path, etc.
Source

pub fn into_source(self) -> Result<Box<dyn Error + Send + Sync>, SdkError<E, R>>
where E: Error + Send + Sync + 'static,

Converts this error into its error source.

If there is no error source, then Err(Self) is returned.

Source

pub fn raw_response(&self) -> Option<&R>

Return a reference to this error’s raw response, if it contains one. Otherwise, return None.

Source

pub fn map_service_error<E2>(self, map: impl FnOnce(E) -> E2) -> SdkError<E2, R>

Maps the service error type in SdkError::ServiceError

Trait Implementations

Source§

impl<E, R> Debug for SdkError<E, R>
where E: Debug, R: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<E, R> Display for SdkError<E, R>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<E, R> Error for SdkError<E, R>
where E: Error + 'static, R: Debug,

Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more
Source§

impl<E, R> From<BuildError> for SdkError<E, R>

Source§

fn from(value: BuildError) -> SdkError<E, R>

Converts to this type from the input type.
Source§

impl<E, R> ProvideErrorMetadata for SdkError<E, R>

Source§

fn meta(&self) -> &ErrorMetadata

Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
Source§

fn code(&self) -> Option<&str>

Returns the error code if it’s available.
Source§

fn message(&self) -> Option<&str>

Returns the error message, if there is one.
Source§

impl<E> RequestId for SdkError<E, Response>

Source§

fn request_id(&self) -> Option<&str>

Returns the request ID, or None if the service could not be reached.