Initial
This commit is contained in:
8
resources/app/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js
generated
vendored
Normal file
8
resources/app/node_modules/@aws-sdk/token-providers/dist-es/fromStatic.js
generated
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
import { TokenProviderError } from "@smithy/property-provider";
|
||||
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;
|
||||
};
|
||||
Reference in New Issue
Block a user