@aws-sdk/client-sts 3.36.0 → 3.36.1
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 +11 -0
- package/dist-cjs/STS.js +0 -7
- package/dist-cjs/STSClient.js +0 -12
- package/dist-cjs/commands/AssumeRoleCommand.js +0 -107
- package/dist-cjs/commands/AssumeRoleWithSAMLCommand.js +0 -155
- package/dist-cjs/commands/AssumeRoleWithWebIdentityCommand.js +0 -159
- package/dist-cjs/commands/DecodeAuthorizationMessageCommand.js +0 -59
- package/dist-cjs/commands/GetAccessKeyInfoCommand.js +0 -41
- package/dist-cjs/commands/GetCallerIdentityCommand.js +0 -33
- package/dist-cjs/commands/GetFederationTokenCommand.js +0 -162
- package/dist-cjs/commands/GetSessionTokenCommand.js +0 -75
- package/dist-cjs/defaultRoleAssumers.js +0 -16
- package/dist-cjs/defaultStsRoleAssumers.js +0 -20
- package/dist-cjs/models/models_0.js +0 -87
- package/dist-cjs/protocols/Aws_query.js +0 -2
- package/dist-cjs/runtimeConfig.browser.js +1 -5
- package/dist-cjs/runtimeConfig.js +1 -5
- package/dist-cjs/runtimeConfig.native.js +0 -3
- package/dist-cjs/runtimeConfig.shared.js +0 -3
- package/dist-types/ts3.4/STS.d.ts +9 -630
- package/dist-types/ts3.4/STSClient.d.ts +24 -93
- package/dist-types/ts3.4/commands/AssumeRoleCommand.d.ts +2 -103
- package/dist-types/ts3.4/commands/AssumeRoleWithSAMLCommand.d.ts +2 -151
- package/dist-types/ts3.4/commands/AssumeRoleWithWebIdentityCommand.d.ts +2 -155
- package/dist-types/ts3.4/commands/DecodeAuthorizationMessageCommand.d.ts +2 -55
- package/dist-types/ts3.4/commands/GetAccessKeyInfoCommand.d.ts +2 -37
- package/dist-types/ts3.4/commands/GetCallerIdentityCommand.d.ts +2 -29
- package/dist-types/ts3.4/commands/GetFederationTokenCommand.d.ts +2 -158
- package/dist-types/ts3.4/commands/GetSessionTokenCommand.d.ts +2 -71
- package/dist-types/ts3.4/defaultRoleAssumers.d.ts +3 -14
- package/dist-types/ts3.4/defaultStsRoleAssumers.d.ts +6 -25
- package/dist-types/ts3.4/models/models_0.d.ts +123 -948
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -3
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -3
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -3
- package/package.json +2 -2
|
@@ -3,261 +3,174 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.GetSessionTokenResponse = exports.GetSessionTokenRequest = exports.GetFederationTokenResponse = exports.FederatedUser = exports.GetFederationTokenRequest = exports.GetCallerIdentityResponse = exports.GetCallerIdentityRequest = exports.GetAccessKeyInfoResponse = exports.GetAccessKeyInfoRequest = exports.InvalidAuthorizationMessageException = exports.DecodeAuthorizationMessageResponse = exports.DecodeAuthorizationMessageRequest = exports.IDPCommunicationErrorException = exports.AssumeRoleWithWebIdentityResponse = exports.AssumeRoleWithWebIdentityRequest = exports.InvalidIdentityTokenException = exports.IDPRejectedClaimException = exports.AssumeRoleWithSAMLResponse = exports.AssumeRoleWithSAMLRequest = exports.RegionDisabledException = exports.PackedPolicyTooLargeException = exports.MalformedPolicyDocumentException = exports.ExpiredTokenException = exports.AssumeRoleResponse = exports.Credentials = exports.AssumeRoleRequest = exports.Tag = exports.PolicyDescriptorType = exports.AssumedRoleUser = void 0;
|
|
4
4
|
var AssumedRoleUser;
|
|
5
5
|
(function (AssumedRoleUser) {
|
|
6
|
-
/**
|
|
7
|
-
* @internal
|
|
8
|
-
*/
|
|
9
6
|
AssumedRoleUser.filterSensitiveLog = (obj) => ({
|
|
10
7
|
...obj,
|
|
11
8
|
});
|
|
12
9
|
})(AssumedRoleUser = exports.AssumedRoleUser || (exports.AssumedRoleUser = {}));
|
|
13
10
|
var PolicyDescriptorType;
|
|
14
11
|
(function (PolicyDescriptorType) {
|
|
15
|
-
/**
|
|
16
|
-
* @internal
|
|
17
|
-
*/
|
|
18
12
|
PolicyDescriptorType.filterSensitiveLog = (obj) => ({
|
|
19
13
|
...obj,
|
|
20
14
|
});
|
|
21
15
|
})(PolicyDescriptorType = exports.PolicyDescriptorType || (exports.PolicyDescriptorType = {}));
|
|
22
16
|
var Tag;
|
|
23
17
|
(function (Tag) {
|
|
24
|
-
/**
|
|
25
|
-
* @internal
|
|
26
|
-
*/
|
|
27
18
|
Tag.filterSensitiveLog = (obj) => ({
|
|
28
19
|
...obj,
|
|
29
20
|
});
|
|
30
21
|
})(Tag = exports.Tag || (exports.Tag = {}));
|
|
31
22
|
var AssumeRoleRequest;
|
|
32
23
|
(function (AssumeRoleRequest) {
|
|
33
|
-
/**
|
|
34
|
-
* @internal
|
|
35
|
-
*/
|
|
36
24
|
AssumeRoleRequest.filterSensitiveLog = (obj) => ({
|
|
37
25
|
...obj,
|
|
38
26
|
});
|
|
39
27
|
})(AssumeRoleRequest = exports.AssumeRoleRequest || (exports.AssumeRoleRequest = {}));
|
|
40
28
|
var Credentials;
|
|
41
29
|
(function (Credentials) {
|
|
42
|
-
/**
|
|
43
|
-
* @internal
|
|
44
|
-
*/
|
|
45
30
|
Credentials.filterSensitiveLog = (obj) => ({
|
|
46
31
|
...obj,
|
|
47
32
|
});
|
|
48
33
|
})(Credentials = exports.Credentials || (exports.Credentials = {}));
|
|
49
34
|
var AssumeRoleResponse;
|
|
50
35
|
(function (AssumeRoleResponse) {
|
|
51
|
-
/**
|
|
52
|
-
* @internal
|
|
53
|
-
*/
|
|
54
36
|
AssumeRoleResponse.filterSensitiveLog = (obj) => ({
|
|
55
37
|
...obj,
|
|
56
38
|
});
|
|
57
39
|
})(AssumeRoleResponse = exports.AssumeRoleResponse || (exports.AssumeRoleResponse = {}));
|
|
58
40
|
var ExpiredTokenException;
|
|
59
41
|
(function (ExpiredTokenException) {
|
|
60
|
-
/**
|
|
61
|
-
* @internal
|
|
62
|
-
*/
|
|
63
42
|
ExpiredTokenException.filterSensitiveLog = (obj) => ({
|
|
64
43
|
...obj,
|
|
65
44
|
});
|
|
66
45
|
})(ExpiredTokenException = exports.ExpiredTokenException || (exports.ExpiredTokenException = {}));
|
|
67
46
|
var MalformedPolicyDocumentException;
|
|
68
47
|
(function (MalformedPolicyDocumentException) {
|
|
69
|
-
/**
|
|
70
|
-
* @internal
|
|
71
|
-
*/
|
|
72
48
|
MalformedPolicyDocumentException.filterSensitiveLog = (obj) => ({
|
|
73
49
|
...obj,
|
|
74
50
|
});
|
|
75
51
|
})(MalformedPolicyDocumentException = exports.MalformedPolicyDocumentException || (exports.MalformedPolicyDocumentException = {}));
|
|
76
52
|
var PackedPolicyTooLargeException;
|
|
77
53
|
(function (PackedPolicyTooLargeException) {
|
|
78
|
-
/**
|
|
79
|
-
* @internal
|
|
80
|
-
*/
|
|
81
54
|
PackedPolicyTooLargeException.filterSensitiveLog = (obj) => ({
|
|
82
55
|
...obj,
|
|
83
56
|
});
|
|
84
57
|
})(PackedPolicyTooLargeException = exports.PackedPolicyTooLargeException || (exports.PackedPolicyTooLargeException = {}));
|
|
85
58
|
var RegionDisabledException;
|
|
86
59
|
(function (RegionDisabledException) {
|
|
87
|
-
/**
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
90
60
|
RegionDisabledException.filterSensitiveLog = (obj) => ({
|
|
91
61
|
...obj,
|
|
92
62
|
});
|
|
93
63
|
})(RegionDisabledException = exports.RegionDisabledException || (exports.RegionDisabledException = {}));
|
|
94
64
|
var AssumeRoleWithSAMLRequest;
|
|
95
65
|
(function (AssumeRoleWithSAMLRequest) {
|
|
96
|
-
/**
|
|
97
|
-
* @internal
|
|
98
|
-
*/
|
|
99
66
|
AssumeRoleWithSAMLRequest.filterSensitiveLog = (obj) => ({
|
|
100
67
|
...obj,
|
|
101
68
|
});
|
|
102
69
|
})(AssumeRoleWithSAMLRequest = exports.AssumeRoleWithSAMLRequest || (exports.AssumeRoleWithSAMLRequest = {}));
|
|
103
70
|
var AssumeRoleWithSAMLResponse;
|
|
104
71
|
(function (AssumeRoleWithSAMLResponse) {
|
|
105
|
-
/**
|
|
106
|
-
* @internal
|
|
107
|
-
*/
|
|
108
72
|
AssumeRoleWithSAMLResponse.filterSensitiveLog = (obj) => ({
|
|
109
73
|
...obj,
|
|
110
74
|
});
|
|
111
75
|
})(AssumeRoleWithSAMLResponse = exports.AssumeRoleWithSAMLResponse || (exports.AssumeRoleWithSAMLResponse = {}));
|
|
112
76
|
var IDPRejectedClaimException;
|
|
113
77
|
(function (IDPRejectedClaimException) {
|
|
114
|
-
/**
|
|
115
|
-
* @internal
|
|
116
|
-
*/
|
|
117
78
|
IDPRejectedClaimException.filterSensitiveLog = (obj) => ({
|
|
118
79
|
...obj,
|
|
119
80
|
});
|
|
120
81
|
})(IDPRejectedClaimException = exports.IDPRejectedClaimException || (exports.IDPRejectedClaimException = {}));
|
|
121
82
|
var InvalidIdentityTokenException;
|
|
122
83
|
(function (InvalidIdentityTokenException) {
|
|
123
|
-
/**
|
|
124
|
-
* @internal
|
|
125
|
-
*/
|
|
126
84
|
InvalidIdentityTokenException.filterSensitiveLog = (obj) => ({
|
|
127
85
|
...obj,
|
|
128
86
|
});
|
|
129
87
|
})(InvalidIdentityTokenException = exports.InvalidIdentityTokenException || (exports.InvalidIdentityTokenException = {}));
|
|
130
88
|
var AssumeRoleWithWebIdentityRequest;
|
|
131
89
|
(function (AssumeRoleWithWebIdentityRequest) {
|
|
132
|
-
/**
|
|
133
|
-
* @internal
|
|
134
|
-
*/
|
|
135
90
|
AssumeRoleWithWebIdentityRequest.filterSensitiveLog = (obj) => ({
|
|
136
91
|
...obj,
|
|
137
92
|
});
|
|
138
93
|
})(AssumeRoleWithWebIdentityRequest = exports.AssumeRoleWithWebIdentityRequest || (exports.AssumeRoleWithWebIdentityRequest = {}));
|
|
139
94
|
var AssumeRoleWithWebIdentityResponse;
|
|
140
95
|
(function (AssumeRoleWithWebIdentityResponse) {
|
|
141
|
-
/**
|
|
142
|
-
* @internal
|
|
143
|
-
*/
|
|
144
96
|
AssumeRoleWithWebIdentityResponse.filterSensitiveLog = (obj) => ({
|
|
145
97
|
...obj,
|
|
146
98
|
});
|
|
147
99
|
})(AssumeRoleWithWebIdentityResponse = exports.AssumeRoleWithWebIdentityResponse || (exports.AssumeRoleWithWebIdentityResponse = {}));
|
|
148
100
|
var IDPCommunicationErrorException;
|
|
149
101
|
(function (IDPCommunicationErrorException) {
|
|
150
|
-
/**
|
|
151
|
-
* @internal
|
|
152
|
-
*/
|
|
153
102
|
IDPCommunicationErrorException.filterSensitiveLog = (obj) => ({
|
|
154
103
|
...obj,
|
|
155
104
|
});
|
|
156
105
|
})(IDPCommunicationErrorException = exports.IDPCommunicationErrorException || (exports.IDPCommunicationErrorException = {}));
|
|
157
106
|
var DecodeAuthorizationMessageRequest;
|
|
158
107
|
(function (DecodeAuthorizationMessageRequest) {
|
|
159
|
-
/**
|
|
160
|
-
* @internal
|
|
161
|
-
*/
|
|
162
108
|
DecodeAuthorizationMessageRequest.filterSensitiveLog = (obj) => ({
|
|
163
109
|
...obj,
|
|
164
110
|
});
|
|
165
111
|
})(DecodeAuthorizationMessageRequest = exports.DecodeAuthorizationMessageRequest || (exports.DecodeAuthorizationMessageRequest = {}));
|
|
166
112
|
var DecodeAuthorizationMessageResponse;
|
|
167
113
|
(function (DecodeAuthorizationMessageResponse) {
|
|
168
|
-
/**
|
|
169
|
-
* @internal
|
|
170
|
-
*/
|
|
171
114
|
DecodeAuthorizationMessageResponse.filterSensitiveLog = (obj) => ({
|
|
172
115
|
...obj,
|
|
173
116
|
});
|
|
174
117
|
})(DecodeAuthorizationMessageResponse = exports.DecodeAuthorizationMessageResponse || (exports.DecodeAuthorizationMessageResponse = {}));
|
|
175
118
|
var InvalidAuthorizationMessageException;
|
|
176
119
|
(function (InvalidAuthorizationMessageException) {
|
|
177
|
-
/**
|
|
178
|
-
* @internal
|
|
179
|
-
*/
|
|
180
120
|
InvalidAuthorizationMessageException.filterSensitiveLog = (obj) => ({
|
|
181
121
|
...obj,
|
|
182
122
|
});
|
|
183
123
|
})(InvalidAuthorizationMessageException = exports.InvalidAuthorizationMessageException || (exports.InvalidAuthorizationMessageException = {}));
|
|
184
124
|
var GetAccessKeyInfoRequest;
|
|
185
125
|
(function (GetAccessKeyInfoRequest) {
|
|
186
|
-
/**
|
|
187
|
-
* @internal
|
|
188
|
-
*/
|
|
189
126
|
GetAccessKeyInfoRequest.filterSensitiveLog = (obj) => ({
|
|
190
127
|
...obj,
|
|
191
128
|
});
|
|
192
129
|
})(GetAccessKeyInfoRequest = exports.GetAccessKeyInfoRequest || (exports.GetAccessKeyInfoRequest = {}));
|
|
193
130
|
var GetAccessKeyInfoResponse;
|
|
194
131
|
(function (GetAccessKeyInfoResponse) {
|
|
195
|
-
/**
|
|
196
|
-
* @internal
|
|
197
|
-
*/
|
|
198
132
|
GetAccessKeyInfoResponse.filterSensitiveLog = (obj) => ({
|
|
199
133
|
...obj,
|
|
200
134
|
});
|
|
201
135
|
})(GetAccessKeyInfoResponse = exports.GetAccessKeyInfoResponse || (exports.GetAccessKeyInfoResponse = {}));
|
|
202
136
|
var GetCallerIdentityRequest;
|
|
203
137
|
(function (GetCallerIdentityRequest) {
|
|
204
|
-
/**
|
|
205
|
-
* @internal
|
|
206
|
-
*/
|
|
207
138
|
GetCallerIdentityRequest.filterSensitiveLog = (obj) => ({
|
|
208
139
|
...obj,
|
|
209
140
|
});
|
|
210
141
|
})(GetCallerIdentityRequest = exports.GetCallerIdentityRequest || (exports.GetCallerIdentityRequest = {}));
|
|
211
142
|
var GetCallerIdentityResponse;
|
|
212
143
|
(function (GetCallerIdentityResponse) {
|
|
213
|
-
/**
|
|
214
|
-
* @internal
|
|
215
|
-
*/
|
|
216
144
|
GetCallerIdentityResponse.filterSensitiveLog = (obj) => ({
|
|
217
145
|
...obj,
|
|
218
146
|
});
|
|
219
147
|
})(GetCallerIdentityResponse = exports.GetCallerIdentityResponse || (exports.GetCallerIdentityResponse = {}));
|
|
220
148
|
var GetFederationTokenRequest;
|
|
221
149
|
(function (GetFederationTokenRequest) {
|
|
222
|
-
/**
|
|
223
|
-
* @internal
|
|
224
|
-
*/
|
|
225
150
|
GetFederationTokenRequest.filterSensitiveLog = (obj) => ({
|
|
226
151
|
...obj,
|
|
227
152
|
});
|
|
228
153
|
})(GetFederationTokenRequest = exports.GetFederationTokenRequest || (exports.GetFederationTokenRequest = {}));
|
|
229
154
|
var FederatedUser;
|
|
230
155
|
(function (FederatedUser) {
|
|
231
|
-
/**
|
|
232
|
-
* @internal
|
|
233
|
-
*/
|
|
234
156
|
FederatedUser.filterSensitiveLog = (obj) => ({
|
|
235
157
|
...obj,
|
|
236
158
|
});
|
|
237
159
|
})(FederatedUser = exports.FederatedUser || (exports.FederatedUser = {}));
|
|
238
160
|
var GetFederationTokenResponse;
|
|
239
161
|
(function (GetFederationTokenResponse) {
|
|
240
|
-
/**
|
|
241
|
-
* @internal
|
|
242
|
-
*/
|
|
243
162
|
GetFederationTokenResponse.filterSensitiveLog = (obj) => ({
|
|
244
163
|
...obj,
|
|
245
164
|
});
|
|
246
165
|
})(GetFederationTokenResponse = exports.GetFederationTokenResponse || (exports.GetFederationTokenResponse = {}));
|
|
247
166
|
var GetSessionTokenRequest;
|
|
248
167
|
(function (GetSessionTokenRequest) {
|
|
249
|
-
/**
|
|
250
|
-
* @internal
|
|
251
|
-
*/
|
|
252
168
|
GetSessionTokenRequest.filterSensitiveLog = (obj) => ({
|
|
253
169
|
...obj,
|
|
254
170
|
});
|
|
255
171
|
})(GetSessionTokenRequest = exports.GetSessionTokenRequest || (exports.GetSessionTokenRequest = {}));
|
|
256
172
|
var GetSessionTokenResponse;
|
|
257
173
|
(function (GetSessionTokenResponse) {
|
|
258
|
-
/**
|
|
259
|
-
* @internal
|
|
260
|
-
*/
|
|
261
174
|
GetSessionTokenResponse.filterSensitiveLog = (obj) => ({
|
|
262
175
|
...obj,
|
|
263
176
|
});
|
|
@@ -1190,14 +1190,12 @@ const deserializeMetadata = (output) => {
|
|
|
1190
1190
|
cfId: output.headers["x-amz-cf-id"],
|
|
1191
1191
|
});
|
|
1192
1192
|
};
|
|
1193
|
-
// Collect low-level response body stream to Uint8Array.
|
|
1194
1193
|
const collectBody = (streamBody = new Uint8Array(), context) => {
|
|
1195
1194
|
if (streamBody instanceof Uint8Array) {
|
|
1196
1195
|
return Promise.resolve(streamBody);
|
|
1197
1196
|
}
|
|
1198
1197
|
return context.streamCollector(streamBody) || Promise.resolve(new Uint8Array());
|
|
1199
1198
|
};
|
|
1200
|
-
// Encode Uint8Array data into string with utf-8.
|
|
1201
1199
|
const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then((body) => context.utf8Encoder(body));
|
|
1202
1200
|
const buildHttpRpcRequest = async (context, headers, path, resolvedHostname, body) => {
|
|
1203
1201
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
|
-
|
|
6
|
-
const package_json_1 = tslib_1.__importDefault(require("../package.json")); // eslint-disable-line
|
|
5
|
+
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
7
6
|
const sha256_browser_1 = require("@aws-crypto/sha256-browser");
|
|
8
7
|
const fetch_http_handler_1 = require("@aws-sdk/fetch-http-handler");
|
|
9
8
|
const invalid_dependency_1 = require("@aws-sdk/invalid-dependency");
|
|
@@ -13,9 +12,6 @@ const util_body_length_browser_1 = require("@aws-sdk/util-body-length-browser");
|
|
|
13
12
|
const util_user_agent_browser_1 = require("@aws-sdk/util-user-agent-browser");
|
|
14
13
|
const util_utf8_browser_1 = require("@aws-sdk/util-utf8-browser");
|
|
15
14
|
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
16
|
-
/**
|
|
17
|
-
* @internal
|
|
18
|
-
*/
|
|
19
15
|
const getRuntimeConfig = (config) => {
|
|
20
16
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
|
21
17
|
const clientSharedValues = runtimeConfig_shared_1.getRuntimeConfig(config);
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
|
-
|
|
6
|
-
const package_json_1 = tslib_1.__importDefault(require("../package.json")); // eslint-disable-line
|
|
5
|
+
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
7
6
|
const defaultStsRoleAssumers_1 = require("./defaultStsRoleAssumers");
|
|
8
7
|
const config_resolver_1 = require("@aws-sdk/config-resolver");
|
|
9
8
|
const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
|
|
@@ -17,9 +16,6 @@ const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
|
|
|
17
16
|
const util_utf8_node_1 = require("@aws-sdk/util-utf8-node");
|
|
18
17
|
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
19
18
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
20
|
-
/**
|
|
21
|
-
* @internal
|
|
22
|
-
*/
|
|
23
19
|
const getRuntimeConfig = (config) => {
|
|
24
20
|
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o;
|
|
25
21
|
smithy_client_1.emitWarningIfUnsupportedVersion(process.version);
|
|
@@ -3,9 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const sha256_js_1 = require("@aws-crypto/sha256-js");
|
|
5
5
|
const runtimeConfig_browser_1 = require("./runtimeConfig.browser");
|
|
6
|
-
/**
|
|
7
|
-
* @internal
|
|
8
|
-
*/
|
|
9
6
|
const getRuntimeConfig = (config) => {
|
|
10
7
|
var _a;
|
|
11
8
|
const browserDefaults = runtimeConfig_browser_1.getRuntimeConfig(config);
|
|
@@ -3,9 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const url_parser_1 = require("@aws-sdk/url-parser");
|
|
5
5
|
const endpoints_1 = require("./endpoints");
|
|
6
|
-
/**
|
|
7
|
-
* @internal
|
|
8
|
-
*/
|
|
9
6
|
const getRuntimeConfig = (config) => {
|
|
10
7
|
var _a, _b, _c, _d, _e;
|
|
11
8
|
return ({
|