Interface AWSCredentialsProvider

All Known Subinterfaces:
AWSSessionCredentialsProvider
All Known Implementing Classes:
AWSCredentialsProviderChain, ClasspathPropertiesFileCredentialsProvider, DefaultAWSCredentialsProviderChain, EnvironmentVariableCredentialsProvider, InstanceProfileCredentialsProvider, ProfileCredentialsProvider, PropertiesFileCredentialsProvider, STSAssumeRoleSessionCredentialsProvider, STSProfileCredentialsServiceProvider, STSSessionCredentialsProvider, SystemPropertiesCredentialsProvider, WebIdentityFederationSessionCredentialsProvider

public interface AWSCredentialsProvider
Interface for providing AWS credentials. Implementations are free to use any strategy for providing AWS credentials, such as simply providing static credentials that don't change, or more complicated implementations, such as integrating with existing key management systems.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns AWSCredentials which the caller can use to authorize an AWS request.
    void
    Forces this credentials provider to refresh its credentials.
  • Method Details

    • getCredentials

      AWSCredentials getCredentials()
      Returns AWSCredentials which the caller can use to authorize an AWS request. Each implementation of AWSCredentialsProvider can chose its own strategy for loading credentials. For example, an implementation might load credentials from an existing key management system, or load new credentials when credentials are rotated.
      Returns:
      AWSCredentials which the caller can use to authorize an AWS request.
    • refresh

      void refresh()
      Forces this credentials provider to refresh its credentials. For many implementations of credentials provider, this method may simply be a no-op, such as any credentials provider implementation that vends static/non-changing credentials. For other implementations that vend different credentials through out their lifetime, this method should force the credentials provider to refresh its credentials.