@aws-sdk/token-providers
Version:
A collection of token providers
12 lines (11 loc) • 407 B
TypeScript
import { AwsIdentityProperties } from "@aws-sdk/types";
import { SSOToken } from "@smithy/core/config";
import { FromSsoInit } from "./fromSso";
export declare const getNewSsoOidcToken: (
ssoToken: SSOToken,
ssoRegion: string,
init?: FromSsoInit,
callerClientConfig?: AwsIdentityProperties["callerClientConfig"]
) => Promise<
import("@aws-sdk/nested-clients/sso-oidc").CreateTokenCommandOutput
>;