Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

impl ProvideAwsCredentials for Box<dyn ProvideAwsCredentials> #1990

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions rusoto/credential/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,13 @@ impl<P: ProvideAwsCredentials + Send + Sync> ProvideAwsCredentials for Arc<P> {
}
}

#[async_trait]
impl ProvideAwsCredentials for Box<dyn ProvideAwsCredentials + Send + Sync> {
async fn credentials(&self) -> Result<AwsCredentials, CredentialsError> {
self.as_ref().credentials().await
}
}

/// Wrapper for `ProvideAwsCredentials` that caches the credentials returned by the
/// wrapped provider. Each time the credentials are accessed, they are checked to see if
/// they have expired, in which case they are retrieved from the wrapped provider again.
Expand Down