pub trait AuditLogReason<'a>: Sealed {
// Required method
fn reason(self, reason: &'a str) -> Self
where Self: Sized;
}
Expand description
Attach a reason for a request.
Reasons are associated with the audit log entries that are automatically created for certain requests.