@aws-sdk/credential-provider-sso 3.301.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/fromSSO.d.ts +8 -0
- package/dist-types/index.d.ts +12 -0
- package/dist-types/types.d.ts +2 -0
- package/package.json +6 -6
package/dist-types/fromSSO.d.ts
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { SSOClient } from "@aws-sdk/client-sso";
|
|
2
2
|
import { SourceProfileInit } from "@aws-sdk/shared-ini-file-loader";
|
|
3
3
|
import { AwsCredentialIdentityProvider } from "@aws-sdk/types";
|
|
4
|
+
/**
|
|
5
|
+
* @internal
|
|
6
|
+
*/
|
|
4
7
|
export interface SsoCredentialsParameters {
|
|
5
8
|
/**
|
|
6
9
|
* The URL to the AWS SSO service.
|
|
@@ -24,10 +27,15 @@ export interface SsoCredentialsParameters {
|
|
|
24
27
|
*/
|
|
25
28
|
ssoRoleName: string;
|
|
26
29
|
}
|
|
30
|
+
/**
|
|
31
|
+
* @internal
|
|
32
|
+
*/
|
|
27
33
|
export interface FromSSOInit extends SourceProfileInit {
|
|
28
34
|
ssoClient?: SSOClient;
|
|
29
35
|
}
|
|
30
36
|
/**
|
|
37
|
+
* @internal
|
|
38
|
+
*
|
|
31
39
|
* Creates a credential provider that will read from a credential_process specified
|
|
32
40
|
* in ini files.
|
|
33
41
|
*
|
package/dist-types/index.d.ts
CHANGED
package/dist-types/types.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-sso",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.303.0",
|
|
4
4
|
"description": "AWS credential provider that exchanges a resolved SSO login token file for temporary AWS credentials",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
},
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@aws-sdk/client-sso": "3.
|
|
28
|
-
"@aws-sdk/property-provider": "3.
|
|
29
|
-
"@aws-sdk/shared-ini-file-loader": "3.
|
|
30
|
-
"@aws-sdk/token-providers": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
27
|
+
"@aws-sdk/client-sso": "3.303.0",
|
|
28
|
+
"@aws-sdk/property-provider": "3.303.0",
|
|
29
|
+
"@aws-sdk/shared-ini-file-loader": "3.303.0",
|
|
30
|
+
"@aws-sdk/token-providers": "3.303.0",
|
|
31
|
+
"@aws-sdk/types": "3.303.0",
|
|
32
32
|
"tslib": "^2.5.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|