aws-sdk 2.1630.0 → 2.1632.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 +1 -1
- package/apis/acm-2015-12-08.min.json +3 -0
- package/apis/bedrock-agent-2023-06-05.min.json +28 -15
- package/apis/bedrock-runtime-2023-09-30.min.json +514 -44
- package/apis/cloudtrail-2013-11-01.min.json +40 -23
- package/apis/codeguru-security-2018-05-10.min.json +6 -0
- package/apis/connect-2017-08-08.min.json +210 -206
- package/apis/elasticache-2015-02-02.min.json +3 -0
- package/apis/emr-serverless-2021-07-13.min.json +147 -11
- package/apis/emr-serverless-2021-07-13.paginators.json +6 -0
- package/apis/launch-wizard-2018-05-10.min.json +159 -0
- package/apis/sagemaker-2017-07-24.min.json +524 -479
- package/clients/bedrockagent.d.ts +17 -0
- package/clients/bedrockruntime.d.ts +421 -0
- package/clients/cloudtrail.d.ts +29 -12
- package/clients/codebuild.d.ts +2 -2
- package/clients/codegurusecurity.d.ts +60 -55
- package/clients/connect.d.ts +6 -1
- package/clients/elasticache.d.ts +6 -6
- package/clients/emrserverless.d.ts +169 -0
- package/clients/launchwizard.d.ts +181 -8
- package/clients/rds.d.ts +5 -5
- package/clients/sagemaker.d.ts +49 -10
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +12 -12
- package/dist/aws-sdk.js +259 -232
- package/dist/aws-sdk.min.js +94 -94
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -3,10 +3,8 @@
|
|
3
3
|
"metadata": {
|
4
4
|
"apiVersion": "2021-07-13",
|
5
5
|
"endpointPrefix": "emr-serverless",
|
6
|
+
"jsonVersion": "1.1",
|
6
7
|
"protocol": "rest-json",
|
7
|
-
"protocols": [
|
8
|
-
"rest-json"
|
9
|
-
],
|
10
8
|
"serviceFullName": "EMR Serverless",
|
11
9
|
"serviceId": "EMR Serverless",
|
12
10
|
"signatureVersion": "v4",
|
@@ -193,6 +191,11 @@
|
|
193
191
|
"jobRunId": {
|
194
192
|
"location": "uri",
|
195
193
|
"locationName": "jobRunId"
|
194
|
+
},
|
195
|
+
"attempt": {
|
196
|
+
"location": "querystring",
|
197
|
+
"locationName": "attempt",
|
198
|
+
"type": "integer"
|
196
199
|
}
|
197
200
|
}
|
198
201
|
},
|
@@ -223,6 +226,11 @@
|
|
223
226
|
"jobRunId": {
|
224
227
|
"location": "uri",
|
225
228
|
"locationName": "jobRunId"
|
229
|
+
},
|
230
|
+
"attempt": {
|
231
|
+
"location": "querystring",
|
232
|
+
"locationName": "attempt",
|
233
|
+
"type": "integer"
|
226
234
|
}
|
227
235
|
}
|
228
236
|
},
|
@@ -264,10 +272,10 @@
|
|
264
272
|
"stateDetails": {},
|
265
273
|
"releaseLabel": {},
|
266
274
|
"configurationOverrides": {
|
267
|
-
"shape": "
|
275
|
+
"shape": "S2a"
|
268
276
|
},
|
269
277
|
"jobDriver": {
|
270
|
-
"shape": "
|
278
|
+
"shape": "S2b"
|
271
279
|
},
|
272
280
|
"tags": {
|
273
281
|
"shape": "Sk"
|
@@ -308,6 +316,19 @@
|
|
308
316
|
"type": "double"
|
309
317
|
}
|
310
318
|
}
|
319
|
+
},
|
320
|
+
"mode": {},
|
321
|
+
"retryPolicy": {
|
322
|
+
"shape": "S2r"
|
323
|
+
},
|
324
|
+
"attempt": {
|
325
|
+
"type": "integer"
|
326
|
+
},
|
327
|
+
"attemptCreatedAt": {
|
328
|
+
"type": "timestamp"
|
329
|
+
},
|
330
|
+
"attemptUpdatedAt": {
|
331
|
+
"type": "timestamp"
|
311
332
|
}
|
312
333
|
}
|
313
334
|
}
|
@@ -381,6 +402,92 @@
|
|
381
402
|
}
|
382
403
|
}
|
383
404
|
},
|
405
|
+
"ListJobRunAttempts": {
|
406
|
+
"http": {
|
407
|
+
"method": "GET",
|
408
|
+
"requestUri": "/applications/{applicationId}/jobruns/{jobRunId}/attempts",
|
409
|
+
"responseCode": 200
|
410
|
+
},
|
411
|
+
"input": {
|
412
|
+
"type": "structure",
|
413
|
+
"required": [
|
414
|
+
"applicationId",
|
415
|
+
"jobRunId"
|
416
|
+
],
|
417
|
+
"members": {
|
418
|
+
"applicationId": {
|
419
|
+
"location": "uri",
|
420
|
+
"locationName": "applicationId"
|
421
|
+
},
|
422
|
+
"jobRunId": {
|
423
|
+
"location": "uri",
|
424
|
+
"locationName": "jobRunId"
|
425
|
+
},
|
426
|
+
"nextToken": {
|
427
|
+
"location": "querystring",
|
428
|
+
"locationName": "nextToken"
|
429
|
+
},
|
430
|
+
"maxResults": {
|
431
|
+
"location": "querystring",
|
432
|
+
"locationName": "maxResults",
|
433
|
+
"type": "integer"
|
434
|
+
}
|
435
|
+
}
|
436
|
+
},
|
437
|
+
"output": {
|
438
|
+
"type": "structure",
|
439
|
+
"required": [
|
440
|
+
"jobRunAttempts"
|
441
|
+
],
|
442
|
+
"members": {
|
443
|
+
"jobRunAttempts": {
|
444
|
+
"type": "list",
|
445
|
+
"member": {
|
446
|
+
"type": "structure",
|
447
|
+
"required": [
|
448
|
+
"applicationId",
|
449
|
+
"id",
|
450
|
+
"arn",
|
451
|
+
"createdBy",
|
452
|
+
"jobCreatedAt",
|
453
|
+
"createdAt",
|
454
|
+
"updatedAt",
|
455
|
+
"executionRole",
|
456
|
+
"state",
|
457
|
+
"stateDetails",
|
458
|
+
"releaseLabel"
|
459
|
+
],
|
460
|
+
"members": {
|
461
|
+
"applicationId": {},
|
462
|
+
"id": {},
|
463
|
+
"name": {},
|
464
|
+
"mode": {},
|
465
|
+
"arn": {},
|
466
|
+
"createdBy": {},
|
467
|
+
"jobCreatedAt": {
|
468
|
+
"type": "timestamp"
|
469
|
+
},
|
470
|
+
"createdAt": {
|
471
|
+
"type": "timestamp"
|
472
|
+
},
|
473
|
+
"updatedAt": {
|
474
|
+
"type": "timestamp"
|
475
|
+
},
|
476
|
+
"executionRole": {},
|
477
|
+
"state": {},
|
478
|
+
"stateDetails": {},
|
479
|
+
"releaseLabel": {},
|
480
|
+
"type": {},
|
481
|
+
"attempt": {
|
482
|
+
"type": "integer"
|
483
|
+
}
|
484
|
+
}
|
485
|
+
}
|
486
|
+
},
|
487
|
+
"nextToken": {}
|
488
|
+
}
|
489
|
+
}
|
490
|
+
},
|
384
491
|
"ListJobRuns": {
|
385
492
|
"http": {
|
386
493
|
"method": "GET",
|
@@ -421,6 +528,10 @@
|
|
421
528
|
"locationName": "states",
|
422
529
|
"type": "list",
|
423
530
|
"member": {}
|
531
|
+
},
|
532
|
+
"mode": {
|
533
|
+
"location": "querystring",
|
534
|
+
"locationName": "mode"
|
424
535
|
}
|
425
536
|
}
|
426
537
|
},
|
@@ -450,6 +561,7 @@
|
|
450
561
|
"applicationId": {},
|
451
562
|
"id": {},
|
452
563
|
"name": {},
|
564
|
+
"mode": {},
|
453
565
|
"arn": {},
|
454
566
|
"createdBy": {},
|
455
567
|
"createdAt": {
|
@@ -462,7 +574,16 @@
|
|
462
574
|
"state": {},
|
463
575
|
"stateDetails": {},
|
464
576
|
"releaseLabel": {},
|
465
|
-
"type": {}
|
577
|
+
"type": {},
|
578
|
+
"attempt": {
|
579
|
+
"type": "integer"
|
580
|
+
},
|
581
|
+
"attemptCreatedAt": {
|
582
|
+
"type": "timestamp"
|
583
|
+
},
|
584
|
+
"attemptUpdatedAt": {
|
585
|
+
"type": "timestamp"
|
586
|
+
}
|
466
587
|
}
|
467
588
|
}
|
468
589
|
},
|
@@ -542,10 +663,10 @@
|
|
542
663
|
},
|
543
664
|
"executionRoleArn": {},
|
544
665
|
"jobDriver": {
|
545
|
-
"shape": "
|
666
|
+
"shape": "S2b"
|
546
667
|
},
|
547
668
|
"configurationOverrides": {
|
548
|
-
"shape": "
|
669
|
+
"shape": "S2a"
|
549
670
|
},
|
550
671
|
"tags": {
|
551
672
|
"shape": "Sk"
|
@@ -553,7 +674,11 @@
|
|
553
674
|
"executionTimeoutMinutes": {
|
554
675
|
"type": "long"
|
555
676
|
},
|
556
|
-
"name": {}
|
677
|
+
"name": {},
|
678
|
+
"mode": {},
|
679
|
+
"retryPolicy": {
|
680
|
+
"shape": "S2r"
|
681
|
+
}
|
557
682
|
}
|
558
683
|
},
|
559
684
|
"output": {
|
@@ -975,7 +1100,7 @@
|
|
975
1100
|
"resolvedImageDigest": {}
|
976
1101
|
}
|
977
1102
|
},
|
978
|
-
"
|
1103
|
+
"S2a": {
|
979
1104
|
"type": "structure",
|
980
1105
|
"members": {
|
981
1106
|
"applicationConfiguration": {
|
@@ -986,7 +1111,7 @@
|
|
986
1111
|
}
|
987
1112
|
}
|
988
1113
|
},
|
989
|
-
"
|
1114
|
+
"S2b": {
|
990
1115
|
"type": "structure",
|
991
1116
|
"members": {
|
992
1117
|
"sparkSubmit": {
|
@@ -1034,6 +1159,17 @@
|
|
1034
1159
|
}
|
1035
1160
|
},
|
1036
1161
|
"union": true
|
1162
|
+
},
|
1163
|
+
"S2r": {
|
1164
|
+
"type": "structure",
|
1165
|
+
"members": {
|
1166
|
+
"maxAttempts": {
|
1167
|
+
"type": "integer"
|
1168
|
+
},
|
1169
|
+
"maxFailedAttemptsPerHour": {
|
1170
|
+
"type": "integer"
|
1171
|
+
}
|
1172
|
+
}
|
1037
1173
|
}
|
1038
1174
|
}
|
1039
1175
|
}
|
@@ -6,6 +6,12 @@
|
|
6
6
|
"limit_key": "maxResults",
|
7
7
|
"result_key": "applications"
|
8
8
|
},
|
9
|
+
"ListJobRunAttempts": {
|
10
|
+
"input_token": "nextToken",
|
11
|
+
"output_token": "nextToken",
|
12
|
+
"limit_key": "maxResults",
|
13
|
+
"result_key": "jobRunAttempts"
|
14
|
+
},
|
9
15
|
"ListJobRuns": {
|
10
16
|
"input_token": "nextToken",
|
11
17
|
"output_token": "nextToken",
|
@@ -5,6 +5,9 @@
|
|
5
5
|
"endpointPrefix": "launchwizard",
|
6
6
|
"jsonVersion": "1.1",
|
7
7
|
"protocol": "rest-json",
|
8
|
+
"protocols": [
|
9
|
+
"rest-json"
|
10
|
+
],
|
8
11
|
"serviceFullName": "AWS Launch Wizard",
|
9
12
|
"serviceId": "Launch Wizard",
|
10
13
|
"signatureVersion": "v4",
|
@@ -34,6 +37,9 @@
|
|
34
37
|
"specifications": {
|
35
38
|
"shape": "S5"
|
36
39
|
},
|
40
|
+
"tags": {
|
41
|
+
"shape": "S8"
|
42
|
+
},
|
37
43
|
"workloadName": {}
|
38
44
|
}
|
39
45
|
},
|
@@ -93,6 +99,7 @@
|
|
93
99
|
"deletedAt": {
|
94
100
|
"type": "timestamp"
|
95
101
|
},
|
102
|
+
"deploymentArn": {},
|
96
103
|
"id": {},
|
97
104
|
"name": {},
|
98
105
|
"patternName": {},
|
@@ -101,6 +108,9 @@
|
|
101
108
|
"shape": "S5"
|
102
109
|
},
|
103
110
|
"status": {},
|
111
|
+
"tags": {
|
112
|
+
"shape": "S8"
|
113
|
+
},
|
104
114
|
"workloadName": {}
|
105
115
|
}
|
106
116
|
}
|
@@ -139,6 +149,66 @@
|
|
139
149
|
}
|
140
150
|
}
|
141
151
|
},
|
152
|
+
"GetWorkloadDeploymentPattern": {
|
153
|
+
"http": {
|
154
|
+
"requestUri": "/getWorkloadDeploymentPattern",
|
155
|
+
"responseCode": 200
|
156
|
+
},
|
157
|
+
"input": {
|
158
|
+
"type": "structure",
|
159
|
+
"required": [
|
160
|
+
"deploymentPatternName",
|
161
|
+
"workloadName"
|
162
|
+
],
|
163
|
+
"members": {
|
164
|
+
"deploymentPatternName": {},
|
165
|
+
"workloadName": {}
|
166
|
+
}
|
167
|
+
},
|
168
|
+
"output": {
|
169
|
+
"type": "structure",
|
170
|
+
"members": {
|
171
|
+
"workloadDeploymentPattern": {
|
172
|
+
"type": "structure",
|
173
|
+
"members": {
|
174
|
+
"deploymentPatternName": {},
|
175
|
+
"description": {},
|
176
|
+
"displayName": {},
|
177
|
+
"specifications": {
|
178
|
+
"type": "list",
|
179
|
+
"member": {
|
180
|
+
"type": "structure",
|
181
|
+
"members": {
|
182
|
+
"allowedValues": {
|
183
|
+
"type": "list",
|
184
|
+
"member": {}
|
185
|
+
},
|
186
|
+
"conditionals": {
|
187
|
+
"type": "list",
|
188
|
+
"member": {
|
189
|
+
"type": "structure",
|
190
|
+
"members": {
|
191
|
+
"comparator": {},
|
192
|
+
"name": {},
|
193
|
+
"value": {}
|
194
|
+
}
|
195
|
+
}
|
196
|
+
},
|
197
|
+
"description": {},
|
198
|
+
"name": {},
|
199
|
+
"required": {}
|
200
|
+
}
|
201
|
+
}
|
202
|
+
},
|
203
|
+
"status": {},
|
204
|
+
"statusMessage": {},
|
205
|
+
"workloadName": {},
|
206
|
+
"workloadVersionName": {}
|
207
|
+
}
|
208
|
+
}
|
209
|
+
}
|
210
|
+
}
|
211
|
+
},
|
142
212
|
"ListDeploymentEvents": {
|
143
213
|
"http": {
|
144
214
|
"requestUri": "/listDeploymentEvents",
|
@@ -229,6 +299,33 @@
|
|
229
299
|
}
|
230
300
|
}
|
231
301
|
},
|
302
|
+
"ListTagsForResource": {
|
303
|
+
"http": {
|
304
|
+
"method": "GET",
|
305
|
+
"requestUri": "/tags/{resourceArn}",
|
306
|
+
"responseCode": 200
|
307
|
+
},
|
308
|
+
"input": {
|
309
|
+
"type": "structure",
|
310
|
+
"required": [
|
311
|
+
"resourceArn"
|
312
|
+
],
|
313
|
+
"members": {
|
314
|
+
"resourceArn": {
|
315
|
+
"location": "uri",
|
316
|
+
"locationName": "resourceArn"
|
317
|
+
}
|
318
|
+
}
|
319
|
+
},
|
320
|
+
"output": {
|
321
|
+
"type": "structure",
|
322
|
+
"members": {
|
323
|
+
"tags": {
|
324
|
+
"shape": "S8"
|
325
|
+
}
|
326
|
+
}
|
327
|
+
}
|
328
|
+
},
|
232
329
|
"ListWorkloadDeploymentPatterns": {
|
233
330
|
"http": {
|
234
331
|
"requestUri": "/listWorkloadDeploymentPatterns",
|
@@ -299,6 +396,63 @@
|
|
299
396
|
}
|
300
397
|
}
|
301
398
|
}
|
399
|
+
},
|
400
|
+
"TagResource": {
|
401
|
+
"http": {
|
402
|
+
"requestUri": "/tags/{resourceArn}",
|
403
|
+
"responseCode": 200
|
404
|
+
},
|
405
|
+
"input": {
|
406
|
+
"type": "structure",
|
407
|
+
"required": [
|
408
|
+
"resourceArn",
|
409
|
+
"tags"
|
410
|
+
],
|
411
|
+
"members": {
|
412
|
+
"resourceArn": {
|
413
|
+
"location": "uri",
|
414
|
+
"locationName": "resourceArn"
|
415
|
+
},
|
416
|
+
"tags": {
|
417
|
+
"shape": "S8"
|
418
|
+
}
|
419
|
+
}
|
420
|
+
},
|
421
|
+
"output": {
|
422
|
+
"type": "structure",
|
423
|
+
"members": {}
|
424
|
+
}
|
425
|
+
},
|
426
|
+
"UntagResource": {
|
427
|
+
"http": {
|
428
|
+
"method": "DELETE",
|
429
|
+
"requestUri": "/tags/{resourceArn}",
|
430
|
+
"responseCode": 200
|
431
|
+
},
|
432
|
+
"input": {
|
433
|
+
"type": "structure",
|
434
|
+
"required": [
|
435
|
+
"resourceArn",
|
436
|
+
"tagKeys"
|
437
|
+
],
|
438
|
+
"members": {
|
439
|
+
"resourceArn": {
|
440
|
+
"location": "uri",
|
441
|
+
"locationName": "resourceArn"
|
442
|
+
},
|
443
|
+
"tagKeys": {
|
444
|
+
"location": "querystring",
|
445
|
+
"locationName": "tagKeys",
|
446
|
+
"type": "list",
|
447
|
+
"member": {}
|
448
|
+
}
|
449
|
+
}
|
450
|
+
},
|
451
|
+
"output": {
|
452
|
+
"type": "structure",
|
453
|
+
"members": {}
|
454
|
+
},
|
455
|
+
"idempotent": true
|
302
456
|
}
|
303
457
|
},
|
304
458
|
"shapes": {
|
@@ -307,6 +461,11 @@
|
|
307
461
|
"key": {},
|
308
462
|
"value": {},
|
309
463
|
"sensitive": true
|
464
|
+
},
|
465
|
+
"S8": {
|
466
|
+
"type": "map",
|
467
|
+
"key": {},
|
468
|
+
"value": {}
|
310
469
|
}
|
311
470
|
}
|
312
471
|
}
|