@aws-sdk/nested-clients 3.730.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/README.md +13 -0
- package/dist-cjs/index.js +2 -0
- package/dist-cjs/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +56 -0
- package/dist-cjs/submodules/sso-oidc/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/submodules/sso-oidc/endpoint/ruleset.js +106 -0
- package/dist-cjs/submodules/sso-oidc/index.js +804 -0
- package/dist-cjs/submodules/sso-oidc/runtimeConfig.browser.js +38 -0
- package/dist-cjs/submodules/sso-oidc/runtimeConfig.js +50 -0
- package/dist-cjs/submodules/sso-oidc/runtimeConfig.native.js +15 -0
- package/dist-cjs/submodules/sso-oidc/runtimeConfig.shared.js +40 -0
- package/dist-cjs/submodules/sts/STSClient.js +51 -0
- package/dist-cjs/submodules/sts/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/submodules/sts/auth/httpAuthSchemeProvider.js +63 -0
- package/dist-cjs/submodules/sts/endpoint/EndpointParameters.js +20 -0
- package/dist-cjs/submodules/sts/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/submodules/sts/endpoint/ruleset.js +145 -0
- package/dist-cjs/submodules/sts/index.js +950 -0
- package/dist-cjs/submodules/sts/runtimeConfig.browser.js +39 -0
- package/dist-cjs/submodules/sts/runtimeConfig.js +64 -0
- package/dist-cjs/submodules/sts/runtimeConfig.native.js +15 -0
- package/dist-cjs/submodules/sts/runtimeConfig.shared.js +40 -0
- package/dist-cjs/submodules/sts/runtimeExtensions.js +25 -0
- package/dist-es/index.js +1 -0
- package/dist-es/submodules/sso-oidc/SSOOIDC.js +9 -0
- package/dist-es/submodules/sso-oidc/SSOOIDCClient.js +47 -0
- package/dist-es/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/submodules/sso-oidc/auth/httpAuthSchemeProvider.js +50 -0
- package/dist-es/submodules/sso-oidc/commands/CreateTokenCommand.js +23 -0
- package/dist-es/submodules/sso-oidc/commands/index.js +1 -0
- package/dist-es/submodules/sso-oidc/endpoint/EndpointParameters.js +14 -0
- package/dist-es/submodules/sso-oidc/endpoint/endpointResolver.js +14 -0
- package/dist-es/submodules/sso-oidc/endpoint/ruleset.js +103 -0
- package/dist-es/submodules/sso-oidc/extensionConfiguration.js +1 -0
- package/dist-es/submodules/sso-oidc/index.js +5 -0
- package/dist-es/submodules/sso-oidc/models/SSOOIDCServiceException.js +8 -0
- package/dist-es/submodules/sso-oidc/models/index.js +1 -0
- package/dist-es/submodules/sso-oidc/models/models_0.js +190 -0
- package/dist-es/submodules/sso-oidc/protocols/Aws_restJson1.js +255 -0
- package/dist-es/submodules/sso-oidc/runtimeConfig.browser.js +33 -0
- package/dist-es/submodules/sso-oidc/runtimeConfig.js +45 -0
- package/dist-es/submodules/sso-oidc/runtimeConfig.native.js +11 -0
- package/dist-es/submodules/sso-oidc/runtimeConfig.shared.js +36 -0
- package/dist-es/submodules/sso-oidc/runtimeExtensions.js +21 -0
- package/dist-es/submodules/sts/STS.js +11 -0
- package/dist-es/submodules/sts/STSClient.js +47 -0
- package/dist-es/submodules/sts/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/submodules/sts/auth/httpAuthSchemeProvider.js +56 -0
- package/dist-es/submodules/sts/commands/AssumeRoleCommand.js +23 -0
- package/dist-es/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.js +23 -0
- package/dist-es/submodules/sts/commands/index.js +2 -0
- package/dist-es/submodules/sts/defaultRoleAssumers.js +22 -0
- package/dist-es/submodules/sts/defaultStsRoleAssumers.js +93 -0
- package/dist-es/submodules/sts/endpoint/EndpointParameters.js +16 -0
- package/dist-es/submodules/sts/endpoint/endpointResolver.js +14 -0
- package/dist-es/submodules/sts/endpoint/ruleset.js +142 -0
- package/dist-es/submodules/sts/extensionConfiguration.js +1 -0
- package/dist-es/submodules/sts/index.js +6 -0
- package/dist-es/submodules/sts/models/STSServiceException.js +8 -0
- package/dist-es/submodules/sts/models/index.js +1 -0
- package/dist-es/submodules/sts/models/models_0.js +102 -0
- package/dist-es/submodules/sts/protocols/Aws_query.js +528 -0
- package/dist-es/submodules/sts/runtimeConfig.browser.js +34 -0
- package/dist-es/submodules/sts/runtimeConfig.js +59 -0
- package/dist-es/submodules/sts/runtimeConfig.native.js +11 -0
- package/dist-es/submodules/sts/runtimeConfig.shared.js +36 -0
- package/dist-es/submodules/sts/runtimeExtensions.js +21 -0
- package/dist-types/index.d.ts +6 -0
- package/dist-types/submodules/sso-oidc/SSOOIDC.d.ts +54 -0
- package/dist-types/submodules/sso-oidc/SSOOIDCClient.d.ts +219 -0
- package/dist-types/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +128 -0
- package/dist-types/submodules/sso-oidc/commands/index.d.ts +1 -0
- package/dist-types/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/submodules/sso-oidc/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/submodules/sso-oidc/endpoint/ruleset.d.ts +2 -0
- package/dist-types/submodules/sso-oidc/extensionConfiguration.d.ts +9 -0
- package/dist-types/submodules/sso-oidc/index.d.ts +50 -0
- package/dist-types/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +14 -0
- package/dist-types/submodules/sso-oidc/models/index.d.ts +1 -0
- package/dist-types/submodules/sso-oidc/models/models_0.d.ts +396 -0
- package/dist-types/submodules/sso-oidc/protocols/Aws_restJson1.d.ts +11 -0
- package/dist-types/submodules/sso-oidc/runtimeConfig.browser.d.ts +56 -0
- package/dist-types/submodules/sso-oidc/runtimeConfig.d.ts +56 -0
- package/dist-types/submodules/sso-oidc/runtimeConfig.native.d.ts +55 -0
- package/dist-types/submodules/sso-oidc/runtimeConfig.shared.d.ts +32 -0
- package/dist-types/submodules/sso-oidc/runtimeExtensions.d.ts +17 -0
- package/dist-types/submodules/sts/STS.d.ts +27 -0
- package/dist-types/submodules/sts/STSClient.d.ts +192 -0
- package/dist-types/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/submodules/sts/auth/httpAuthSchemeProvider.d.ts +71 -0
- package/dist-types/submodules/sts/commands/AssumeRoleCommand.d.ts +222 -0
- package/dist-types/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +254 -0
- package/dist-types/submodules/sts/commands/index.d.ts +2 -0
- package/dist-types/submodules/sts/defaultRoleAssumers.d.ts +23 -0
- package/dist-types/submodules/sts/defaultStsRoleAssumers.d.ts +43 -0
- package/dist-types/submodules/sts/endpoint/EndpointParameters.d.ts +46 -0
- package/dist-types/submodules/sts/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/submodules/sts/endpoint/ruleset.d.ts +2 -0
- package/dist-types/submodules/sts/extensionConfiguration.d.ts +9 -0
- package/dist-types/submodules/sts/index.d.ts +17 -0
- package/dist-types/submodules/sts/models/STSServiceException.d.ts +14 -0
- package/dist-types/submodules/sts/models/index.d.ts +1 -0
- package/dist-types/submodules/sts/models/models_0.d.ts +712 -0
- package/dist-types/submodules/sts/protocols/Aws_query.d.ts +20 -0
- package/dist-types/submodules/sts/runtimeConfig.browser.d.ts +58 -0
- package/dist-types/submodules/sts/runtimeConfig.d.ts +56 -0
- package/dist-types/submodules/sts/runtimeConfig.native.d.ts +57 -0
- package/dist-types/submodules/sts/runtimeConfig.shared.d.ts +32 -0
- package/dist-types/submodules/sts/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/submodules/sso-oidc/SSOOIDC.d.ts +22 -0
- package/dist-types/ts3.4/submodules/sso-oidc/SSOOIDCClient.d.ts +121 -0
- package/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/submodules/sso-oidc/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/submodules/sso-oidc/commands/CreateTokenCommand.d.ts +43 -0
- package/dist-types/ts3.4/submodules/sso-oidc/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/submodules/sso-oidc/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/submodules/sso-oidc/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/submodules/sso-oidc/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/submodules/sso-oidc/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/submodules/sso-oidc/index.d.ts +8 -0
- package/dist-types/ts3.4/submodules/sso-oidc/models/SSOOIDCServiceException.d.ts +9 -0
- package/dist-types/ts3.4/submodules/sso-oidc/models/index.d.ts +1 -0
- package/dist-types/ts3.4/submodules/sso-oidc/models/models_0.d.ts +123 -0
- package/dist-types/ts3.4/submodules/sso-oidc/protocols/Aws_restJson1.d.ts +17 -0
- package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.browser.d.ts +116 -0
- package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.d.ts +113 -0
- package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.native.d.ts +120 -0
- package/dist-types/ts3.4/submodules/sso-oidc/runtimeConfig.shared.d.ts +49 -0
- package/dist-types/ts3.4/submodules/sso-oidc/runtimeExtensions.d.ts +11 -0
- package/dist-types/ts3.4/submodules/sts/STS.d.ts +39 -0
- package/dist-types/ts3.4/submodules/sts/STSClient.d.ts +128 -0
- package/dist-types/ts3.4/submodules/sts/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/submodules/sts/auth/httpAuthSchemeProvider.d.ts +54 -0
- package/dist-types/ts3.4/submodules/sts/commands/AssumeRoleCommand.d.ts +47 -0
- package/dist-types/ts3.4/submodules/sts/commands/AssumeRoleWithWebIdentityCommand.d.ts +51 -0
- package/dist-types/ts3.4/submodules/sts/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/submodules/sts/defaultRoleAssumers.d.ts +19 -0
- package/dist-types/ts3.4/submodules/sts/defaultStsRoleAssumers.d.ts +33 -0
- package/dist-types/ts3.4/submodules/sts/endpoint/EndpointParameters.d.ts +57 -0
- package/dist-types/ts3.4/submodules/sts/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/submodules/sts/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/submodules/sts/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/submodules/sts/index.d.ts +9 -0
- package/dist-types/ts3.4/submodules/sts/models/STSServiceException.d.ts +9 -0
- package/dist-types/ts3.4/submodules/sts/models/index.d.ts +1 -0
- package/dist-types/ts3.4/submodules/sts/models/models_0.d.ts +123 -0
- package/dist-types/ts3.4/submodules/sts/protocols/Aws_query.d.ts +29 -0
- package/dist-types/ts3.4/submodules/sts/runtimeConfig.browser.d.ts +127 -0
- package/dist-types/ts3.4/submodules/sts/runtimeConfig.d.ts +111 -0
- package/dist-types/ts3.4/submodules/sts/runtimeConfig.native.d.ts +131 -0
- package/dist-types/ts3.4/submodules/sts/runtimeConfig.shared.d.ts +51 -0
- package/dist-types/ts3.4/submodules/sts/runtimeExtensions.d.ts +11 -0
- package/package.json +115 -0
- package/sso-oidc.d.ts +7 -0
- package/sso-oidc.js +5 -0
- package/sts.d.ts +7 -0
- package/sts.js +5 -0
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { SSOOIDCServiceException as __BaseException } from "./SSOOIDCServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
error?: string | undefined;
|
|
7
|
+
error_description?: string | undefined;
|
|
8
|
+
constructor(
|
|
9
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
10
|
+
);
|
|
11
|
+
}
|
|
12
|
+
export declare class AuthorizationPendingException extends __BaseException {
|
|
13
|
+
readonly name: "AuthorizationPendingException";
|
|
14
|
+
readonly $fault: "client";
|
|
15
|
+
error?: string | undefined;
|
|
16
|
+
error_description?: string | undefined;
|
|
17
|
+
constructor(
|
|
18
|
+
opts: __ExceptionOptionType<AuthorizationPendingException, __BaseException>
|
|
19
|
+
);
|
|
20
|
+
}
|
|
21
|
+
export interface CreateTokenRequest {
|
|
22
|
+
clientId: string | undefined;
|
|
23
|
+
clientSecret: string | undefined;
|
|
24
|
+
grantType: string | undefined;
|
|
25
|
+
deviceCode?: string | undefined;
|
|
26
|
+
code?: string | undefined;
|
|
27
|
+
refreshToken?: string | undefined;
|
|
28
|
+
scope?: string[] | undefined;
|
|
29
|
+
redirectUri?: string | undefined;
|
|
30
|
+
codeVerifier?: string | undefined;
|
|
31
|
+
}
|
|
32
|
+
export declare const CreateTokenRequestFilterSensitiveLog: (
|
|
33
|
+
obj: CreateTokenRequest
|
|
34
|
+
) => any;
|
|
35
|
+
export interface CreateTokenResponse {
|
|
36
|
+
accessToken?: string | undefined;
|
|
37
|
+
tokenType?: string | undefined;
|
|
38
|
+
expiresIn?: number | undefined;
|
|
39
|
+
refreshToken?: string | undefined;
|
|
40
|
+
idToken?: string | undefined;
|
|
41
|
+
}
|
|
42
|
+
export declare const CreateTokenResponseFilterSensitiveLog: (
|
|
43
|
+
obj: CreateTokenResponse
|
|
44
|
+
) => any;
|
|
45
|
+
export declare class ExpiredTokenException extends __BaseException {
|
|
46
|
+
readonly name: "ExpiredTokenException";
|
|
47
|
+
readonly $fault: "client";
|
|
48
|
+
error?: string | undefined;
|
|
49
|
+
error_description?: string | undefined;
|
|
50
|
+
constructor(
|
|
51
|
+
opts: __ExceptionOptionType<ExpiredTokenException, __BaseException>
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
export declare class InternalServerException extends __BaseException {
|
|
55
|
+
readonly name: "InternalServerException";
|
|
56
|
+
readonly $fault: "server";
|
|
57
|
+
error?: string | undefined;
|
|
58
|
+
error_description?: string | undefined;
|
|
59
|
+
constructor(
|
|
60
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
61
|
+
);
|
|
62
|
+
}
|
|
63
|
+
export declare class InvalidClientException extends __BaseException {
|
|
64
|
+
readonly name: "InvalidClientException";
|
|
65
|
+
readonly $fault: "client";
|
|
66
|
+
error?: string | undefined;
|
|
67
|
+
error_description?: string | undefined;
|
|
68
|
+
constructor(
|
|
69
|
+
opts: __ExceptionOptionType<InvalidClientException, __BaseException>
|
|
70
|
+
);
|
|
71
|
+
}
|
|
72
|
+
export declare class InvalidGrantException extends __BaseException {
|
|
73
|
+
readonly name: "InvalidGrantException";
|
|
74
|
+
readonly $fault: "client";
|
|
75
|
+
error?: string | undefined;
|
|
76
|
+
error_description?: string | undefined;
|
|
77
|
+
constructor(
|
|
78
|
+
opts: __ExceptionOptionType<InvalidGrantException, __BaseException>
|
|
79
|
+
);
|
|
80
|
+
}
|
|
81
|
+
export declare class InvalidRequestException extends __BaseException {
|
|
82
|
+
readonly name: "InvalidRequestException";
|
|
83
|
+
readonly $fault: "client";
|
|
84
|
+
error?: string | undefined;
|
|
85
|
+
error_description?: string | undefined;
|
|
86
|
+
constructor(
|
|
87
|
+
opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
|
|
88
|
+
);
|
|
89
|
+
}
|
|
90
|
+
export declare class InvalidScopeException extends __BaseException {
|
|
91
|
+
readonly name: "InvalidScopeException";
|
|
92
|
+
readonly $fault: "client";
|
|
93
|
+
error?: string | undefined;
|
|
94
|
+
error_description?: string | undefined;
|
|
95
|
+
constructor(
|
|
96
|
+
opts: __ExceptionOptionType<InvalidScopeException, __BaseException>
|
|
97
|
+
);
|
|
98
|
+
}
|
|
99
|
+
export declare class SlowDownException extends __BaseException {
|
|
100
|
+
readonly name: "SlowDownException";
|
|
101
|
+
readonly $fault: "client";
|
|
102
|
+
error?: string | undefined;
|
|
103
|
+
error_description?: string | undefined;
|
|
104
|
+
constructor(opts: __ExceptionOptionType<SlowDownException, __BaseException>);
|
|
105
|
+
}
|
|
106
|
+
export declare class UnauthorizedClientException extends __BaseException {
|
|
107
|
+
readonly name: "UnauthorizedClientException";
|
|
108
|
+
readonly $fault: "client";
|
|
109
|
+
error?: string | undefined;
|
|
110
|
+
error_description?: string | undefined;
|
|
111
|
+
constructor(
|
|
112
|
+
opts: __ExceptionOptionType<UnauthorizedClientException, __BaseException>
|
|
113
|
+
);
|
|
114
|
+
}
|
|
115
|
+
export declare class UnsupportedGrantTypeException extends __BaseException {
|
|
116
|
+
readonly name: "UnsupportedGrantTypeException";
|
|
117
|
+
readonly $fault: "client";
|
|
118
|
+
error?: string | undefined;
|
|
119
|
+
error_description?: string | undefined;
|
|
120
|
+
constructor(
|
|
121
|
+
opts: __ExceptionOptionType<UnsupportedGrantTypeException, __BaseException>
|
|
122
|
+
);
|
|
123
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@smithy/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateTokenCommandInput,
|
|
8
|
+
CreateTokenCommandOutput,
|
|
9
|
+
} from "../commands/CreateTokenCommand";
|
|
10
|
+
export declare const se_CreateTokenCommand: (
|
|
11
|
+
input: CreateTokenCommandInput,
|
|
12
|
+
context: __SerdeContext
|
|
13
|
+
) => Promise<__HttpRequest>;
|
|
14
|
+
export declare const de_CreateTokenCommand: (
|
|
15
|
+
output: __HttpResponse,
|
|
16
|
+
context: __SerdeContext
|
|
17
|
+
) => Promise<CreateTokenCommandOutput>;
|
|
@@ -0,0 +1,116 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { SSOOIDCClientConfig } from "./SSOOIDCClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
+
defaultUserAgentProvider: (
|
|
10
|
+
config?:
|
|
11
|
+
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
12
|
+
| undefined
|
|
13
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
14
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
15
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
16
|
+
requestHandler:
|
|
17
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
18
|
+
| RequestHandler;
|
|
19
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
20
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
21
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
22
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
|
+
apiVersion: string;
|
|
25
|
+
cacheMiddleware?: boolean | undefined;
|
|
26
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
27
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
28
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
29
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
30
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
31
|
+
disableHostPrefix: boolean;
|
|
32
|
+
serviceId: string;
|
|
33
|
+
profile?: string | undefined;
|
|
34
|
+
logger: import("@smithy/types").Logger;
|
|
35
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
36
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
37
|
+
userAgentAppId?:
|
|
38
|
+
| string
|
|
39
|
+
| import("@smithy/types").Provider<string | undefined>
|
|
40
|
+
| undefined;
|
|
41
|
+
retryStrategy?:
|
|
42
|
+
| import("@smithy/types").RetryStrategy
|
|
43
|
+
| import("@smithy/types").RetryStrategyV2
|
|
44
|
+
| undefined;
|
|
45
|
+
endpoint?:
|
|
46
|
+
| ((
|
|
47
|
+
| string
|
|
48
|
+
| import("@smithy/types").Endpoint
|
|
49
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
50
|
+
| import("@smithy/types").EndpointV2
|
|
51
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
52
|
+
) &
|
|
53
|
+
(
|
|
54
|
+
| string
|
|
55
|
+
| import("@smithy/types").Provider<string>
|
|
56
|
+
| import("@smithy/types").Endpoint
|
|
57
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
58
|
+
| import("@smithy/types").EndpointV2
|
|
59
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
60
|
+
))
|
|
61
|
+
| undefined;
|
|
62
|
+
endpointProvider: (
|
|
63
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
64
|
+
context?: {
|
|
65
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
66
|
+
}
|
|
67
|
+
) => import("@smithy/types").EndpointV2;
|
|
68
|
+
tls?: boolean | undefined;
|
|
69
|
+
serviceConfiguredEndpoint?: undefined;
|
|
70
|
+
httpAuthSchemes:
|
|
71
|
+
| import("@smithy/types").HttpAuthScheme[]
|
|
72
|
+
| (
|
|
73
|
+
| {
|
|
74
|
+
schemeId: string;
|
|
75
|
+
identityProvider: (
|
|
76
|
+
ipc: import("@smithy/types").IdentityProviderConfig
|
|
77
|
+
) =>
|
|
78
|
+
| import("@smithy/types").IdentityProvider<
|
|
79
|
+
import("@smithy/types").Identity
|
|
80
|
+
>
|
|
81
|
+
| undefined;
|
|
82
|
+
signer: import("@aws-sdk/core").AwsSdkSigV4Signer;
|
|
83
|
+
}
|
|
84
|
+
| {
|
|
85
|
+
schemeId: string;
|
|
86
|
+
identityProvider: (
|
|
87
|
+
ipc: import("@smithy/types").IdentityProviderConfig
|
|
88
|
+
) =>
|
|
89
|
+
| import("@smithy/types").IdentityProvider<
|
|
90
|
+
import("@smithy/types").Identity
|
|
91
|
+
>
|
|
92
|
+
| (() => Promise<{}>);
|
|
93
|
+
signer: import("@smithy/core").NoAuthSigner;
|
|
94
|
+
}
|
|
95
|
+
)[];
|
|
96
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
|
|
97
|
+
credentials?:
|
|
98
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
99
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
100
|
+
| undefined;
|
|
101
|
+
signer?:
|
|
102
|
+
| import("@smithy/types").RequestSigner
|
|
103
|
+
| ((
|
|
104
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
105
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
106
|
+
| undefined;
|
|
107
|
+
signingEscapePath?: boolean | undefined;
|
|
108
|
+
systemClockOffset?: number | undefined;
|
|
109
|
+
signingRegion?: string | undefined;
|
|
110
|
+
signerConstructor?:
|
|
111
|
+
| (new (
|
|
112
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
113
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
114
|
+
) => import("@smithy/types").RequestSigner)
|
|
115
|
+
| undefined;
|
|
116
|
+
};
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { SSOOIDCClientConfig } from "./SSOOIDCClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
+
defaultUserAgentProvider: (
|
|
10
|
+
config?:
|
|
11
|
+
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
12
|
+
| undefined
|
|
13
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
14
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
15
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
requestHandler:
|
|
17
|
+
| RequestHandler
|
|
18
|
+
| import("@smithy/protocol-http").HttpHandler<any>;
|
|
19
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
20
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
21
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
22
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
25
|
+
apiVersion: string;
|
|
26
|
+
cacheMiddleware?: boolean | undefined;
|
|
27
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
28
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
29
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
30
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
31
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
32
|
+
disableHostPrefix: boolean;
|
|
33
|
+
serviceId: string;
|
|
34
|
+
profile?: string | undefined;
|
|
35
|
+
logger: import("@smithy/types").Logger;
|
|
36
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
37
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
38
|
+
retryStrategy?:
|
|
39
|
+
| import("@smithy/types").RetryStrategy
|
|
40
|
+
| import("@smithy/types").RetryStrategyV2
|
|
41
|
+
| undefined;
|
|
42
|
+
endpoint?:
|
|
43
|
+
| ((
|
|
44
|
+
| string
|
|
45
|
+
| import("@smithy/types").Endpoint
|
|
46
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
47
|
+
| import("@smithy/types").EndpointV2
|
|
48
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
49
|
+
) &
|
|
50
|
+
(
|
|
51
|
+
| string
|
|
52
|
+
| import("@smithy/types").Provider<string>
|
|
53
|
+
| import("@smithy/types").Endpoint
|
|
54
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
55
|
+
| import("@smithy/types").EndpointV2
|
|
56
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
57
|
+
))
|
|
58
|
+
| undefined;
|
|
59
|
+
endpointProvider: (
|
|
60
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
61
|
+
context?: {
|
|
62
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
63
|
+
}
|
|
64
|
+
) => import("@smithy/types").EndpointV2;
|
|
65
|
+
tls?: boolean | undefined;
|
|
66
|
+
serviceConfiguredEndpoint?: undefined;
|
|
67
|
+
httpAuthSchemes:
|
|
68
|
+
| import("@smithy/types").HttpAuthScheme[]
|
|
69
|
+
| (
|
|
70
|
+
| {
|
|
71
|
+
schemeId: string;
|
|
72
|
+
identityProvider: (
|
|
73
|
+
ipc: import("@smithy/types").IdentityProviderConfig
|
|
74
|
+
) =>
|
|
75
|
+
| import("@smithy/types").IdentityProvider<
|
|
76
|
+
import("@smithy/types").Identity
|
|
77
|
+
>
|
|
78
|
+
| undefined;
|
|
79
|
+
signer: import("@aws-sdk/core").AwsSdkSigV4Signer;
|
|
80
|
+
}
|
|
81
|
+
| {
|
|
82
|
+
schemeId: string;
|
|
83
|
+
identityProvider: (
|
|
84
|
+
ipc: import("@smithy/types").IdentityProviderConfig
|
|
85
|
+
) =>
|
|
86
|
+
| import("@smithy/types").IdentityProvider<
|
|
87
|
+
import("@smithy/types").Identity
|
|
88
|
+
>
|
|
89
|
+
| (() => Promise<{}>);
|
|
90
|
+
signer: import("@smithy/core").NoAuthSigner;
|
|
91
|
+
}
|
|
92
|
+
)[];
|
|
93
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
|
|
94
|
+
credentials?:
|
|
95
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
96
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
97
|
+
| undefined;
|
|
98
|
+
signer?:
|
|
99
|
+
| import("@smithy/types").RequestSigner
|
|
100
|
+
| ((
|
|
101
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
102
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
103
|
+
| undefined;
|
|
104
|
+
signingEscapePath?: boolean | undefined;
|
|
105
|
+
systemClockOffset?: number | undefined;
|
|
106
|
+
signingRegion?: string | undefined;
|
|
107
|
+
signerConstructor?:
|
|
108
|
+
| (new (
|
|
109
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
110
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
111
|
+
) => import("@smithy/types").RequestSigner)
|
|
112
|
+
| undefined;
|
|
113
|
+
};
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import { SSOOIDCClientConfig } from "./SSOOIDCClient";
|
|
2
|
+
export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
3
|
+
runtime: string;
|
|
4
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
5
|
+
requestHandler:
|
|
6
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
7
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
8
|
+
| Record<string, unknown>
|
|
9
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
|
+
apiVersion: string;
|
|
12
|
+
cacheMiddleware?: boolean | undefined;
|
|
13
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
14
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
15
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
16
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
17
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
18
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
19
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
20
|
+
disableHostPrefix: boolean;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
25
|
+
profile?: string | undefined;
|
|
26
|
+
defaultUserAgentProvider: (
|
|
27
|
+
config?:
|
|
28
|
+
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
|
+
| undefined
|
|
30
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
32
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
33
|
+
logger: import("@smithy/types").Logger;
|
|
34
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
35
|
+
defaultsMode:
|
|
36
|
+
| import("@smithy/smithy-client").DefaultsMode
|
|
37
|
+
| import("@smithy/types").Provider<
|
|
38
|
+
import("@smithy/smithy-client").DefaultsMode
|
|
39
|
+
>;
|
|
40
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
41
|
+
userAgentAppId?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@smithy/types").Provider<string | undefined>
|
|
44
|
+
| undefined;
|
|
45
|
+
retryStrategy?:
|
|
46
|
+
| import("@smithy/types").RetryStrategy
|
|
47
|
+
| import("@smithy/types").RetryStrategyV2
|
|
48
|
+
| undefined;
|
|
49
|
+
endpoint?:
|
|
50
|
+
| ((
|
|
51
|
+
| string
|
|
52
|
+
| import("@smithy/types").Endpoint
|
|
53
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
54
|
+
| import("@smithy/types").EndpointV2
|
|
55
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
56
|
+
) &
|
|
57
|
+
(
|
|
58
|
+
| string
|
|
59
|
+
| import("@smithy/types").Provider<string>
|
|
60
|
+
| import("@smithy/types").Endpoint
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
62
|
+
| import("@smithy/types").EndpointV2
|
|
63
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
64
|
+
))
|
|
65
|
+
| undefined;
|
|
66
|
+
endpointProvider: (
|
|
67
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
68
|
+
context?: {
|
|
69
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
70
|
+
}
|
|
71
|
+
) => import("@smithy/types").EndpointV2;
|
|
72
|
+
tls?: boolean | undefined;
|
|
73
|
+
serviceConfiguredEndpoint?: undefined;
|
|
74
|
+
httpAuthSchemes:
|
|
75
|
+
| import("@smithy/types").HttpAuthScheme[]
|
|
76
|
+
| (
|
|
77
|
+
| {
|
|
78
|
+
schemeId: string;
|
|
79
|
+
identityProvider: (
|
|
80
|
+
ipc: import("@smithy/types").IdentityProviderConfig
|
|
81
|
+
) =>
|
|
82
|
+
| import("@smithy/types").IdentityProvider<
|
|
83
|
+
import("@smithy/types").Identity
|
|
84
|
+
>
|
|
85
|
+
| undefined;
|
|
86
|
+
signer: import("@aws-sdk/core").AwsSdkSigV4Signer;
|
|
87
|
+
}
|
|
88
|
+
| {
|
|
89
|
+
schemeId: string;
|
|
90
|
+
identityProvider: (
|
|
91
|
+
ipc: import("@smithy/types").IdentityProviderConfig
|
|
92
|
+
) =>
|
|
93
|
+
| import("@smithy/types").IdentityProvider<
|
|
94
|
+
import("@smithy/types").Identity
|
|
95
|
+
>
|
|
96
|
+
| (() => Promise<{}>);
|
|
97
|
+
signer: import("@smithy/core").NoAuthSigner;
|
|
98
|
+
}
|
|
99
|
+
)[];
|
|
100
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
|
|
101
|
+
credentials?:
|
|
102
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
103
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
104
|
+
| undefined;
|
|
105
|
+
signer?:
|
|
106
|
+
| import("@smithy/types").RequestSigner
|
|
107
|
+
| ((
|
|
108
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
109
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
110
|
+
| undefined;
|
|
111
|
+
signingEscapePath?: boolean | undefined;
|
|
112
|
+
systemClockOffset?: number | undefined;
|
|
113
|
+
signingRegion?: string | undefined;
|
|
114
|
+
signerConstructor?:
|
|
115
|
+
| (new (
|
|
116
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
117
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
118
|
+
) => import("@smithy/types").RequestSigner)
|
|
119
|
+
| undefined;
|
|
120
|
+
};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
2
|
+
import { NoAuthSigner } from "@smithy/core";
|
|
3
|
+
import { IdentityProviderConfig } from "@smithy/types";
|
|
4
|
+
import { SSOOIDCClientConfig } from "./SSOOIDCClient";
|
|
5
|
+
export declare const getRuntimeConfig: (config: SSOOIDCClientConfig) => {
|
|
6
|
+
apiVersion: string;
|
|
7
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
8
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
9
|
+
disableHostPrefix: boolean;
|
|
10
|
+
endpointProvider: (
|
|
11
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
12
|
+
context?: {
|
|
13
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
14
|
+
}
|
|
15
|
+
) => import("@smithy/types").EndpointV2;
|
|
16
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
17
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").SSOOIDCHttpAuthSchemeProvider;
|
|
18
|
+
httpAuthSchemes:
|
|
19
|
+
| import("@smithy/types").HttpAuthScheme[]
|
|
20
|
+
| (
|
|
21
|
+
| {
|
|
22
|
+
schemeId: string;
|
|
23
|
+
identityProvider: (
|
|
24
|
+
ipc: IdentityProviderConfig
|
|
25
|
+
) =>
|
|
26
|
+
| import("@smithy/types").IdentityProvider<
|
|
27
|
+
import("@smithy/types").Identity
|
|
28
|
+
>
|
|
29
|
+
| undefined;
|
|
30
|
+
signer: AwsSdkSigV4Signer;
|
|
31
|
+
}
|
|
32
|
+
| {
|
|
33
|
+
schemeId: string;
|
|
34
|
+
identityProvider: (
|
|
35
|
+
ipc: IdentityProviderConfig
|
|
36
|
+
) =>
|
|
37
|
+
| import("@smithy/types").IdentityProvider<
|
|
38
|
+
import("@smithy/types").Identity
|
|
39
|
+
>
|
|
40
|
+
| (() => Promise<{}>);
|
|
41
|
+
signer: NoAuthSigner;
|
|
42
|
+
}
|
|
43
|
+
)[];
|
|
44
|
+
logger: import("@smithy/types").Logger;
|
|
45
|
+
serviceId: string;
|
|
46
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
47
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
48
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
49
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SSOOIDCExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(extensionConfiguration: SSOOIDCExtensionConfiguration): void;
|
|
4
|
+
}
|
|
5
|
+
export interface RuntimeExtensionsConfig {
|
|
6
|
+
extensions: RuntimeExtension[];
|
|
7
|
+
}
|
|
8
|
+
export declare const resolveRuntimeExtensions: (
|
|
9
|
+
runtimeConfig: any,
|
|
10
|
+
extensions: RuntimeExtension[]
|
|
11
|
+
) => any;
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
AssumeRoleCommandInput,
|
|
4
|
+
AssumeRoleCommandOutput,
|
|
5
|
+
} from "./commands/AssumeRoleCommand";
|
|
6
|
+
import {
|
|
7
|
+
AssumeRoleWithWebIdentityCommandInput,
|
|
8
|
+
AssumeRoleWithWebIdentityCommandOutput,
|
|
9
|
+
} from "./commands/AssumeRoleWithWebIdentityCommand";
|
|
10
|
+
import { STSClient } from "./STSClient";
|
|
11
|
+
export interface STS {
|
|
12
|
+
assumeRole(
|
|
13
|
+
args: AssumeRoleCommandInput,
|
|
14
|
+
options?: __HttpHandlerOptions
|
|
15
|
+
): Promise<AssumeRoleCommandOutput>;
|
|
16
|
+
assumeRole(
|
|
17
|
+
args: AssumeRoleCommandInput,
|
|
18
|
+
cb: (err: any, data?: AssumeRoleCommandOutput) => void
|
|
19
|
+
): void;
|
|
20
|
+
assumeRole(
|
|
21
|
+
args: AssumeRoleCommandInput,
|
|
22
|
+
options: __HttpHandlerOptions,
|
|
23
|
+
cb: (err: any, data?: AssumeRoleCommandOutput) => void
|
|
24
|
+
): void;
|
|
25
|
+
assumeRoleWithWebIdentity(
|
|
26
|
+
args: AssumeRoleWithWebIdentityCommandInput,
|
|
27
|
+
options?: __HttpHandlerOptions
|
|
28
|
+
): Promise<AssumeRoleWithWebIdentityCommandOutput>;
|
|
29
|
+
assumeRoleWithWebIdentity(
|
|
30
|
+
args: AssumeRoleWithWebIdentityCommandInput,
|
|
31
|
+
cb: (err: any, data?: AssumeRoleWithWebIdentityCommandOutput) => void
|
|
32
|
+
): void;
|
|
33
|
+
assumeRoleWithWebIdentity(
|
|
34
|
+
args: AssumeRoleWithWebIdentityCommandInput,
|
|
35
|
+
options: __HttpHandlerOptions,
|
|
36
|
+
cb: (err: any, data?: AssumeRoleWithWebIdentityCommandOutput) => void
|
|
37
|
+
): void;
|
|
38
|
+
}
|
|
39
|
+
export declare class STS extends STSClient implements STS {}
|