Skip to content

Commit 8b7ac60

Browse files
committed
chore(credential-providers): unavailable browser credential providers throw at runtime
1 parent 3a82d4c commit 8b7ac60

File tree

1 file changed

+42
-1
lines changed

1 file changed

+42
-1
lines changed

packages/credential-providers/src/index.browser.ts

+42-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,47 @@ export * from "./fromCognitoIdentity";
22
export * from "./fromCognitoIdentityPool";
33
export { fromHttp } from "@aws-sdk/credential-provider-http";
44
export type { FromHttpOptions, HttpProviderCredentials } from "@aws-sdk/credential-provider-http";
5-
export * from "./fromEnv";
65
export * from "./fromTemporaryCredentials";
76
export * from "./fromWebToken";
7+
8+
export const fromContainerMetadata = async () => {
9+
notAvailable("fromContainerMetadata");
10+
};
11+
12+
export const fromEnv = async () => {
13+
notAvailable("fromEnv");
14+
};
15+
16+
export const fromIni = async () => {
17+
notAvailable("fromIni");
18+
};
19+
20+
export const fromInstanceMetadata = async () => {
21+
notAvailable("fromInstanceMetadata");
22+
};
23+
24+
export const fromNodeProviderChain = async () => {
25+
notAvailable("fromNodeProviderChain");
26+
};
27+
28+
export const fromProcess = async () => {
29+
notAvailable("fromProcess");
30+
};
31+
32+
export const fromSSO = async () => {
33+
notAvailable("fromSSO");
34+
};
35+
36+
export const fromTokenFile = async () => {
37+
notAvailable("fromTokenFile");
38+
};
39+
40+
/**
41+
* @internal
42+
*/
43+
const notAvailable = (name: string): never => {
44+
throw new Error(
45+
`${name} is not available in the browser mode or similar environment.
46+
See https://www.npmjs.com/package/@aws-sdk/credential-providers for usage.`
47+
);
48+
};

0 commit comments

Comments
 (0)