Uses of Interface
software.amazon.awssdk.auth.token.credentials.SdkTokenProvider
-
-
Uses of SdkTokenProvider in software.amazon.awssdk.auth.credentials
Methods in software.amazon.awssdk.auth.credentials that return SdkTokenProvider Modifier and Type Method Description static SdkTokenProviderTokenUtils. toSdkTokenProvider(IdentityProvider<? extends TokenIdentity> identityProvider) -
Uses of SdkTokenProvider in software.amazon.awssdk.auth.token.credentials
Classes in software.amazon.awssdk.auth.token.credentials that implement SdkTokenProvider Modifier and Type Class Description classProfileTokenProviderToken provider based on AWS configuration profiles.classSdkTokenProviderChainAnSdkTokenProviderimplementation that chains together multiple token providers.classStaticTokenProviderAn implementation ofSdkTokenProviderthat returns a set implementation ofSdkToken.Methods in software.amazon.awssdk.auth.token.credentials that return SdkTokenProvider Modifier and Type Method Description SdkTokenProviderChildProfileTokenProviderFactory. create(ProfileFile profileFile, Profile profile)Create a token provider for the provided profile.Methods in software.amazon.awssdk.auth.token.credentials with parameters of type SdkTokenProvider Modifier and Type Method Description default SdkTokenProviderChain.BuilderSdkTokenProviderChain.Builder. addTokenProvider(SdkTokenProvider tokenProvider)Add a token provider to the chain, after the token providers that have already been configured.static SdkTokenProviderChainSdkTokenProviderChain. of(SdkTokenProvider... sdkTokenProviders)Create a token provider chain with default configuration that checks the given token providers.default SdkTokenProviderChain.BuilderSdkTokenProviderChain.Builder. tokenProviders(SdkTokenProvider... tokenProviders)Configure the token providers that should be checked for token, in the order they should be checked.Method parameters in software.amazon.awssdk.auth.token.credentials with type arguments of type SdkTokenProvider Modifier and Type Method Description SdkTokenProviderChain.BuilderSdkTokenProviderChain.Builder. tokenProviders(Collection<? extends SdkTokenProvider> tokenProviders)Configure the token providers that should be checked for token, in the order they should be checked. -
Uses of SdkTokenProvider in software.amazon.awssdk.auth.token.credentials.aws
Classes in software.amazon.awssdk.auth.token.credentials.aws that implement SdkTokenProvider Modifier and Type Class Description classDefaultAwsTokenProviderA token provider chain that looks for providers in this order: A profile based provider that can initialize token providers based on profile configurations -
Uses of SdkTokenProvider in software.amazon.awssdk.auth.token.internal
Classes in software.amazon.awssdk.auth.token.internal that implement SdkTokenProvider Modifier and Type Class Description classLazyTokenProviderA wrapper forSdkTokenProviderthat defers creation of the underlying provider until the first time theresolveToken()method is invoked.Methods in software.amazon.awssdk.auth.token.internal that return types with arguments of type SdkTokenProvider Modifier and Type Method Description Optional<SdkTokenProvider>ProfileTokenProviderLoader. tokenProvider()Retrieve the token provider for which this profile has been configured, if available.Method parameters in software.amazon.awssdk.auth.token.internal with type arguments of type SdkTokenProvider Modifier and Type Method Description static LazyTokenProviderLazyTokenProvider. create(Supplier<SdkTokenProvider> delegateConstructor)Constructor parameters in software.amazon.awssdk.auth.token.internal with type arguments of type SdkTokenProvider Constructor Description LazyTokenProvider(Supplier<SdkTokenProvider> delegateConstructor)
-