@cdklabs/cdk-ecs-codedeploy 0.0.242 → 0.0.244
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/.jsii +3 -3
- package/.jsii.tabl.json +1 -1
- package/lib/api-canary/index.js +1 -1
- package/lib/ecs-appspec/index.js +1 -1
- package/lib/ecs-deployment/index.js +1 -1
- package/lib/ecs-patterns/application-load-balanced-codedeployed-fargate-service.js +1 -1
- package/node_modules/@aws-sdk/client-codedeploy/dist-cjs/index.js +390 -1798
- package/node_modules/@aws-sdk/client-codedeploy/dist-es/protocols/Aws_json1_1.js +487 -1895
- package/node_modules/@aws-sdk/client-codedeploy/package.json +3 -3
- package/node_modules/@aws-sdk/client-sso/dist-cjs/index.js +9 -90
- package/node_modules/@aws-sdk/client-sso/dist-es/protocols/Aws_restJson1.js +8 -89
- package/node_modules/@aws-sdk/client-sso/package.json +1 -1
- package/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js +30 -135
- package/node_modules/@aws-sdk/client-sso-oidc/dist-es/protocols/Aws_restJson1.js +29 -134
- package/node_modules/@aws-sdk/client-sso-oidc/package.json +3 -3
- package/node_modules/@aws-sdk/client-sts/dist-cjs/index.js +31 -179
- package/node_modules/@aws-sdk/client-sts/dist-es/protocols/Aws_query.js +30 -178
- package/node_modules/@aws-sdk/client-sts/package.json +2 -2
- package/node_modules/@aws-sdk/credential-provider-ini/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-node/package.json +4 -4
- package/node_modules/@aws-sdk/credential-provider-sso/package.json +3 -3
- package/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js +23 -0
- package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +2 -2
- package/node_modules/@aws-sdk/token-providers/package.json +2 -2
- package/package.json +6 -6
|
@@ -85,7 +85,7 @@ export const se_GetSessionTokenCommand = async (input, context) => {
|
|
|
85
85
|
};
|
|
86
86
|
export const de_AssumeRoleCommand = async (output, context) => {
|
|
87
87
|
if (output.statusCode >= 300) {
|
|
88
|
-
return
|
|
88
|
+
return de_CommandError(output, context);
|
|
89
89
|
}
|
|
90
90
|
const data = await parseBody(output.body, context);
|
|
91
91
|
let contents = {};
|
|
@@ -96,37 +96,9 @@ export const de_AssumeRoleCommand = async (output, context) => {
|
|
|
96
96
|
};
|
|
97
97
|
return response;
|
|
98
98
|
};
|
|
99
|
-
const de_AssumeRoleCommandError = async (output, context) => {
|
|
100
|
-
const parsedOutput = {
|
|
101
|
-
...output,
|
|
102
|
-
body: await parseErrorBody(output.body, context),
|
|
103
|
-
};
|
|
104
|
-
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
105
|
-
switch (errorCode) {
|
|
106
|
-
case "ExpiredTokenException":
|
|
107
|
-
case "com.amazonaws.sts#ExpiredTokenException":
|
|
108
|
-
throw await de_ExpiredTokenExceptionRes(parsedOutput, context);
|
|
109
|
-
case "MalformedPolicyDocument":
|
|
110
|
-
case "com.amazonaws.sts#MalformedPolicyDocumentException":
|
|
111
|
-
throw await de_MalformedPolicyDocumentExceptionRes(parsedOutput, context);
|
|
112
|
-
case "PackedPolicyTooLarge":
|
|
113
|
-
case "com.amazonaws.sts#PackedPolicyTooLargeException":
|
|
114
|
-
throw await de_PackedPolicyTooLargeExceptionRes(parsedOutput, context);
|
|
115
|
-
case "RegionDisabledException":
|
|
116
|
-
case "com.amazonaws.sts#RegionDisabledException":
|
|
117
|
-
throw await de_RegionDisabledExceptionRes(parsedOutput, context);
|
|
118
|
-
default:
|
|
119
|
-
const parsedBody = parsedOutput.body;
|
|
120
|
-
return throwDefaultError({
|
|
121
|
-
output,
|
|
122
|
-
parsedBody: parsedBody.Error,
|
|
123
|
-
errorCode,
|
|
124
|
-
});
|
|
125
|
-
}
|
|
126
|
-
};
|
|
127
99
|
export const de_AssumeRoleWithSAMLCommand = async (output, context) => {
|
|
128
100
|
if (output.statusCode >= 300) {
|
|
129
|
-
return
|
|
101
|
+
return de_CommandError(output, context);
|
|
130
102
|
}
|
|
131
103
|
const data = await parseBody(output.body, context);
|
|
132
104
|
let contents = {};
|
|
@@ -137,43 +109,9 @@ export const de_AssumeRoleWithSAMLCommand = async (output, context) => {
|
|
|
137
109
|
};
|
|
138
110
|
return response;
|
|
139
111
|
};
|
|
140
|
-
const de_AssumeRoleWithSAMLCommandError = async (output, context) => {
|
|
141
|
-
const parsedOutput = {
|
|
142
|
-
...output,
|
|
143
|
-
body: await parseErrorBody(output.body, context),
|
|
144
|
-
};
|
|
145
|
-
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
146
|
-
switch (errorCode) {
|
|
147
|
-
case "ExpiredTokenException":
|
|
148
|
-
case "com.amazonaws.sts#ExpiredTokenException":
|
|
149
|
-
throw await de_ExpiredTokenExceptionRes(parsedOutput, context);
|
|
150
|
-
case "IDPRejectedClaim":
|
|
151
|
-
case "com.amazonaws.sts#IDPRejectedClaimException":
|
|
152
|
-
throw await de_IDPRejectedClaimExceptionRes(parsedOutput, context);
|
|
153
|
-
case "InvalidIdentityToken":
|
|
154
|
-
case "com.amazonaws.sts#InvalidIdentityTokenException":
|
|
155
|
-
throw await de_InvalidIdentityTokenExceptionRes(parsedOutput, context);
|
|
156
|
-
case "MalformedPolicyDocument":
|
|
157
|
-
case "com.amazonaws.sts#MalformedPolicyDocumentException":
|
|
158
|
-
throw await de_MalformedPolicyDocumentExceptionRes(parsedOutput, context);
|
|
159
|
-
case "PackedPolicyTooLarge":
|
|
160
|
-
case "com.amazonaws.sts#PackedPolicyTooLargeException":
|
|
161
|
-
throw await de_PackedPolicyTooLargeExceptionRes(parsedOutput, context);
|
|
162
|
-
case "RegionDisabledException":
|
|
163
|
-
case "com.amazonaws.sts#RegionDisabledException":
|
|
164
|
-
throw await de_RegionDisabledExceptionRes(parsedOutput, context);
|
|
165
|
-
default:
|
|
166
|
-
const parsedBody = parsedOutput.body;
|
|
167
|
-
return throwDefaultError({
|
|
168
|
-
output,
|
|
169
|
-
parsedBody: parsedBody.Error,
|
|
170
|
-
errorCode,
|
|
171
|
-
});
|
|
172
|
-
}
|
|
173
|
-
};
|
|
174
112
|
export const de_AssumeRoleWithWebIdentityCommand = async (output, context) => {
|
|
175
113
|
if (output.statusCode >= 300) {
|
|
176
|
-
return
|
|
114
|
+
return de_CommandError(output, context);
|
|
177
115
|
}
|
|
178
116
|
const data = await parseBody(output.body, context);
|
|
179
117
|
let contents = {};
|
|
@@ -184,46 +122,9 @@ export const de_AssumeRoleWithWebIdentityCommand = async (output, context) => {
|
|
|
184
122
|
};
|
|
185
123
|
return response;
|
|
186
124
|
};
|
|
187
|
-
const de_AssumeRoleWithWebIdentityCommandError = async (output, context) => {
|
|
188
|
-
const parsedOutput = {
|
|
189
|
-
...output,
|
|
190
|
-
body: await parseErrorBody(output.body, context),
|
|
191
|
-
};
|
|
192
|
-
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
193
|
-
switch (errorCode) {
|
|
194
|
-
case "ExpiredTokenException":
|
|
195
|
-
case "com.amazonaws.sts#ExpiredTokenException":
|
|
196
|
-
throw await de_ExpiredTokenExceptionRes(parsedOutput, context);
|
|
197
|
-
case "IDPCommunicationError":
|
|
198
|
-
case "com.amazonaws.sts#IDPCommunicationErrorException":
|
|
199
|
-
throw await de_IDPCommunicationErrorExceptionRes(parsedOutput, context);
|
|
200
|
-
case "IDPRejectedClaim":
|
|
201
|
-
case "com.amazonaws.sts#IDPRejectedClaimException":
|
|
202
|
-
throw await de_IDPRejectedClaimExceptionRes(parsedOutput, context);
|
|
203
|
-
case "InvalidIdentityToken":
|
|
204
|
-
case "com.amazonaws.sts#InvalidIdentityTokenException":
|
|
205
|
-
throw await de_InvalidIdentityTokenExceptionRes(parsedOutput, context);
|
|
206
|
-
case "MalformedPolicyDocument":
|
|
207
|
-
case "com.amazonaws.sts#MalformedPolicyDocumentException":
|
|
208
|
-
throw await de_MalformedPolicyDocumentExceptionRes(parsedOutput, context);
|
|
209
|
-
case "PackedPolicyTooLarge":
|
|
210
|
-
case "com.amazonaws.sts#PackedPolicyTooLargeException":
|
|
211
|
-
throw await de_PackedPolicyTooLargeExceptionRes(parsedOutput, context);
|
|
212
|
-
case "RegionDisabledException":
|
|
213
|
-
case "com.amazonaws.sts#RegionDisabledException":
|
|
214
|
-
throw await de_RegionDisabledExceptionRes(parsedOutput, context);
|
|
215
|
-
default:
|
|
216
|
-
const parsedBody = parsedOutput.body;
|
|
217
|
-
return throwDefaultError({
|
|
218
|
-
output,
|
|
219
|
-
parsedBody: parsedBody.Error,
|
|
220
|
-
errorCode,
|
|
221
|
-
});
|
|
222
|
-
}
|
|
223
|
-
};
|
|
224
125
|
export const de_DecodeAuthorizationMessageCommand = async (output, context) => {
|
|
225
126
|
if (output.statusCode >= 300) {
|
|
226
|
-
return
|
|
127
|
+
return de_CommandError(output, context);
|
|
227
128
|
}
|
|
228
129
|
const data = await parseBody(output.body, context);
|
|
229
130
|
let contents = {};
|
|
@@ -234,28 +135,9 @@ export const de_DecodeAuthorizationMessageCommand = async (output, context) => {
|
|
|
234
135
|
};
|
|
235
136
|
return response;
|
|
236
137
|
};
|
|
237
|
-
const de_DecodeAuthorizationMessageCommandError = async (output, context) => {
|
|
238
|
-
const parsedOutput = {
|
|
239
|
-
...output,
|
|
240
|
-
body: await parseErrorBody(output.body, context),
|
|
241
|
-
};
|
|
242
|
-
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
243
|
-
switch (errorCode) {
|
|
244
|
-
case "InvalidAuthorizationMessageException":
|
|
245
|
-
case "com.amazonaws.sts#InvalidAuthorizationMessageException":
|
|
246
|
-
throw await de_InvalidAuthorizationMessageExceptionRes(parsedOutput, context);
|
|
247
|
-
default:
|
|
248
|
-
const parsedBody = parsedOutput.body;
|
|
249
|
-
return throwDefaultError({
|
|
250
|
-
output,
|
|
251
|
-
parsedBody: parsedBody.Error,
|
|
252
|
-
errorCode,
|
|
253
|
-
});
|
|
254
|
-
}
|
|
255
|
-
};
|
|
256
138
|
export const de_GetAccessKeyInfoCommand = async (output, context) => {
|
|
257
139
|
if (output.statusCode >= 300) {
|
|
258
|
-
return
|
|
140
|
+
return de_CommandError(output, context);
|
|
259
141
|
}
|
|
260
142
|
const data = await parseBody(output.body, context);
|
|
261
143
|
let contents = {};
|
|
@@ -266,22 +148,9 @@ export const de_GetAccessKeyInfoCommand = async (output, context) => {
|
|
|
266
148
|
};
|
|
267
149
|
return response;
|
|
268
150
|
};
|
|
269
|
-
const de_GetAccessKeyInfoCommandError = async (output, context) => {
|
|
270
|
-
const parsedOutput = {
|
|
271
|
-
...output,
|
|
272
|
-
body: await parseErrorBody(output.body, context),
|
|
273
|
-
};
|
|
274
|
-
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
275
|
-
const parsedBody = parsedOutput.body;
|
|
276
|
-
return throwDefaultError({
|
|
277
|
-
output,
|
|
278
|
-
parsedBody: parsedBody.Error,
|
|
279
|
-
errorCode,
|
|
280
|
-
});
|
|
281
|
-
};
|
|
282
151
|
export const de_GetCallerIdentityCommand = async (output, context) => {
|
|
283
152
|
if (output.statusCode >= 300) {
|
|
284
|
-
return
|
|
153
|
+
return de_CommandError(output, context);
|
|
285
154
|
}
|
|
286
155
|
const data = await parseBody(output.body, context);
|
|
287
156
|
let contents = {};
|
|
@@ -292,22 +161,9 @@ export const de_GetCallerIdentityCommand = async (output, context) => {
|
|
|
292
161
|
};
|
|
293
162
|
return response;
|
|
294
163
|
};
|
|
295
|
-
const de_GetCallerIdentityCommandError = async (output, context) => {
|
|
296
|
-
const parsedOutput = {
|
|
297
|
-
...output,
|
|
298
|
-
body: await parseErrorBody(output.body, context),
|
|
299
|
-
};
|
|
300
|
-
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
301
|
-
const parsedBody = parsedOutput.body;
|
|
302
|
-
return throwDefaultError({
|
|
303
|
-
output,
|
|
304
|
-
parsedBody: parsedBody.Error,
|
|
305
|
-
errorCode,
|
|
306
|
-
});
|
|
307
|
-
};
|
|
308
164
|
export const de_GetFederationTokenCommand = async (output, context) => {
|
|
309
165
|
if (output.statusCode >= 300) {
|
|
310
|
-
return
|
|
166
|
+
return de_CommandError(output, context);
|
|
311
167
|
}
|
|
312
168
|
const data = await parseBody(output.body, context);
|
|
313
169
|
let contents = {};
|
|
@@ -318,34 +174,9 @@ export const de_GetFederationTokenCommand = async (output, context) => {
|
|
|
318
174
|
};
|
|
319
175
|
return response;
|
|
320
176
|
};
|
|
321
|
-
const de_GetFederationTokenCommandError = async (output, context) => {
|
|
322
|
-
const parsedOutput = {
|
|
323
|
-
...output,
|
|
324
|
-
body: await parseErrorBody(output.body, context),
|
|
325
|
-
};
|
|
326
|
-
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
327
|
-
switch (errorCode) {
|
|
328
|
-
case "MalformedPolicyDocument":
|
|
329
|
-
case "com.amazonaws.sts#MalformedPolicyDocumentException":
|
|
330
|
-
throw await de_MalformedPolicyDocumentExceptionRes(parsedOutput, context);
|
|
331
|
-
case "PackedPolicyTooLarge":
|
|
332
|
-
case "com.amazonaws.sts#PackedPolicyTooLargeException":
|
|
333
|
-
throw await de_PackedPolicyTooLargeExceptionRes(parsedOutput, context);
|
|
334
|
-
case "RegionDisabledException":
|
|
335
|
-
case "com.amazonaws.sts#RegionDisabledException":
|
|
336
|
-
throw await de_RegionDisabledExceptionRes(parsedOutput, context);
|
|
337
|
-
default:
|
|
338
|
-
const parsedBody = parsedOutput.body;
|
|
339
|
-
return throwDefaultError({
|
|
340
|
-
output,
|
|
341
|
-
parsedBody: parsedBody.Error,
|
|
342
|
-
errorCode,
|
|
343
|
-
});
|
|
344
|
-
}
|
|
345
|
-
};
|
|
346
177
|
export const de_GetSessionTokenCommand = async (output, context) => {
|
|
347
178
|
if (output.statusCode >= 300) {
|
|
348
|
-
return
|
|
179
|
+
return de_CommandError(output, context);
|
|
349
180
|
}
|
|
350
181
|
const data = await parseBody(output.body, context);
|
|
351
182
|
let contents = {};
|
|
@@ -356,16 +187,37 @@ export const de_GetSessionTokenCommand = async (output, context) => {
|
|
|
356
187
|
};
|
|
357
188
|
return response;
|
|
358
189
|
};
|
|
359
|
-
const
|
|
190
|
+
const de_CommandError = async (output, context) => {
|
|
360
191
|
const parsedOutput = {
|
|
361
192
|
...output,
|
|
362
193
|
body: await parseErrorBody(output.body, context),
|
|
363
194
|
};
|
|
364
195
|
const errorCode = loadQueryErrorCode(output, parsedOutput.body);
|
|
365
196
|
switch (errorCode) {
|
|
197
|
+
case "ExpiredTokenException":
|
|
198
|
+
case "com.amazonaws.sts#ExpiredTokenException":
|
|
199
|
+
throw await de_ExpiredTokenExceptionRes(parsedOutput, context);
|
|
200
|
+
case "MalformedPolicyDocument":
|
|
201
|
+
case "com.amazonaws.sts#MalformedPolicyDocumentException":
|
|
202
|
+
throw await de_MalformedPolicyDocumentExceptionRes(parsedOutput, context);
|
|
203
|
+
case "PackedPolicyTooLarge":
|
|
204
|
+
case "com.amazonaws.sts#PackedPolicyTooLargeException":
|
|
205
|
+
throw await de_PackedPolicyTooLargeExceptionRes(parsedOutput, context);
|
|
366
206
|
case "RegionDisabledException":
|
|
367
207
|
case "com.amazonaws.sts#RegionDisabledException":
|
|
368
208
|
throw await de_RegionDisabledExceptionRes(parsedOutput, context);
|
|
209
|
+
case "IDPRejectedClaim":
|
|
210
|
+
case "com.amazonaws.sts#IDPRejectedClaimException":
|
|
211
|
+
throw await de_IDPRejectedClaimExceptionRes(parsedOutput, context);
|
|
212
|
+
case "InvalidIdentityToken":
|
|
213
|
+
case "com.amazonaws.sts#InvalidIdentityTokenException":
|
|
214
|
+
throw await de_InvalidIdentityTokenExceptionRes(parsedOutput, context);
|
|
215
|
+
case "IDPCommunicationError":
|
|
216
|
+
case "com.amazonaws.sts#IDPCommunicationErrorException":
|
|
217
|
+
throw await de_IDPCommunicationErrorExceptionRes(parsedOutput, context);
|
|
218
|
+
case "InvalidAuthorizationMessageException":
|
|
219
|
+
case "com.amazonaws.sts#InvalidAuthorizationMessageException":
|
|
220
|
+
throw await de_InvalidAuthorizationMessageExceptionRes(parsedOutput, context);
|
|
369
221
|
default:
|
|
370
222
|
const parsedBody = parsedOutput.body;
|
|
371
223
|
return throwDefaultError({
|
|
@@ -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.507.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sts",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
},
|
|
89
89
|
"license": "Apache-2.0",
|
|
90
90
|
"peerDependencies": {
|
|
91
|
-
"@aws-sdk/credential-provider-node": "
|
|
91
|
+
"@aws-sdk/credential-provider-node": "^3.507.0"
|
|
92
92
|
},
|
|
93
93
|
"browser": {
|
|
94
94
|
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-ini",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.507.0",
|
|
4
4
|
"description": "AWS credential provider that sources credentials from ~/.aws/credentials and ~/.aws/config",
|
|
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-sts": "3.
|
|
27
|
+
"@aws-sdk/client-sts": "3.507.0",
|
|
28
28
|
"@aws-sdk/credential-provider-env": "3.502.0",
|
|
29
29
|
"@aws-sdk/credential-provider-process": "3.502.0",
|
|
30
|
-
"@aws-sdk/credential-provider-sso": "3.
|
|
31
|
-
"@aws-sdk/credential-provider-web-identity": "3.
|
|
30
|
+
"@aws-sdk/credential-provider-sso": "3.507.0",
|
|
31
|
+
"@aws-sdk/credential-provider-web-identity": "3.507.0",
|
|
32
32
|
"@aws-sdk/types": "3.502.0",
|
|
33
33
|
"@smithy/credential-provider-imds": "^2.2.1",
|
|
34
34
|
"@smithy/property-provider": "^2.1.1",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-node",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.507.0",
|
|
4
4
|
"description": "AWS credential provider that sources credentials from a Node.JS environment. ",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=14.0.0"
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@aws-sdk/credential-provider-env": "3.502.0",
|
|
31
31
|
"@aws-sdk/credential-provider-http": "3.503.1",
|
|
32
|
-
"@aws-sdk/credential-provider-ini": "3.
|
|
32
|
+
"@aws-sdk/credential-provider-ini": "3.507.0",
|
|
33
33
|
"@aws-sdk/credential-provider-process": "3.502.0",
|
|
34
|
-
"@aws-sdk/credential-provider-sso": "3.
|
|
35
|
-
"@aws-sdk/credential-provider-web-identity": "3.
|
|
34
|
+
"@aws-sdk/credential-provider-sso": "3.507.0",
|
|
35
|
+
"@aws-sdk/credential-provider-web-identity": "3.507.0",
|
|
36
36
|
"@aws-sdk/types": "3.502.0",
|
|
37
37
|
"@smithy/credential-provider-imds": "^2.2.1",
|
|
38
38
|
"@smithy/property-provider": "^2.1.1",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-sso",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.507.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,8 +24,8 @@
|
|
|
24
24
|
},
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@aws-sdk/client-sso": "3.
|
|
28
|
-
"@aws-sdk/token-providers": "3.
|
|
27
|
+
"@aws-sdk/client-sso": "3.507.0",
|
|
28
|
+
"@aws-sdk/token-providers": "3.507.0",
|
|
29
29
|
"@aws-sdk/types": "3.502.0",
|
|
30
30
|
"@smithy/property-provider": "^2.1.1",
|
|
31
31
|
"@smithy/shared-ini-file-loader": "^2.3.1",
|
|
@@ -1,4 +1,27 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
2
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
26
|
exports.fromWebToken = void 0;
|
|
4
27
|
const fromWebToken = (init) => async () => {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-web-identity",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.507.0",
|
|
4
4
|
"description": "AWS credential provider that calls STS assumeRole for temporary AWS credentials",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
},
|
|
33
33
|
"license": "Apache-2.0",
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@aws-sdk/client-sts": "3.
|
|
35
|
+
"@aws-sdk/client-sts": "3.507.0",
|
|
36
36
|
"@aws-sdk/types": "3.502.0",
|
|
37
37
|
"@smithy/property-provider": "^2.1.1",
|
|
38
38
|
"@smithy/types": "^2.9.1",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/token-providers",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.507.0",
|
|
4
4
|
"description": "A collection of token providers",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
},
|
|
27
27
|
"license": "Apache-2.0",
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
29
|
+
"@aws-sdk/client-sso-oidc": "3.507.0",
|
|
30
30
|
"@aws-sdk/types": "3.502.0",
|
|
31
31
|
"@smithy/property-provider": "^2.1.1",
|
|
32
32
|
"@smithy/shared-ini-file-loader": "^2.3.1",
|
package/package.json
CHANGED
|
@@ -83,8 +83,8 @@
|
|
|
83
83
|
"aws-cdk-lib": "2.110.0",
|
|
84
84
|
"aws-sdk-client-mock": "^3.0.1",
|
|
85
85
|
"aws-sdk-client-mock-jest": "^3.0.1",
|
|
86
|
-
"cdk-nag": "^2.28.
|
|
87
|
-
"cdklabs-projen-project-types": "^0.1.
|
|
86
|
+
"cdk-nag": "^2.28.27",
|
|
87
|
+
"cdklabs-projen-project-types": "^0.1.188",
|
|
88
88
|
"constructs": "10.0.5",
|
|
89
89
|
"esbuild": "^0.20.0",
|
|
90
90
|
"eslint": "^8",
|
|
@@ -96,9 +96,9 @@
|
|
|
96
96
|
"jsii-diff": "^1.94.0",
|
|
97
97
|
"jsii-docgen": "^7.2.9",
|
|
98
98
|
"jsii-pacmak": "^1.94.0",
|
|
99
|
-
"jsii-rosetta": "^5.3.
|
|
99
|
+
"jsii-rosetta": "^5.3.12",
|
|
100
100
|
"lambda-tester": "^4.0.1",
|
|
101
|
-
"projen": "0.79.
|
|
101
|
+
"projen": "0.79.7",
|
|
102
102
|
"standard-version": "^9",
|
|
103
103
|
"ts-jest": "^27",
|
|
104
104
|
"ts-node": "^10.9.2",
|
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
"constructs": "^10.0.5"
|
|
110
110
|
},
|
|
111
111
|
"dependencies": {
|
|
112
|
-
"@aws-sdk/client-codedeploy": "^3.
|
|
112
|
+
"@aws-sdk/client-codedeploy": "^3.507.0",
|
|
113
113
|
"jmespath": "^0.16.0"
|
|
114
114
|
},
|
|
115
115
|
"bundledDependencies": [
|
|
@@ -127,7 +127,7 @@
|
|
|
127
127
|
"publishConfig": {
|
|
128
128
|
"access": "public"
|
|
129
129
|
},
|
|
130
|
-
"version": "0.0.
|
|
130
|
+
"version": "0.0.244",
|
|
131
131
|
"jest": {
|
|
132
132
|
"testMatch": [
|
|
133
133
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|