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§
Sourcefn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or None
if the service could not be reached.