aws_sdk_bedrockagentruntime::error

Trait ProvideErrorMetadata

Source
pub trait ProvideErrorMetadata {
    // Required method
    fn meta(&self) -> &ErrorMetadata;

    // Provided methods
    fn code(&self) -> Option<&str> { ... }
    fn message(&self) -> Option<&str> { ... }
}
Expand description

Trait to retrieve error metadata from a result

Required Methods§

Source

fn meta(&self) -> &ErrorMetadata

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

Provided Methods§

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.

Implementations on Foreign Types§

Source§

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

Source§

impl<O, E> ProvideErrorMetadata for WaiterError<O, E>

Implementors§

Source§

impl ProvideErrorMetadata for Error

Source§

impl ProvideErrorMetadata for DeleteAgentMemoryError

Source§

impl ProvideErrorMetadata for GenerateQueryError

Source§

impl ProvideErrorMetadata for GetAgentMemoryError

Source§

impl ProvideErrorMetadata for InvokeAgentError

Source§

impl ProvideErrorMetadata for InvokeFlowError

Source§

impl ProvideErrorMetadata for InvokeInlineAgentError

Source§

impl ProvideErrorMetadata for OptimizePromptError

Source§

impl ProvideErrorMetadata for RerankError

Source§

impl ProvideErrorMetadata for RetrieveError

Source§

impl ProvideErrorMetadata for RetrieveAndGenerateError

Source§

impl ProvideErrorMetadata for RetrieveAndGenerateStreamError

Source§

impl ProvideErrorMetadata for FlowResponseStreamError

Source§

impl ProvideErrorMetadata for InlineAgentResponseStreamError

Source§

impl ProvideErrorMetadata for OptimizedPromptStreamError

Source§

impl ProvideErrorMetadata for ResponseStreamError

Source§

impl ProvideErrorMetadata for RetrieveAndGenerateStreamResponseOutputError

Source§

impl ProvideErrorMetadata for AccessDeniedException

Source§

impl ProvideErrorMetadata for BadGatewayException

Source§

impl ProvideErrorMetadata for ConflictException

Source§

impl ProvideErrorMetadata for DependencyFailedException

Source§

impl ProvideErrorMetadata for InternalServerException

Source§

impl ProvideErrorMetadata for ModelNotReadyException

Source§

impl ProvideErrorMetadata for ResourceNotFoundException

Source§

impl ProvideErrorMetadata for ServiceQuotaExceededException

Source§

impl ProvideErrorMetadata for ThrottlingException

Source§

impl ProvideErrorMetadata for ValidationException

Source§

impl ProvideErrorMetadata for ErrorMetadata