Class StaticTokenProvider
java.lang.Object
software.amazon.awssdk.auth.token.credentials.StaticTokenProvider
- All Implemented Interfaces:
SdkTokenProvider,IdentityProvider<TokenIdentity>
An implementation of
SdkTokenProvider that returns a set implementation of SdkToken.-
Method Summary
Modifier and TypeMethodDescriptionstatic StaticTokenProviderCreate a token provider that always returns the provided static token.Returns anSdkTokenthat can be used to authorize a request.toString()Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.awssdk.identity.spi.IdentityProvider
resolveIdentity, resolveIdentityMethods inherited from interface software.amazon.awssdk.auth.token.credentials.SdkTokenProvider
identityType, resolveIdentity
-
Method Details
-
create
Create a token provider that always returns the provided static token. -
resolveToken
Description copied from interface:SdkTokenProviderReturns anSdkTokenthat can be used to authorize a request. Each implementation of SdkTokenProvider can choose its own strategy for loading token. For example, an implementation might load token from an existing key management system, or load new token when token is refreshed.- Specified by:
resolveTokenin interfaceSdkTokenProvider- Returns:
- AwsToken which the caller can use to authorize an AWS request using token authorization for a request.
-
toString
-