@cloud-copilot/iam-data 0.18.202604021 → 0.18.202604081
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/data/actions/bedrock-mantle.json +310 -4
- package/data/actions/bedrock.json +209 -0
- package/data/actions/dataexchange.json +22 -1
- package/data/actions/glue.json +8 -0
- package/data/actions/lightsail.json +16 -1
- package/data/actions/s3files.json +394 -0
- package/data/actions/ses.json +144 -44
- package/data/actions/transform.json +9 -0
- package/data/conditionKeys/bedrock-mantle.json +15 -0
- package/data/conditionKeys/s3files.json +27 -0
- package/data/resourceTypes/bedrock-mantle.json +14 -0
- package/data/resourceTypes/bedrock.json +14 -0
- package/data/resourceTypes/dataexchange.json +4 -1
- package/data/resourceTypes/lightsail.json +4 -1
- package/data/resourceTypes/s3files.json +16 -0
- package/data/serviceNames.json +1 -0
- package/data/services.json +1 -0
- package/package.json +2 -2
|
@@ -16,6 +16,34 @@
|
|
|
16
16
|
],
|
|
17
17
|
"dependentActions": []
|
|
18
18
|
},
|
|
19
|
+
"associatecustomizedmodel": {
|
|
20
|
+
"name": "AssociateCustomizedModel",
|
|
21
|
+
"description": "Grants permission to associate a customized model with a project",
|
|
22
|
+
"accessLevel": "Write",
|
|
23
|
+
"resourceTypes": [
|
|
24
|
+
{
|
|
25
|
+
"name": "customized-model",
|
|
26
|
+
"required": true,
|
|
27
|
+
"conditionKeys": [
|
|
28
|
+
"aws:ResourceTag/${TagKey}"
|
|
29
|
+
],
|
|
30
|
+
"dependentActions": []
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"name": "project",
|
|
34
|
+
"required": true,
|
|
35
|
+
"conditionKeys": [
|
|
36
|
+
"aws:ResourceTag/${TagKey}"
|
|
37
|
+
],
|
|
38
|
+
"dependentActions": []
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"conditionKeys": [
|
|
42
|
+
"bedrock-mantle:ProjectArn",
|
|
43
|
+
"bedrock-mantle:CustomizedModelArn"
|
|
44
|
+
],
|
|
45
|
+
"dependentActions": []
|
|
46
|
+
},
|
|
19
47
|
"callwithbearertoken": {
|
|
20
48
|
"name": "CallWithBearerToken",
|
|
21
49
|
"isPermissionOnly": true,
|
|
@@ -63,6 +91,26 @@
|
|
|
63
91
|
],
|
|
64
92
|
"dependentActions": []
|
|
65
93
|
},
|
|
94
|
+
"createcustomizedmodel": {
|
|
95
|
+
"name": "CreateCustomizedModel",
|
|
96
|
+
"description": "Grants permission to import a customized model with custom weights",
|
|
97
|
+
"accessLevel": "Write",
|
|
98
|
+
"resourceTypes": [
|
|
99
|
+
{
|
|
100
|
+
"name": "customized-model",
|
|
101
|
+
"required": true,
|
|
102
|
+
"conditionKeys": [
|
|
103
|
+
"aws:ResourceTag/${TagKey}"
|
|
104
|
+
],
|
|
105
|
+
"dependentActions": []
|
|
106
|
+
}
|
|
107
|
+
],
|
|
108
|
+
"conditionKeys": [
|
|
109
|
+
"aws:RequestTag/${TagKey}",
|
|
110
|
+
"aws:TagKeys"
|
|
111
|
+
],
|
|
112
|
+
"dependentActions": []
|
|
113
|
+
},
|
|
66
114
|
"createfile": {
|
|
67
115
|
"name": "CreateFile",
|
|
68
116
|
"description": "Grants permission to create a file in a project",
|
|
@@ -140,6 +188,53 @@
|
|
|
140
188
|
],
|
|
141
189
|
"dependentActions": []
|
|
142
190
|
},
|
|
191
|
+
"createreservation": {
|
|
192
|
+
"name": "CreateReservation",
|
|
193
|
+
"description": "Grants permission to create a capacity reservation for a model",
|
|
194
|
+
"accessLevel": "Write",
|
|
195
|
+
"resourceTypes": [
|
|
196
|
+
{
|
|
197
|
+
"name": "project",
|
|
198
|
+
"required": true,
|
|
199
|
+
"conditionKeys": [
|
|
200
|
+
"aws:ResourceTag/${TagKey}"
|
|
201
|
+
],
|
|
202
|
+
"dependentActions": []
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"name": "reservation",
|
|
206
|
+
"required": true,
|
|
207
|
+
"conditionKeys": [
|
|
208
|
+
"aws:ResourceTag/${TagKey}"
|
|
209
|
+
],
|
|
210
|
+
"dependentActions": []
|
|
211
|
+
}
|
|
212
|
+
],
|
|
213
|
+
"conditionKeys": [
|
|
214
|
+
"aws:RequestTag/${TagKey}",
|
|
215
|
+
"aws:TagKeys",
|
|
216
|
+
"bedrock-mantle:ProjectArn",
|
|
217
|
+
"bedrock-mantle:ReservationArn"
|
|
218
|
+
],
|
|
219
|
+
"dependentActions": []
|
|
220
|
+
},
|
|
221
|
+
"deletecustomizedmodel": {
|
|
222
|
+
"name": "DeleteCustomizedModel",
|
|
223
|
+
"description": "Grants permission to delete a customized model",
|
|
224
|
+
"accessLevel": "Write",
|
|
225
|
+
"resourceTypes": [
|
|
226
|
+
{
|
|
227
|
+
"name": "customized-model",
|
|
228
|
+
"required": true,
|
|
229
|
+
"conditionKeys": [],
|
|
230
|
+
"dependentActions": []
|
|
231
|
+
}
|
|
232
|
+
],
|
|
233
|
+
"conditionKeys": [
|
|
234
|
+
"aws:ResourceTag/${TagKey}"
|
|
235
|
+
],
|
|
236
|
+
"dependentActions": []
|
|
237
|
+
},
|
|
143
238
|
"deletefile": {
|
|
144
239
|
"name": "DeleteFile",
|
|
145
240
|
"description": "Grants permission to delete a specific file",
|
|
@@ -176,6 +271,79 @@
|
|
|
176
271
|
],
|
|
177
272
|
"dependentActions": []
|
|
178
273
|
},
|
|
274
|
+
"deletereservation": {
|
|
275
|
+
"name": "DeleteReservation",
|
|
276
|
+
"description": "Grants permission to delete a capacity reservation",
|
|
277
|
+
"accessLevel": "Write",
|
|
278
|
+
"resourceTypes": [
|
|
279
|
+
{
|
|
280
|
+
"name": "project",
|
|
281
|
+
"required": true,
|
|
282
|
+
"conditionKeys": [
|
|
283
|
+
"aws:ResourceTag/${TagKey}"
|
|
284
|
+
],
|
|
285
|
+
"dependentActions": []
|
|
286
|
+
},
|
|
287
|
+
{
|
|
288
|
+
"name": "reservation",
|
|
289
|
+
"required": true,
|
|
290
|
+
"conditionKeys": [
|
|
291
|
+
"aws:ResourceTag/${TagKey}"
|
|
292
|
+
],
|
|
293
|
+
"dependentActions": []
|
|
294
|
+
}
|
|
295
|
+
],
|
|
296
|
+
"conditionKeys": [
|
|
297
|
+
"bedrock-mantle:ProjectArn",
|
|
298
|
+
"bedrock-mantle:ReservationArn"
|
|
299
|
+
],
|
|
300
|
+
"dependentActions": []
|
|
301
|
+
},
|
|
302
|
+
"disassociatecustomizedmodel": {
|
|
303
|
+
"name": "DisassociateCustomizedModel",
|
|
304
|
+
"description": "Grants permission to disassociate a customized model from a project",
|
|
305
|
+
"accessLevel": "Write",
|
|
306
|
+
"resourceTypes": [
|
|
307
|
+
{
|
|
308
|
+
"name": "customized-model",
|
|
309
|
+
"required": true,
|
|
310
|
+
"conditionKeys": [
|
|
311
|
+
"aws:ResourceTag/${TagKey}"
|
|
312
|
+
],
|
|
313
|
+
"dependentActions": []
|
|
314
|
+
},
|
|
315
|
+
{
|
|
316
|
+
"name": "project",
|
|
317
|
+
"required": true,
|
|
318
|
+
"conditionKeys": [
|
|
319
|
+
"aws:ResourceTag/${TagKey}"
|
|
320
|
+
],
|
|
321
|
+
"dependentActions": []
|
|
322
|
+
}
|
|
323
|
+
],
|
|
324
|
+
"conditionKeys": [
|
|
325
|
+
"bedrock-mantle:ProjectArn",
|
|
326
|
+
"bedrock-mantle:CustomizedModelArn"
|
|
327
|
+
],
|
|
328
|
+
"dependentActions": []
|
|
329
|
+
},
|
|
330
|
+
"getcustomizedmodel": {
|
|
331
|
+
"name": "GetCustomizedModel",
|
|
332
|
+
"description": "Grants permission to get customized model",
|
|
333
|
+
"accessLevel": "Read",
|
|
334
|
+
"resourceTypes": [
|
|
335
|
+
{
|
|
336
|
+
"name": "customized-model",
|
|
337
|
+
"required": true,
|
|
338
|
+
"conditionKeys": [],
|
|
339
|
+
"dependentActions": []
|
|
340
|
+
}
|
|
341
|
+
],
|
|
342
|
+
"conditionKeys": [
|
|
343
|
+
"aws:ResourceTag/${TagKey}"
|
|
344
|
+
],
|
|
345
|
+
"dependentActions": []
|
|
346
|
+
},
|
|
179
347
|
"getfile": {
|
|
180
348
|
"name": "GetFile",
|
|
181
349
|
"description": "Grants permission to retrieve information about a specific file",
|
|
@@ -265,6 +433,53 @@
|
|
|
265
433
|
],
|
|
266
434
|
"dependentActions": []
|
|
267
435
|
},
|
|
436
|
+
"getreservation": {
|
|
437
|
+
"name": "GetReservation",
|
|
438
|
+
"description": "Grants permission to get reservation",
|
|
439
|
+
"accessLevel": "Read",
|
|
440
|
+
"resourceTypes": [
|
|
441
|
+
{
|
|
442
|
+
"name": "reservation",
|
|
443
|
+
"required": true,
|
|
444
|
+
"conditionKeys": [],
|
|
445
|
+
"dependentActions": []
|
|
446
|
+
}
|
|
447
|
+
],
|
|
448
|
+
"conditionKeys": [
|
|
449
|
+
"aws:ResourceTag/${TagKey}"
|
|
450
|
+
],
|
|
451
|
+
"dependentActions": []
|
|
452
|
+
},
|
|
453
|
+
"listcustomizedmodelassociations": {
|
|
454
|
+
"name": "ListCustomizedModelAssociations",
|
|
455
|
+
"description": "Grants permission to list project associations for a customized model",
|
|
456
|
+
"accessLevel": "List",
|
|
457
|
+
"resourceTypes": [
|
|
458
|
+
{
|
|
459
|
+
"name": "customized-model",
|
|
460
|
+
"required": true,
|
|
461
|
+
"conditionKeys": [],
|
|
462
|
+
"dependentActions": []
|
|
463
|
+
}
|
|
464
|
+
],
|
|
465
|
+
"conditionKeys": [],
|
|
466
|
+
"dependentActions": []
|
|
467
|
+
},
|
|
468
|
+
"listcustomizedmodels": {
|
|
469
|
+
"name": "ListCustomizedModels",
|
|
470
|
+
"description": "Grants permission to list customized models",
|
|
471
|
+
"accessLevel": "List",
|
|
472
|
+
"resourceTypes": [
|
|
473
|
+
{
|
|
474
|
+
"name": "customized-model",
|
|
475
|
+
"required": true,
|
|
476
|
+
"conditionKeys": [],
|
|
477
|
+
"dependentActions": []
|
|
478
|
+
}
|
|
479
|
+
],
|
|
480
|
+
"conditionKeys": [],
|
|
481
|
+
"dependentActions": []
|
|
482
|
+
},
|
|
268
483
|
"listfiles": {
|
|
269
484
|
"name": "ListFiles",
|
|
270
485
|
"description": "Grants permission to list all available files in a project",
|
|
@@ -331,21 +546,52 @@
|
|
|
331
546
|
"conditionKeys": [],
|
|
332
547
|
"dependentActions": []
|
|
333
548
|
},
|
|
549
|
+
"listreservations": {
|
|
550
|
+
"name": "ListReservations",
|
|
551
|
+
"description": "Grants permission to list reservations",
|
|
552
|
+
"accessLevel": "List",
|
|
553
|
+
"resourceTypes": [
|
|
554
|
+
{
|
|
555
|
+
"name": "reservation",
|
|
556
|
+
"required": true,
|
|
557
|
+
"conditionKeys": [],
|
|
558
|
+
"dependentActions": []
|
|
559
|
+
}
|
|
560
|
+
],
|
|
561
|
+
"conditionKeys": [],
|
|
562
|
+
"dependentActions": []
|
|
563
|
+
},
|
|
334
564
|
"listtagsforresource": {
|
|
335
565
|
"name": "ListTagsForResource",
|
|
336
566
|
"description": "Grants permission to list tags for a resource",
|
|
337
567
|
"accessLevel": "Read",
|
|
338
568
|
"resourceTypes": [
|
|
569
|
+
{
|
|
570
|
+
"name": "customized-model",
|
|
571
|
+
"required": false,
|
|
572
|
+
"conditionKeys": [
|
|
573
|
+
"aws:ResourceTag/${TagKey}"
|
|
574
|
+
],
|
|
575
|
+
"dependentActions": []
|
|
576
|
+
},
|
|
339
577
|
{
|
|
340
578
|
"name": "project",
|
|
341
579
|
"required": false,
|
|
342
|
-
"conditionKeys": [
|
|
580
|
+
"conditionKeys": [
|
|
581
|
+
"aws:ResourceTag/${TagKey}"
|
|
582
|
+
],
|
|
583
|
+
"dependentActions": []
|
|
584
|
+
},
|
|
585
|
+
{
|
|
586
|
+
"name": "reservation",
|
|
587
|
+
"required": false,
|
|
588
|
+
"conditionKeys": [
|
|
589
|
+
"aws:ResourceTag/${TagKey}"
|
|
590
|
+
],
|
|
343
591
|
"dependentActions": []
|
|
344
592
|
}
|
|
345
593
|
],
|
|
346
|
-
"conditionKeys": [
|
|
347
|
-
"aws:ResourceTag/${TagKey}"
|
|
348
|
-
],
|
|
594
|
+
"conditionKeys": [],
|
|
349
595
|
"dependentActions": []
|
|
350
596
|
},
|
|
351
597
|
"tagresource": {
|
|
@@ -353,6 +599,14 @@
|
|
|
353
599
|
"description": "Grants permission to tag a resource",
|
|
354
600
|
"accessLevel": "Tagging",
|
|
355
601
|
"resourceTypes": [
|
|
602
|
+
{
|
|
603
|
+
"name": "customized-model",
|
|
604
|
+
"required": false,
|
|
605
|
+
"conditionKeys": [
|
|
606
|
+
"aws:ResourceTag/${TagKey}"
|
|
607
|
+
],
|
|
608
|
+
"dependentActions": []
|
|
609
|
+
},
|
|
356
610
|
{
|
|
357
611
|
"name": "project",
|
|
358
612
|
"required": false,
|
|
@@ -360,6 +614,14 @@
|
|
|
360
614
|
"aws:ResourceTag/${TagKey}"
|
|
361
615
|
],
|
|
362
616
|
"dependentActions": []
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
"name": "reservation",
|
|
620
|
+
"required": false,
|
|
621
|
+
"conditionKeys": [
|
|
622
|
+
"aws:ResourceTag/${TagKey}"
|
|
623
|
+
],
|
|
624
|
+
"dependentActions": []
|
|
363
625
|
}
|
|
364
626
|
],
|
|
365
627
|
"conditionKeys": [
|
|
@@ -373,6 +635,14 @@
|
|
|
373
635
|
"description": "Grants permission to untag a resource",
|
|
374
636
|
"accessLevel": "Tagging",
|
|
375
637
|
"resourceTypes": [
|
|
638
|
+
{
|
|
639
|
+
"name": "customized-model",
|
|
640
|
+
"required": false,
|
|
641
|
+
"conditionKeys": [
|
|
642
|
+
"aws:ResourceTag/${TagKey}"
|
|
643
|
+
],
|
|
644
|
+
"dependentActions": []
|
|
645
|
+
},
|
|
376
646
|
{
|
|
377
647
|
"name": "project",
|
|
378
648
|
"required": false,
|
|
@@ -380,6 +650,14 @@
|
|
|
380
650
|
"aws:ResourceTag/${TagKey}"
|
|
381
651
|
],
|
|
382
652
|
"dependentActions": []
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"name": "reservation",
|
|
656
|
+
"required": false,
|
|
657
|
+
"conditionKeys": [
|
|
658
|
+
"aws:ResourceTag/${TagKey}"
|
|
659
|
+
],
|
|
660
|
+
"dependentActions": []
|
|
383
661
|
}
|
|
384
662
|
],
|
|
385
663
|
"conditionKeys": [
|
|
@@ -403,5 +681,33 @@
|
|
|
403
681
|
"aws:ResourceTag/${TagKey}"
|
|
404
682
|
],
|
|
405
683
|
"dependentActions": []
|
|
684
|
+
},
|
|
685
|
+
"updatereservation": {
|
|
686
|
+
"name": "UpdateReservation",
|
|
687
|
+
"description": "Grants permission to update reservation",
|
|
688
|
+
"accessLevel": "Write",
|
|
689
|
+
"resourceTypes": [
|
|
690
|
+
{
|
|
691
|
+
"name": "project",
|
|
692
|
+
"required": true,
|
|
693
|
+
"conditionKeys": [
|
|
694
|
+
"aws:ResourceTag/${TagKey}"
|
|
695
|
+
],
|
|
696
|
+
"dependentActions": []
|
|
697
|
+
},
|
|
698
|
+
{
|
|
699
|
+
"name": "reservation",
|
|
700
|
+
"required": true,
|
|
701
|
+
"conditionKeys": [
|
|
702
|
+
"aws:ResourceTag/${TagKey}"
|
|
703
|
+
],
|
|
704
|
+
"dependentActions": []
|
|
705
|
+
}
|
|
706
|
+
],
|
|
707
|
+
"conditionKeys": [
|
|
708
|
+
"bedrock-mantle:ProjectArn",
|
|
709
|
+
"bedrock-mantle:ReservationArn"
|
|
710
|
+
],
|
|
711
|
+
"dependentActions": []
|
|
406
712
|
}
|
|
407
713
|
}
|
|
@@ -299,6 +299,17 @@
|
|
|
299
299
|
],
|
|
300
300
|
"dependentActions": []
|
|
301
301
|
},
|
|
302
|
+
"createdataautomationlibrary": {
|
|
303
|
+
"name": "CreateDataAutomationLibrary",
|
|
304
|
+
"description": "Grants permission to create a Data Automation Library",
|
|
305
|
+
"accessLevel": "Write",
|
|
306
|
+
"resourceTypes": [],
|
|
307
|
+
"conditionKeys": [
|
|
308
|
+
"aws:RequestTag/${TagKey}",
|
|
309
|
+
"aws:TagKeys"
|
|
310
|
+
],
|
|
311
|
+
"dependentActions": []
|
|
312
|
+
},
|
|
302
313
|
"createdataautomationproject": {
|
|
303
314
|
"name": "CreateDataAutomationProject",
|
|
304
315
|
"description": "Grants permission to create a data automation project",
|
|
@@ -309,6 +320,12 @@
|
|
|
309
320
|
"required": false,
|
|
310
321
|
"conditionKeys": [],
|
|
311
322
|
"dependentActions": []
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"name": "data-automation-library",
|
|
326
|
+
"required": false,
|
|
327
|
+
"conditionKeys": [],
|
|
328
|
+
"dependentActions": []
|
|
312
329
|
}
|
|
313
330
|
],
|
|
314
331
|
"conditionKeys": [
|
|
@@ -901,6 +918,21 @@
|
|
|
901
918
|
"conditionKeys": [],
|
|
902
919
|
"dependentActions": []
|
|
903
920
|
},
|
|
921
|
+
"deletedataautomationlibrary": {
|
|
922
|
+
"name": "DeleteDataAutomationLibrary",
|
|
923
|
+
"description": "Grants permission to delete a Data Automation Library",
|
|
924
|
+
"accessLevel": "Write",
|
|
925
|
+
"resourceTypes": [
|
|
926
|
+
{
|
|
927
|
+
"name": "data-automation-library",
|
|
928
|
+
"required": true,
|
|
929
|
+
"conditionKeys": [],
|
|
930
|
+
"dependentActions": []
|
|
931
|
+
}
|
|
932
|
+
],
|
|
933
|
+
"conditionKeys": [],
|
|
934
|
+
"dependentActions": []
|
|
935
|
+
},
|
|
904
936
|
"deletedataautomationproject": {
|
|
905
937
|
"name": "DeleteDataAutomationProject",
|
|
906
938
|
"description": "Grants permission to delete a data automation project",
|
|
@@ -1608,6 +1640,57 @@
|
|
|
1608
1640
|
"conditionKeys": [],
|
|
1609
1641
|
"dependentActions": []
|
|
1610
1642
|
},
|
|
1643
|
+
"getdataautomationlibrary": {
|
|
1644
|
+
"name": "GetDataAutomationLibrary",
|
|
1645
|
+
"description": "Grants permission to retrieve an existing Data Automation Library",
|
|
1646
|
+
"accessLevel": "Read",
|
|
1647
|
+
"resourceTypes": [
|
|
1648
|
+
{
|
|
1649
|
+
"name": "data-automation-library",
|
|
1650
|
+
"required": true,
|
|
1651
|
+
"conditionKeys": [],
|
|
1652
|
+
"dependentActions": []
|
|
1653
|
+
}
|
|
1654
|
+
],
|
|
1655
|
+
"conditionKeys": [],
|
|
1656
|
+
"dependentActions": []
|
|
1657
|
+
},
|
|
1658
|
+
"getdataautomationlibraryentity": {
|
|
1659
|
+
"name": "GetDataAutomationLibraryEntity",
|
|
1660
|
+
"description": "Grants permission to get a Data Automation Library entity",
|
|
1661
|
+
"accessLevel": "Read",
|
|
1662
|
+
"resourceTypes": [
|
|
1663
|
+
{
|
|
1664
|
+
"name": "data-automation-library",
|
|
1665
|
+
"required": true,
|
|
1666
|
+
"conditionKeys": [],
|
|
1667
|
+
"dependentActions": []
|
|
1668
|
+
}
|
|
1669
|
+
],
|
|
1670
|
+
"conditionKeys": [],
|
|
1671
|
+
"dependentActions": []
|
|
1672
|
+
},
|
|
1673
|
+
"getdataautomationlibraryingestionjob": {
|
|
1674
|
+
"name": "GetDataAutomationLibraryIngestionJob",
|
|
1675
|
+
"description": "Grants permission to get details about a Data Automation Library ingestion job",
|
|
1676
|
+
"accessLevel": "Read",
|
|
1677
|
+
"resourceTypes": [
|
|
1678
|
+
{
|
|
1679
|
+
"name": "data-automation-library",
|
|
1680
|
+
"required": true,
|
|
1681
|
+
"conditionKeys": [],
|
|
1682
|
+
"dependentActions": []
|
|
1683
|
+
},
|
|
1684
|
+
{
|
|
1685
|
+
"name": "data-automation-library-ingestion-job",
|
|
1686
|
+
"required": true,
|
|
1687
|
+
"conditionKeys": [],
|
|
1688
|
+
"dependentActions": []
|
|
1689
|
+
}
|
|
1690
|
+
],
|
|
1691
|
+
"conditionKeys": [],
|
|
1692
|
+
"dependentActions": []
|
|
1693
|
+
},
|
|
1611
1694
|
"getdataautomationproject": {
|
|
1612
1695
|
"name": "GetDataAutomationProject",
|
|
1613
1696
|
"description": "Grants permission to retrieve an existing data automation project",
|
|
@@ -2265,6 +2348,24 @@
|
|
|
2265
2348
|
],
|
|
2266
2349
|
"dependentActions": []
|
|
2267
2350
|
},
|
|
2351
|
+
"invokedataautomationlibraryingestionjob": {
|
|
2352
|
+
"name": "InvokeDataAutomationLibraryIngestionJob",
|
|
2353
|
+
"description": "Grants permission to invoke a Data Automation Library ingestion job",
|
|
2354
|
+
"accessLevel": "Write",
|
|
2355
|
+
"resourceTypes": [
|
|
2356
|
+
{
|
|
2357
|
+
"name": "data-automation-library",
|
|
2358
|
+
"required": true,
|
|
2359
|
+
"conditionKeys": [],
|
|
2360
|
+
"dependentActions": []
|
|
2361
|
+
}
|
|
2362
|
+
],
|
|
2363
|
+
"conditionKeys": [
|
|
2364
|
+
"aws:RequestTag/${TagKey}",
|
|
2365
|
+
"aws:TagKeys"
|
|
2366
|
+
],
|
|
2367
|
+
"dependentActions": []
|
|
2368
|
+
},
|
|
2268
2369
|
"invokeflow": {
|
|
2269
2370
|
"name": "InvokeFlow",
|
|
2270
2371
|
"description": "Grants permission to invoke a prompt flow with user input",
|
|
@@ -2631,6 +2732,51 @@
|
|
|
2631
2732
|
"conditionKeys": [],
|
|
2632
2733
|
"dependentActions": []
|
|
2633
2734
|
},
|
|
2735
|
+
"listdataautomationlibraries": {
|
|
2736
|
+
"name": "ListDataAutomationLibraries",
|
|
2737
|
+
"description": "Grants permission to list Data Automation Libraries",
|
|
2738
|
+
"accessLevel": "List",
|
|
2739
|
+
"resourceTypes": [
|
|
2740
|
+
{
|
|
2741
|
+
"name": "data-automation-project",
|
|
2742
|
+
"required": false,
|
|
2743
|
+
"conditionKeys": [],
|
|
2744
|
+
"dependentActions": []
|
|
2745
|
+
}
|
|
2746
|
+
],
|
|
2747
|
+
"conditionKeys": [],
|
|
2748
|
+
"dependentActions": []
|
|
2749
|
+
},
|
|
2750
|
+
"listdataautomationlibraryentities": {
|
|
2751
|
+
"name": "ListDataAutomationLibraryEntities",
|
|
2752
|
+
"description": "Grants permission to list Data Automation Library entities",
|
|
2753
|
+
"accessLevel": "List",
|
|
2754
|
+
"resourceTypes": [
|
|
2755
|
+
{
|
|
2756
|
+
"name": "data-automation-library",
|
|
2757
|
+
"required": true,
|
|
2758
|
+
"conditionKeys": [],
|
|
2759
|
+
"dependentActions": []
|
|
2760
|
+
}
|
|
2761
|
+
],
|
|
2762
|
+
"conditionKeys": [],
|
|
2763
|
+
"dependentActions": []
|
|
2764
|
+
},
|
|
2765
|
+
"listdataautomationlibraryingestionjobs": {
|
|
2766
|
+
"name": "ListDataAutomationLibraryIngestionJobs",
|
|
2767
|
+
"description": "Grants permission to list Data Automation Library ingestion jobs",
|
|
2768
|
+
"accessLevel": "List",
|
|
2769
|
+
"resourceTypes": [
|
|
2770
|
+
{
|
|
2771
|
+
"name": "data-automation-library",
|
|
2772
|
+
"required": true,
|
|
2773
|
+
"conditionKeys": [],
|
|
2774
|
+
"dependentActions": []
|
|
2775
|
+
}
|
|
2776
|
+
],
|
|
2777
|
+
"conditionKeys": [],
|
|
2778
|
+
"dependentActions": []
|
|
2779
|
+
},
|
|
2634
2780
|
"listdataautomationprojects": {
|
|
2635
2781
|
"name": "ListDataAutomationProjects",
|
|
2636
2782
|
"description": "Grants permission to list existing data automation projects",
|
|
@@ -2641,6 +2787,12 @@
|
|
|
2641
2787
|
"required": false,
|
|
2642
2788
|
"conditionKeys": [],
|
|
2643
2789
|
"dependentActions": []
|
|
2790
|
+
},
|
|
2791
|
+
{
|
|
2792
|
+
"name": "data-automation-project",
|
|
2793
|
+
"required": false,
|
|
2794
|
+
"conditionKeys": [],
|
|
2795
|
+
"dependentActions": []
|
|
2644
2796
|
}
|
|
2645
2797
|
],
|
|
2646
2798
|
"conditionKeys": [],
|
|
@@ -3036,6 +3188,18 @@
|
|
|
3036
3188
|
"conditionKeys": [],
|
|
3037
3189
|
"dependentActions": []
|
|
3038
3190
|
},
|
|
3191
|
+
{
|
|
3192
|
+
"name": "data-automation-library",
|
|
3193
|
+
"required": true,
|
|
3194
|
+
"conditionKeys": [],
|
|
3195
|
+
"dependentActions": []
|
|
3196
|
+
},
|
|
3197
|
+
{
|
|
3198
|
+
"name": "data-automation-library-ingestion-job",
|
|
3199
|
+
"required": true,
|
|
3200
|
+
"conditionKeys": [],
|
|
3201
|
+
"dependentActions": []
|
|
3202
|
+
},
|
|
3039
3203
|
{
|
|
3040
3204
|
"name": "data-automation-project",
|
|
3041
3205
|
"required": true,
|
|
@@ -3550,6 +3714,18 @@
|
|
|
3550
3714
|
"conditionKeys": [],
|
|
3551
3715
|
"dependentActions": []
|
|
3552
3716
|
},
|
|
3717
|
+
{
|
|
3718
|
+
"name": "data-automation-library",
|
|
3719
|
+
"required": false,
|
|
3720
|
+
"conditionKeys": [],
|
|
3721
|
+
"dependentActions": []
|
|
3722
|
+
},
|
|
3723
|
+
{
|
|
3724
|
+
"name": "data-automation-library-ingestion-job",
|
|
3725
|
+
"required": false,
|
|
3726
|
+
"conditionKeys": [],
|
|
3727
|
+
"dependentActions": []
|
|
3728
|
+
},
|
|
3553
3729
|
{
|
|
3554
3730
|
"name": "data-automation-project",
|
|
3555
3731
|
"required": false,
|
|
@@ -3730,6 +3906,18 @@
|
|
|
3730
3906
|
"conditionKeys": [],
|
|
3731
3907
|
"dependentActions": []
|
|
3732
3908
|
},
|
|
3909
|
+
{
|
|
3910
|
+
"name": "data-automation-library",
|
|
3911
|
+
"required": false,
|
|
3912
|
+
"conditionKeys": [],
|
|
3913
|
+
"dependentActions": []
|
|
3914
|
+
},
|
|
3915
|
+
{
|
|
3916
|
+
"name": "data-automation-library-ingestion-job",
|
|
3917
|
+
"required": false,
|
|
3918
|
+
"conditionKeys": [],
|
|
3919
|
+
"dependentActions": []
|
|
3920
|
+
},
|
|
3733
3921
|
{
|
|
3734
3922
|
"name": "data-automation-project",
|
|
3735
3923
|
"required": false,
|
|
@@ -4000,6 +4188,21 @@
|
|
|
4000
4188
|
"conditionKeys": [],
|
|
4001
4189
|
"dependentActions": []
|
|
4002
4190
|
},
|
|
4191
|
+
"updatedataautomationlibrary": {
|
|
4192
|
+
"name": "UpdateDataAutomationLibrary",
|
|
4193
|
+
"description": "Grants permission to update a Data Automation Library",
|
|
4194
|
+
"accessLevel": "Write",
|
|
4195
|
+
"resourceTypes": [
|
|
4196
|
+
{
|
|
4197
|
+
"name": "data-automation-library",
|
|
4198
|
+
"required": true,
|
|
4199
|
+
"conditionKeys": [],
|
|
4200
|
+
"dependentActions": []
|
|
4201
|
+
}
|
|
4202
|
+
],
|
|
4203
|
+
"conditionKeys": [],
|
|
4204
|
+
"dependentActions": []
|
|
4205
|
+
},
|
|
4003
4206
|
"updatedataautomationproject": {
|
|
4004
4207
|
"name": "UpdateDataAutomationProject",
|
|
4005
4208
|
"description": "Grants permission to update a data automation project",
|
|
@@ -4016,6 +4219,12 @@
|
|
|
4016
4219
|
"required": false,
|
|
4017
4220
|
"conditionKeys": [],
|
|
4018
4221
|
"dependentActions": []
|
|
4222
|
+
},
|
|
4223
|
+
{
|
|
4224
|
+
"name": "data-automation-project",
|
|
4225
|
+
"required": false,
|
|
4226
|
+
"conditionKeys": [],
|
|
4227
|
+
"dependentActions": []
|
|
4019
4228
|
}
|
|
4020
4229
|
],
|
|
4021
4230
|
"conditionKeys": [],
|