pub trait CredentialHelper: Send + Sync {
// Provided method
fn get_credentials(
&self,
request: GetCredentialsRequest,
additional_parameters: Vec<String>,
) -> Result<GetCredentialsResponse, String> { ... }
}Expand description
Represents a Credential Helper.
Note: we intentionally require all implementations of CredentialHelper to be thread- and async safe.