pub trait RequestId {
    // Required method
    fn request_id(&self) -> Option<&str>;
}
Expand description

Implementers add a function to return an AWS request ID

Required Methods§

source

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

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

Implementations on Foreign Types§

source§

impl RequestId for HeaderMap<HeaderValue>

source§

impl RequestId for ErrorMetadata

source§

impl<O, E> RequestId for Result<O, E>where O: RequestId, E: RequestId,

source§

impl<B> RequestId for Response<B>

source§

impl RequestId for Unhandled

source§

impl RequestId for Response

Implementors§

source§

impl RequestId for Error

source§

impl RequestId for CreateDataIntegrationError

source§

impl RequestId for CreateEventIntegrationError

source§

impl RequestId for DeleteDataIntegrationError

source§

impl RequestId for DeleteEventIntegrationError

source§

impl RequestId for GetDataIntegrationError

source§

impl RequestId for GetEventIntegrationError

source§

impl RequestId for ListDataIntegrationAssociationsError

source§

impl RequestId for ListDataIntegrationsError

source§

impl RequestId for ListEventIntegrationAssociationsError

source§

impl RequestId for ListEventIntegrationsError

source§

impl RequestId for ListTagsForResourceError

source§

impl RequestId for TagResourceError

source§

impl RequestId for UntagResourceError

source§

impl RequestId for UpdateDataIntegrationError

source§

impl RequestId for UpdateEventIntegrationError

source§

impl RequestId for AccessDeniedException

source§

impl RequestId for DuplicateResourceException

source§

impl RequestId for InternalServiceError

source§

impl RequestId for InvalidRequestException

source§

impl RequestId for ResourceNotFoundException

source§

impl RequestId for ResourceQuotaExceededException

source§

impl RequestId for ThrottlingException

source§

impl RequestId for CreateDataIntegrationOutput

source§

impl RequestId for CreateEventIntegrationOutput

source§

impl RequestId for DeleteDataIntegrationOutput

source§

impl RequestId for DeleteEventIntegrationOutput

source§

impl RequestId for GetDataIntegrationOutput

source§

impl RequestId for GetEventIntegrationOutput

source§

impl RequestId for ListDataIntegrationAssociationsOutput

source§

impl RequestId for ListDataIntegrationsOutput

source§

impl RequestId for ListEventIntegrationAssociationsOutput

source§

impl RequestId for ListEventIntegrationsOutput

source§

impl RequestId for ListTagsForResourceOutput

source§

impl RequestId for TagResourceOutput

source§

impl RequestId for UntagResourceOutput

source§

impl RequestId for UpdateDataIntegrationOutput

source§

impl RequestId for UpdateEventIntegrationOutput

source§

impl<E, R> RequestId for SdkError<E, R>where R: HttpHeaders,