Files
2026-06-10 12:38:42 -03:00

9 lines
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;
};