@aws-sdk/credential-providers 3.614.0 → 3.616.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.
@@ -14,9 +14,15 @@ import type { AwsCredentialIdentityProvider } from "@smithy/types";
14
14
  * // const { fromNodeProviderChain } = require("@aws-sdk/credential-providers") // CommonJS import
15
15
  *
16
16
  * const credentialProvider = fromNodeProviderChain({
17
- * //...any input of fromEnv(), fromSSO(), fromTokenFile(), fromIni(),
17
+ * // init properties for fromEnv(), fromSSO(), fromTokenFile(), fromIni(),
18
18
  * // fromProcess(), fromInstanceMetadata(), fromContainerMetadata()
19
19
  *
20
+ * // For instance, to ignore the ini shared cache, change the credentials filepath for all
21
+ * // providers, and set the sso start id:
22
+ * ignoreCache: true,
23
+ * filepath: "~/.config/aws/credentials",
24
+ * ssoStartUrl: "https://d-abc123.awsapps.com/start"
25
+ *
20
26
  * // Optional. Custom STS client configurations overriding the default ones.
21
27
  * clientConfig: { region },
22
28
  * // Optional. Custom STS client middleware plugin to modify the client default behavior.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-providers",
3
- "version": "3.614.0",
3
+ "version": "3.616.0",
4
4
  "description": "A collection of credential providers, without requiring service clients like STS, Cognito",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -28,16 +28,16 @@
28
28
  },
29
29
  "license": "Apache-2.0",
30
30
  "dependencies": {
31
- "@aws-sdk/client-cognito-identity": "3.614.0",
32
- "@aws-sdk/client-sso": "3.614.0",
33
- "@aws-sdk/client-sts": "3.614.0",
34
- "@aws-sdk/credential-provider-cognito-identity": "3.614.0",
31
+ "@aws-sdk/client-cognito-identity": "3.616.0",
32
+ "@aws-sdk/client-sso": "3.616.0",
33
+ "@aws-sdk/client-sts": "3.616.0",
34
+ "@aws-sdk/credential-provider-cognito-identity": "3.616.0",
35
35
  "@aws-sdk/credential-provider-env": "3.609.0",
36
- "@aws-sdk/credential-provider-http": "3.614.0",
37
- "@aws-sdk/credential-provider-ini": "3.614.0",
38
- "@aws-sdk/credential-provider-node": "3.614.0",
36
+ "@aws-sdk/credential-provider-http": "3.616.0",
37
+ "@aws-sdk/credential-provider-ini": "3.616.0",
38
+ "@aws-sdk/credential-provider-node": "3.616.0",
39
39
  "@aws-sdk/credential-provider-process": "3.614.0",
40
- "@aws-sdk/credential-provider-sso": "3.614.0",
40
+ "@aws-sdk/credential-provider-sso": "3.616.0",
41
41
  "@aws-sdk/credential-provider-web-identity": "3.609.0",
42
42
  "@aws-sdk/types": "3.609.0",
43
43
  "@smithy/credential-provider-imds": "^3.1.4",