@aws-sdk/credential-provider-env 3.296.0 → 3.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/fromEnv.d.ts +14 -0
- package/dist-types/index.d.ts +3 -0
- package/package.json +3 -3
package/dist-types/fromEnv.d.ts
CHANGED
|
@@ -1,9 +1,23 @@
|
|
|
1
1
|
import { AwsCredentialIdentityProvider } from "@aws-sdk/types";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
2
5
|
export declare const ENV_KEY = "AWS_ACCESS_KEY_ID";
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
3
9
|
export declare const ENV_SECRET = "AWS_SECRET_ACCESS_KEY";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
4
13
|
export declare const ENV_SESSION = "AWS_SESSION_TOKEN";
|
|
14
|
+
/**
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
5
17
|
export declare const ENV_EXPIRATION = "AWS_CREDENTIAL_EXPIRATION";
|
|
6
18
|
/**
|
|
19
|
+
* @internal
|
|
20
|
+
*
|
|
7
21
|
* Source AWS credentials from known environment variables. If either the
|
|
8
22
|
* `AWS_ACCESS_KEY_ID` or `AWS_SECRET_ACCESS_KEY` environment variable is not
|
|
9
23
|
* set in this process, the provider will return a rejected promise.
|
package/dist-types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-env",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.303.0",
|
|
4
4
|
"description": "AWS credential provider that sources credentials from known environment variables",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
},
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@aws-sdk/property-provider": "3.
|
|
28
|
-
"@aws-sdk/types": "3.
|
|
27
|
+
"@aws-sdk/property-provider": "3.303.0",
|
|
28
|
+
"@aws-sdk/types": "3.303.0",
|
|
29
29
|
"tslib": "^2.5.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|