@aws-sdk/credential-providers 3.716.0 → 3.721.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.
@@ -41,6 +41,8 @@ export interface CustomCredentialChainOptions {
41
41
  * @param credentialProviders - one or more credential providers.
42
42
  * @returns a single AwsCredentialIdentityProvider that calls the given
43
43
  * providers in sequence until one succeeds or all fail.
44
+ *
45
+ * @public
44
46
  */
45
47
  export declare const createCredentialChain: (...credentialProviders: RuntimeConfigAwsCredentialIdentityProvider[]) => RuntimeConfigAwsCredentialIdentityProvider & CustomCredentialChainOptions;
46
48
  /**
@@ -1,5 +1,8 @@
1
1
  import type { CognitoIdentityClientConfig } from "@aws-sdk/client-cognito-identity";
2
2
  import { CognitoIdentityCredentialProvider as _CognitoIdentityCredentialProvider, FromCognitoIdentityParameters as _FromCognitoIdentityParameters } from "@aws-sdk/credential-provider-cognito-identity";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface FromCognitoIdentityParameters extends Omit<_FromCognitoIdentityParameters, "client"> {
4
7
  /**
5
8
  * Custom client configuration if you need overwrite default Cognito Identity client configuration.
@@ -41,5 +44,7 @@ export type CognitoIdentityCredentialProvider = _CognitoIdentityCredentialProvid
41
44
  * }),
42
45
  * });
43
46
  * ```
47
+ *
48
+ * @public
44
49
  */
45
50
  export declare const fromCognitoIdentity: (options: FromCognitoIdentityParameters) => CognitoIdentityCredentialProvider;
@@ -42,5 +42,7 @@ export interface FromCognitoIdentityPoolParameters extends Omit<_FromCognitoIden
42
42
  * }),
43
43
  * });
44
44
  * ```
45
+ *
46
+ * @public
45
47
  */
46
48
  export declare const fromCognitoIdentityPool: (options: FromCognitoIdentityPoolParameters) => CognitoIdentityCredentialProvider;
@@ -21,5 +21,7 @@ export interface RemoteProviderInit extends _RemoteProviderInit, CredentialProvi
21
21
  * }),
22
22
  * });
23
23
  * ```
24
+ *
25
+ * @public
24
26
  */
25
27
  export declare const fromContainerMetadata: (init?: RemoteProviderInit) => AwsCredentialIdentityProvider;
@@ -23,5 +23,7 @@ import { AwsCredentialIdentityProvider } from "@smithy/types";
23
23
  * credentials: fromEnv(),
24
24
  * });
25
25
  * ```
26
+ *
27
+ * @public
26
28
  */
27
29
  export declare const fromEnv: (init?: FromEnvInit) => AwsCredentialIdentityProvider;
@@ -38,5 +38,7 @@ import type { RuntimeConfigAwsCredentialIdentityProvider } from "@aws-sdk/types"
38
38
  * }),
39
39
  * });
40
40
  * ```
41
+ *
42
+ * @public
41
43
  */
42
44
  export declare const fromIni: (init?: FromIniInit) => RuntimeConfigAwsCredentialIdentityProvider;
@@ -19,5 +19,7 @@ import { AwsCredentialIdentityProvider } from "@smithy/types";
19
19
  * }),
20
20
  * });
21
21
  * ```
22
+ *
23
+ * @public
22
24
  */
23
25
  export declare const fromInstanceMetadata: (init?: _RemoteProviderInit & CredentialProviderOptions) => AwsCredentialIdentityProvider;
@@ -30,5 +30,7 @@ import type { AwsCredentialIdentityProvider } from "@smithy/types";
30
30
  * clientPlugins: [addFooHeadersPlugin],
31
31
  * })
32
32
  * ```
33
+ *
34
+ * @public
33
35
  */
34
36
  export declare const fromNodeProviderChain: (init?: DefaultProviderInit) => AwsCredentialIdentityProvider;
@@ -22,5 +22,7 @@ import { AwsCredentialIdentityProvider } from "@smithy/types";
22
22
  * }),
23
23
  * });
24
24
  * ```
25
+ *
26
+ * @public
25
27
  */
26
28
  export declare const fromProcess: (init?: FromProcessInit) => AwsCredentialIdentityProvider;
@@ -40,5 +40,7 @@ import { AwsCredentialIdentityProvider } from "@smithy/types";
40
40
  * }),
41
41
  * });
42
42
  * ```
43
+ *
44
+ * @public
43
45
  */
44
46
  export declare const fromSSO: (init?: FromSSOInit) => AwsCredentialIdentityProvider;
@@ -49,5 +49,7 @@ export interface FromTemporaryCredentialsOptions extends CredentialProviderOptio
49
49
  * ),
50
50
  * });
51
51
  * ```
52
+ *
53
+ * @public
52
54
  */
53
55
  export declare const fromTemporaryCredentials: (options: FromTemporaryCredentialsOptions) => AwsCredentialIdentityProvider;
@@ -27,5 +27,7 @@ import type { AwsCredentialIdentityProvider } from "@smithy/types";
27
27
  * });
28
28
  * });
29
29
  * ```
30
+ *
31
+ * @public
30
32
  */
31
33
  export declare const fromTokenFile: (init?: FromTokenFileInit) => AwsCredentialIdentityProvider;
@@ -36,5 +36,7 @@ import type { AwsCredentialIdentityProvider } from "@smithy/types";
36
36
  * }),
37
37
  * });
38
38
  * ```
39
+ *
40
+ * @public
39
41
  */
40
42
  export declare const fromWebToken: (init: FromWebTokenInit) => AwsCredentialIdentityProvider;
@@ -1,2 +1,5 @@
1
1
  import { AssumeRoleCommand, STSClient } from "@aws-sdk/client-sts";
2
+ /**
3
+ * @internal
4
+ */
2
5
  export { AssumeRoleCommand, STSClient };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-providers",
3
- "version": "3.716.0",
3
+ "version": "3.721.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",
@@ -30,17 +30,17 @@
30
30
  },
31
31
  "license": "Apache-2.0",
32
32
  "dependencies": {
33
- "@aws-sdk/client-cognito-identity": "3.716.0",
34
- "@aws-sdk/client-sso": "3.716.0",
35
- "@aws-sdk/client-sts": "3.716.0",
33
+ "@aws-sdk/client-cognito-identity": "3.721.0",
34
+ "@aws-sdk/client-sso": "3.721.0",
35
+ "@aws-sdk/client-sts": "3.721.0",
36
36
  "@aws-sdk/core": "3.716.0",
37
- "@aws-sdk/credential-provider-cognito-identity": "3.716.0",
37
+ "@aws-sdk/credential-provider-cognito-identity": "3.721.0",
38
38
  "@aws-sdk/credential-provider-env": "3.716.0",
39
39
  "@aws-sdk/credential-provider-http": "3.716.0",
40
- "@aws-sdk/credential-provider-ini": "3.716.0",
41
- "@aws-sdk/credential-provider-node": "3.716.0",
40
+ "@aws-sdk/credential-provider-ini": "3.721.0",
41
+ "@aws-sdk/credential-provider-node": "3.721.0",
42
42
  "@aws-sdk/credential-provider-process": "3.716.0",
43
- "@aws-sdk/credential-provider-sso": "3.716.0",
43
+ "@aws-sdk/credential-provider-sso": "3.721.0",
44
44
  "@aws-sdk/credential-provider-web-identity": "3.716.0",
45
45
  "@aws-sdk/types": "3.714.0",
46
46
  "@smithy/credential-provider-imds": "^3.2.8",