HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux ip-10-0-8-47 6.8.0-1021-aws #23~22.04.1-Ubuntu SMP Tue Dec 10 16:31:58 UTC 2024 aarch64
User: ubuntu (1000)
PHP: 8.1.2-1ubuntu2.22
Disabled: NONE
Upload Files
File: /var/www/javago_test/node_modules/aws-sdk/lib/token/token_provider_chain.d.ts
import {Token} from '../token';
import {AWSError} from '../error';
export class TokenProviderChain {
    /**
     * Creates a new TokenProviderChain with a default set of providers specified by defaultProviders.
     */
    constructor(providers?: provider[])
    /**
     * Resolves the provider chain by searching for the first set of token in providers.
     */
    resolve(callback:(err: AWSError|null, token?: Token) => void): TokenProviderChain;
    /**
     * Return a Promise on resolve() function
     */
    resolvePromise(): Promise<Token>;
    /**
     * Returns a list of token objects or functions that return token objects. If the provider is a function, the function will be executed lazily when the provider needs to be checked for valid token. By default, this object will be set to the defaultProviders.
     */
    providers: Array<Token|provider>;

    static defaultProviders: provider[]
}

type provider = () => Token;