@aws-sdk/client-sts 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/STS.d.ts +148 -45
- package/dist-types/ts3.4/STSClient.d.ts +176 -81
- package/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/index.d.ts +8 -8
- package/dist-types/ts3.4/defaultRoleAssumers.d.ts +25 -9
- package/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +31 -16
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/STSServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +341 -302
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +101 -26
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +64 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,26 +1,101 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
AssumeRoleCommandInput,
|
|
8
|
+
AssumeRoleCommandOutput,
|
|
9
|
+
} from "../commands/AssumeRoleCommand";
|
|
10
|
+
import {
|
|
11
|
+
AssumeRoleWithSAMLCommandInput,
|
|
12
|
+
AssumeRoleWithSAMLCommandOutput,
|
|
13
|
+
} from "../commands/AssumeRoleWithSAMLCommand";
|
|
14
|
+
import {
|
|
15
|
+
AssumeRoleWithWebIdentityCommandInput,
|
|
16
|
+
AssumeRoleWithWebIdentityCommandOutput,
|
|
17
|
+
} from "../commands/AssumeRoleWithWebIdentityCommand";
|
|
18
|
+
import {
|
|
19
|
+
DecodeAuthorizationMessageCommandInput,
|
|
20
|
+
DecodeAuthorizationMessageCommandOutput,
|
|
21
|
+
} from "../commands/DecodeAuthorizationMessageCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetAccessKeyInfoCommandInput,
|
|
24
|
+
GetAccessKeyInfoCommandOutput,
|
|
25
|
+
} from "../commands/GetAccessKeyInfoCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetCallerIdentityCommandInput,
|
|
28
|
+
GetCallerIdentityCommandOutput,
|
|
29
|
+
} from "../commands/GetCallerIdentityCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetFederationTokenCommandInput,
|
|
32
|
+
GetFederationTokenCommandOutput,
|
|
33
|
+
} from "../commands/GetFederationTokenCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetSessionTokenCommandInput,
|
|
36
|
+
GetSessionTokenCommandOutput,
|
|
37
|
+
} from "../commands/GetSessionTokenCommand";
|
|
38
|
+
export declare const serializeAws_queryAssumeRoleCommand: (
|
|
39
|
+
input: AssumeRoleCommandInput,
|
|
40
|
+
context: __SerdeContext
|
|
41
|
+
) => Promise<__HttpRequest>;
|
|
42
|
+
export declare const serializeAws_queryAssumeRoleWithSAMLCommand: (
|
|
43
|
+
input: AssumeRoleWithSAMLCommandInput,
|
|
44
|
+
context: __SerdeContext
|
|
45
|
+
) => Promise<__HttpRequest>;
|
|
46
|
+
export declare const serializeAws_queryAssumeRoleWithWebIdentityCommand: (
|
|
47
|
+
input: AssumeRoleWithWebIdentityCommandInput,
|
|
48
|
+
context: __SerdeContext
|
|
49
|
+
) => Promise<__HttpRequest>;
|
|
50
|
+
export declare const serializeAws_queryDecodeAuthorizationMessageCommand: (
|
|
51
|
+
input: DecodeAuthorizationMessageCommandInput,
|
|
52
|
+
context: __SerdeContext
|
|
53
|
+
) => Promise<__HttpRequest>;
|
|
54
|
+
export declare const serializeAws_queryGetAccessKeyInfoCommand: (
|
|
55
|
+
input: GetAccessKeyInfoCommandInput,
|
|
56
|
+
context: __SerdeContext
|
|
57
|
+
) => Promise<__HttpRequest>;
|
|
58
|
+
export declare const serializeAws_queryGetCallerIdentityCommand: (
|
|
59
|
+
input: GetCallerIdentityCommandInput,
|
|
60
|
+
context: __SerdeContext
|
|
61
|
+
) => Promise<__HttpRequest>;
|
|
62
|
+
export declare const serializeAws_queryGetFederationTokenCommand: (
|
|
63
|
+
input: GetFederationTokenCommandInput,
|
|
64
|
+
context: __SerdeContext
|
|
65
|
+
) => Promise<__HttpRequest>;
|
|
66
|
+
export declare const serializeAws_queryGetSessionTokenCommand: (
|
|
67
|
+
input: GetSessionTokenCommandInput,
|
|
68
|
+
context: __SerdeContext
|
|
69
|
+
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const deserializeAws_queryAssumeRoleCommand: (
|
|
71
|
+
output: __HttpResponse,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<AssumeRoleCommandOutput>;
|
|
74
|
+
export declare const deserializeAws_queryAssumeRoleWithSAMLCommand: (
|
|
75
|
+
output: __HttpResponse,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<AssumeRoleWithSAMLCommandOutput>;
|
|
78
|
+
export declare const deserializeAws_queryAssumeRoleWithWebIdentityCommand: (
|
|
79
|
+
output: __HttpResponse,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<AssumeRoleWithWebIdentityCommandOutput>;
|
|
82
|
+
export declare const deserializeAws_queryDecodeAuthorizationMessageCommand: (
|
|
83
|
+
output: __HttpResponse,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<DecodeAuthorizationMessageCommandOutput>;
|
|
86
|
+
export declare const deserializeAws_queryGetAccessKeyInfoCommand: (
|
|
87
|
+
output: __HttpResponse,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<GetAccessKeyInfoCommandOutput>;
|
|
90
|
+
export declare const deserializeAws_queryGetCallerIdentityCommand: (
|
|
91
|
+
output: __HttpResponse,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<GetCallerIdentityCommandOutput>;
|
|
94
|
+
export declare const deserializeAws_queryGetFederationTokenCommand: (
|
|
95
|
+
output: __HttpResponse,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<GetFederationTokenCommandOutput>;
|
|
98
|
+
export declare const deserializeAws_queryGetSessionTokenCommand: (
|
|
99
|
+
output: __HttpResponse,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<GetSessionTokenCommandOutput>;
|
|
@@ -1,38 +1,66 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { STSClientConfig } from "./STSClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { STSClientConfig } from "./STSClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
7
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
8
|
+
>;
|
|
9
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: (
|
|
13
|
+
input: any
|
|
14
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
15
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
16
|
+
import("@aws-sdk/types").UserAgent
|
|
17
|
+
>;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
20
|
+
requestHandler:
|
|
21
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
22
|
+
any,
|
|
23
|
+
any,
|
|
24
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
25
|
+
> &
|
|
26
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
27
|
+
| RequestHandler;
|
|
28
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
29
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
30
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
31
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
34
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
35
|
+
apiVersion: string;
|
|
36
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
37
|
+
disableHostPrefix: boolean;
|
|
38
|
+
logger: import("@aws-sdk/types").Logger;
|
|
39
|
+
serviceId: string;
|
|
40
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
41
|
+
endpoint?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@aws-sdk/types").Endpoint
|
|
44
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
45
|
+
| undefined;
|
|
46
|
+
tls?: boolean | undefined;
|
|
47
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
48
|
+
credentials?:
|
|
49
|
+
| import("@aws-sdk/types").Credentials
|
|
50
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
51
|
+
| undefined;
|
|
52
|
+
signer?:
|
|
53
|
+
| import("@aws-sdk/types").RequestSigner
|
|
54
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
55
|
+
| undefined;
|
|
56
|
+
signingEscapePath?: boolean | undefined;
|
|
57
|
+
systemClockOffset?: number | undefined;
|
|
58
|
+
signingRegion?: string | undefined;
|
|
59
|
+
signerConstructor?:
|
|
60
|
+
| (new (
|
|
61
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
62
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
63
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
64
|
+
| undefined;
|
|
65
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
66
|
+
};
|
|
@@ -1,38 +1,64 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { STSClientConfig } from "./STSClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { STSClientConfig } from "./STSClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
7
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
8
|
+
>;
|
|
9
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: import("./defaultStsRoleAssumers").DefaultCredentialProvider;
|
|
13
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
14
|
+
import("@aws-sdk/types").UserAgent
|
|
15
|
+
>;
|
|
16
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
17
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
18
|
+
requestHandler:
|
|
19
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
20
|
+
any,
|
|
21
|
+
any,
|
|
22
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
23
|
+
> &
|
|
24
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
25
|
+
| RequestHandler;
|
|
26
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
27
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
28
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
29
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
30
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
31
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
32
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
33
|
+
apiVersion: string;
|
|
34
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
35
|
+
disableHostPrefix: boolean;
|
|
36
|
+
logger: import("@aws-sdk/types").Logger;
|
|
37
|
+
serviceId: string;
|
|
38
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
39
|
+
endpoint?:
|
|
40
|
+
| string
|
|
41
|
+
| import("@aws-sdk/types").Endpoint
|
|
42
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
43
|
+
| undefined;
|
|
44
|
+
tls?: boolean | undefined;
|
|
45
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
46
|
+
credentials?:
|
|
47
|
+
| import("@aws-sdk/types").Credentials
|
|
48
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
49
|
+
| undefined;
|
|
50
|
+
signer?:
|
|
51
|
+
| import("@aws-sdk/types").RequestSigner
|
|
52
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
53
|
+
| undefined;
|
|
54
|
+
signingEscapePath?: boolean | undefined;
|
|
55
|
+
systemClockOffset?: number | undefined;
|
|
56
|
+
signingRegion?: string | undefined;
|
|
57
|
+
signerConstructor?:
|
|
58
|
+
| (new (
|
|
59
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
60
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
61
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
62
|
+
| undefined;
|
|
63
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
64
|
+
};
|
|
@@ -1,37 +1,67 @@
|
|
|
1
|
-
import { STSClientConfig } from "./STSClient";
|
|
2
|
-
|
|
3
|
-
export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
1
|
+
import { STSClientConfig } from "./STSClient";
|
|
2
|
+
|
|
3
|
+
export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
6
|
+
requestHandler:
|
|
7
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
8
|
+
any,
|
|
9
|
+
any,
|
|
10
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
11
|
+
> &
|
|
12
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
13
|
+
| import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
14
|
+
apiVersion: string;
|
|
15
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
16
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
17
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
18
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
19
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
20
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
21
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
22
|
+
disableHostPrefix: boolean;
|
|
23
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
24
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
25
|
+
logger: import("@aws-sdk/types").Logger;
|
|
26
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
27
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
28
|
+
serviceId: string;
|
|
29
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
30
|
+
credentialDefaultProvider: (
|
|
31
|
+
input: any
|
|
32
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
33
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
34
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
35
|
+
import("@aws-sdk/types").UserAgent
|
|
36
|
+
>;
|
|
37
|
+
defaultsMode:
|
|
38
|
+
| import("@aws-sdk/smithy-client").DefaultsMode
|
|
39
|
+
| import("@aws-sdk/types").Provider<
|
|
40
|
+
import("@aws-sdk/smithy-client").DefaultsMode
|
|
41
|
+
>;
|
|
42
|
+
endpoint?:
|
|
43
|
+
| string
|
|
44
|
+
| import("@aws-sdk/types").Endpoint
|
|
45
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
46
|
+
| undefined;
|
|
47
|
+
tls?: boolean | undefined;
|
|
48
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
49
|
+
credentials?:
|
|
50
|
+
| import("@aws-sdk/types").Credentials
|
|
51
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
52
|
+
| undefined;
|
|
53
|
+
signer?:
|
|
54
|
+
| import("@aws-sdk/types").RequestSigner
|
|
55
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
56
|
+
| undefined;
|
|
57
|
+
signingEscapePath?: boolean | undefined;
|
|
58
|
+
systemClockOffset?: number | undefined;
|
|
59
|
+
signingRegion?: string | undefined;
|
|
60
|
+
signerConstructor?:
|
|
61
|
+
| (new (
|
|
62
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
63
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
64
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
65
|
+
| undefined;
|
|
66
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
67
|
+
};
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
-
import { STSClientConfig } from "./STSClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
};
|
|
1
|
+
import { Logger as __Logger } from "@aws-sdk/types";
|
|
2
|
+
import { STSClientConfig } from "./STSClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: STSClientConfig) => {
|
|
5
|
+
apiVersion: string;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
logger: __Logger;
|
|
8
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
9
|
+
serviceId: string;
|
|
10
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
+
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sts",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sts Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.170.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,47 +21,47 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-sdk-sts": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
45
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
46
|
-
"@aws-sdk/util-base64-node": "3.
|
|
47
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
48
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
53
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
54
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
24
|
+
"@aws-sdk/config-resolver": "3.170.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.170.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.170.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.170.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.170.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.170.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.170.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.170.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.170.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.170.0",
|
|
34
|
+
"@aws-sdk/middleware-sdk-sts": "3.170.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.170.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.170.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.170.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.170.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.170.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.170.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.170.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.170.0",
|
|
43
|
+
"@aws-sdk/types": "3.170.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.170.0",
|
|
45
|
+
"@aws-sdk/util-base64-browser": "3.170.0",
|
|
46
|
+
"@aws-sdk/util-base64-node": "3.170.0",
|
|
47
|
+
"@aws-sdk/util-body-length-browser": "3.170.0",
|
|
48
|
+
"@aws-sdk/util-body-length-node": "3.170.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-browser": "3.170.0",
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.170.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-browser": "3.170.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-node": "3.170.0",
|
|
53
|
+
"@aws-sdk/util-utf8-browser": "3.170.0",
|
|
54
|
+
"@aws-sdk/util-utf8-node": "3.170.0",
|
|
55
55
|
"entities": "2.2.0",
|
|
56
56
|
"fast-xml-parser": "3.19.0",
|
|
57
57
|
"tslib": "^2.3.1"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
|
-
"@aws-sdk/service-client-documentation-generator": "3.
|
|
60
|
+
"@aws-sdk/service-client-documentation-generator": "3.170.0",
|
|
61
61
|
"@tsconfig/recommended": "1.0.1",
|
|
62
62
|
"@types/node": "^12.7.5",
|
|
63
63
|
"concurrently": "7.0.0",
|
|
64
|
-
"downlevel-dts": "0.
|
|
64
|
+
"downlevel-dts": "0.10.1",
|
|
65
65
|
"rimraf": "3.0.2",
|
|
66
66
|
"typedoc": "0.19.2",
|
|
67
67
|
"typescript": "~4.6.2"
|