Class StsCredentialsProvider
- java.lang.Object
-
- software.amazon.awssdk.services.sts.auth.StsCredentialsProvider
-
- All Implemented Interfaces:
AutoCloseable,AwsCredentialsProvider,IdentityProvider<AwsCredentialsIdentity>,SdkAutoCloseable
- Direct Known Subclasses:
StsAssumeRoleCredentialsProvider,StsAssumeRoleWithSamlCredentialsProvider,StsAssumeRoleWithWebIdentityCredentialsProvider,StsGetFederationTokenCredentialsProvider,StsGetSessionTokenCredentialsProvider,StsWebIdentityTokenFileCredentialsProvider
@ThreadSafe @SdkPublicApi public abstract class StsCredentialsProvider extends Object implements AwsCredentialsProvider, SdkAutoCloseable
An implementation ofAwsCredentialsProviderthat is extended within this package to provide support for periodically- updating session credentials. When credentials get close to expiration, this class will attempt to update them automatically either with a single calling thread (by default) or asynchronously (ifasyncCredentialUpdateEnabledis true). If the credentials expire, this class will block all calls toresolveCredentials()until the credentials are updated. Users of this provider mustclose()it when they are finished using it.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classStsCredentialsProvider.BaseBuilder<B extends StsCredentialsProvider.BaseBuilder<B,T>,T extends ToCopyableBuilder<B,T>>Extended by child class's builders to share configuration across credential providers.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()DurationprefetchTime()The amount of time, relative to STS token expiration, that the cached credentials are considered close to stale and should be updated.AwsCredentialsresolveCredentials()DurationstaleTime()The amount of time, relative to STS token expiration, that the cached credentials are considered stale and should no longer be used.StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.auth.credentials.AwsCredentialsProvider
identityType, resolveIdentity
-
Methods inherited from interface software.amazon.awssdk.identity.spi.IdentityProvider
resolveIdentity, resolveIdentity
-
-
-
-
Method Detail
-
resolveCredentials
public AwsCredentials resolveCredentials()
- Specified by:
resolveCredentialsin interfaceAwsCredentialsProvider
-
close
public void close()
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceSdkAutoCloseable
-
staleTime
public Duration staleTime()
The amount of time, relative to STS token expiration, that the cached credentials are considered stale and should no longer be used. All threads will block until the value is updated.
-
prefetchTime
public Duration prefetchTime()
The amount of time, relative to STS token expiration, that the cached credentials are considered close to stale and should be updated.
-
-