@aws-sdk/token-providers
Version:
A collection of token providers
9 lines (8 loc) • 330 B
JavaScript
import { TokenProviderError } from "@smithy/core/config";
export const fromStatic = ({ token, logger }) => async () => {
logger?.debug("@aws-sdk/token-providers - fromStatic");
if (!token || !token.token) {
throw new TokenProviderError(`Please pass a valid token to fromStatic`, false);
}
return token;
};