@cloud-copilot/iam-data 0.9.202411221 → 0.9.202411251

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.
Files changed (38) hide show
  1. package/data/actions/application-autoscaling.json +8 -0
  2. package/data/actions/artifact.json +76 -0
  3. package/data/actions/bcm-pricing-calculator.json +477 -0
  4. package/data/actions/ce.json +24 -0
  5. package/data/actions/chatbot.json +134 -2
  6. package/data/actions/cleanrooms.json +32 -0
  7. package/data/actions/cloudtrail.json +155 -6
  8. package/data/actions/connect.json +2 -1
  9. package/data/actions/iot.json +189 -0
  10. package/data/actions/iotfleetwise.json +113 -0
  11. package/data/actions/logs.json +93 -0
  12. package/data/actions/profile.json +102 -0
  13. package/data/actions/q.json +9 -0
  14. package/data/actions/qapps.json +74 -0
  15. package/data/actions/quicksight.json +250 -18
  16. package/data/actions/resiliencehub.json +24 -0
  17. package/data/actions/s3.json +9 -4
  18. package/data/actions/s3express.json +42 -0
  19. package/data/actions/ssm-quicksetup.json +62 -4
  20. package/data/actions/ssm.json +54 -1
  21. package/data/conditionKeys/bcm-pricing-calculator.json +32 -0
  22. package/data/conditionKeys/connect.json +5 -0
  23. package/data/conditionKeys/iot.json +15 -0
  24. package/data/conditionKeys/iotfleetwise.json +5 -0
  25. package/data/conditionKeys/quicksight.json +10 -0
  26. package/data/conditionKeys/s3.json +15 -0
  27. package/data/conditionKeys/ssm.json +0 -5
  28. package/data/resourceTypes/bcm-pricing-calculator.json +23 -0
  29. package/data/resourceTypes/chatbot.json +4 -0
  30. package/data/resourceTypes/cloudtrail.json +7 -0
  31. package/data/resourceTypes/iot.json +7 -0
  32. package/data/resourceTypes/iotfleetwise.json +7 -0
  33. package/data/resourceTypes/profile.json +7 -0
  34. package/data/resourceTypes/quicksight.json +14 -0
  35. package/data/resourceTypes/ssm-quicksetup.json +1 -1
  36. package/data/serviceNames.json +1 -0
  37. package/data/services.json +1 -0
  38. package/package.json +2 -2
@@ -377,6 +377,24 @@
377
377
  ],
378
378
  "dependentActions": []
379
379
  },
380
+ "createcommand": {
381
+ "name": "CreateCommand",
382
+ "description": "Grants permission to create a command that can be used to start new executions against a device",
383
+ "accessLevel": "Write",
384
+ "resourceTypes": [
385
+ {
386
+ "name": "command",
387
+ "required": true,
388
+ "conditionKeys": [],
389
+ "dependentActions": []
390
+ }
391
+ ],
392
+ "conditionKeys": [
393
+ "aws:RequestTag/${TagKey}",
394
+ "aws:TagKeys"
395
+ ],
396
+ "dependentActions": []
397
+ },
380
398
  "createcustommetric": {
381
399
  "name": "CreateCustomMetric",
382
400
  "description": "Grants permission to create a custom metric for device side metric reporting and monitoring",
@@ -999,6 +1017,42 @@
999
1017
  "conditionKeys": [],
1000
1018
  "dependentActions": []
1001
1019
  },
1020
+ "deletecommand": {
1021
+ "name": "DeleteCommand",
1022
+ "description": "Grants permission to delete a command",
1023
+ "accessLevel": "Write",
1024
+ "resourceTypes": [
1025
+ {
1026
+ "name": "command",
1027
+ "required": true,
1028
+ "conditionKeys": [],
1029
+ "dependentActions": []
1030
+ }
1031
+ ],
1032
+ "conditionKeys": [],
1033
+ "dependentActions": []
1034
+ },
1035
+ "deletecommandexecution": {
1036
+ "name": "DeleteCommandExecution",
1037
+ "description": "Grants permission to delete a command execution",
1038
+ "accessLevel": "Write",
1039
+ "resourceTypes": [
1040
+ {
1041
+ "name": "client",
1042
+ "required": false,
1043
+ "conditionKeys": [],
1044
+ "dependentActions": []
1045
+ },
1046
+ {
1047
+ "name": "thing",
1048
+ "required": false,
1049
+ "conditionKeys": [],
1050
+ "dependentActions": []
1051
+ }
1052
+ ],
1053
+ "conditionKeys": [],
1054
+ "dependentActions": []
1055
+ },
1002
1056
  "deletecustommetric": {
1003
1057
  "name": "DeleteCustomMetric",
1004
1058
  "description": "Grants permission to deletes the specified custom metric from your AWS account",
@@ -2072,6 +2126,42 @@
2072
2126
  "conditionKeys": [],
2073
2127
  "dependentActions": []
2074
2128
  },
2129
+ "getcommand": {
2130
+ "name": "GetCommand",
2131
+ "description": "Grants permission to get the information about the command",
2132
+ "accessLevel": "Read",
2133
+ "resourceTypes": [
2134
+ {
2135
+ "name": "command",
2136
+ "required": true,
2137
+ "conditionKeys": [],
2138
+ "dependentActions": []
2139
+ }
2140
+ ],
2141
+ "conditionKeys": [],
2142
+ "dependentActions": []
2143
+ },
2144
+ "getcommandexecution": {
2145
+ "name": "GetCommandExecution",
2146
+ "description": "Grants permission to get the information of a command execution",
2147
+ "accessLevel": "Read",
2148
+ "resourceTypes": [
2149
+ {
2150
+ "name": "client",
2151
+ "required": false,
2152
+ "conditionKeys": [],
2153
+ "dependentActions": []
2154
+ },
2155
+ {
2156
+ "name": "thing",
2157
+ "required": false,
2158
+ "conditionKeys": [],
2159
+ "dependentActions": []
2160
+ }
2161
+ ],
2162
+ "conditionKeys": [],
2163
+ "dependentActions": []
2164
+ },
2075
2165
  "geteffectivepolicies": {
2076
2166
  "name": "GetEffectivePolicies",
2077
2167
  "description": "Grants permission to get effective policies",
@@ -2430,6 +2520,41 @@
2430
2520
  "conditionKeys": [],
2431
2521
  "dependentActions": []
2432
2522
  },
2523
+ "listcommandexecutions": {
2524
+ "name": "ListCommandExecutions",
2525
+ "description": "Grants permission to list commands executions in the account",
2526
+ "accessLevel": "List",
2527
+ "resourceTypes": [
2528
+ {
2529
+ "name": "client",
2530
+ "required": false,
2531
+ "conditionKeys": [],
2532
+ "dependentActions": []
2533
+ },
2534
+ {
2535
+ "name": "command",
2536
+ "required": false,
2537
+ "conditionKeys": [],
2538
+ "dependentActions": []
2539
+ },
2540
+ {
2541
+ "name": "thing",
2542
+ "required": false,
2543
+ "conditionKeys": [],
2544
+ "dependentActions": []
2545
+ }
2546
+ ],
2547
+ "conditionKeys": [],
2548
+ "dependentActions": []
2549
+ },
2550
+ "listcommands": {
2551
+ "name": "ListCommands",
2552
+ "description": "Grants permission to list commands in the account",
2553
+ "accessLevel": "List",
2554
+ "resourceTypes": [],
2555
+ "conditionKeys": [],
2556
+ "dependentActions": []
2557
+ },
2433
2558
  "listcustommetrics": {
2434
2559
  "name": "ListCustomMetrics",
2435
2560
  "description": "Grants permission to list the custom metrics in your AWS account",
@@ -2807,6 +2932,12 @@
2807
2932
  "conditionKeys": [],
2808
2933
  "dependentActions": []
2809
2934
  },
2935
+ {
2936
+ "name": "command",
2937
+ "required": false,
2938
+ "conditionKeys": [],
2939
+ "dependentActions": []
2940
+ },
2810
2941
  {
2811
2942
  "name": "custommetric",
2812
2943
  "required": false,
@@ -3366,6 +3497,37 @@
3366
3497
  "conditionKeys": [],
3367
3498
  "dependentActions": []
3368
3499
  },
3500
+ "startcommandexecution": {
3501
+ "name": "StartCommandExecution",
3502
+ "description": "Grants permission to start a new command execution",
3503
+ "accessLevel": "Write",
3504
+ "resourceTypes": [
3505
+ {
3506
+ "name": "command",
3507
+ "required": true,
3508
+ "conditionKeys": [],
3509
+ "dependentActions": []
3510
+ },
3511
+ {
3512
+ "name": "client",
3513
+ "required": false,
3514
+ "conditionKeys": [],
3515
+ "dependentActions": []
3516
+ },
3517
+ {
3518
+ "name": "thing",
3519
+ "required": false,
3520
+ "conditionKeys": [],
3521
+ "dependentActions": []
3522
+ }
3523
+ ],
3524
+ "conditionKeys": [
3525
+ "iot:CommandExecutionParameterString/${CommandParameterName}",
3526
+ "iot:CommandExecutionParameterBoolean/${CommandParameterName}",
3527
+ "iot:CommandExecutionParameterNumber/${CommandParameterName}"
3528
+ ],
3529
+ "dependentActions": []
3530
+ },
3369
3531
  "startdetectmitigationactionstask": {
3370
3532
  "name": "StartDetectMitigationActionsTask",
3371
3533
  "description": "Grants permission to start a Device Defender ML Detect mitigation actions task",
@@ -3449,6 +3611,12 @@
3449
3611
  "conditionKeys": [],
3450
3612
  "dependentActions": []
3451
3613
  },
3614
+ {
3615
+ "name": "command",
3616
+ "required": false,
3617
+ "conditionKeys": [],
3618
+ "dependentActions": []
3619
+ },
3452
3620
  {
3453
3621
  "name": "custommetric",
3454
3622
  "required": false,
@@ -3650,6 +3818,12 @@
3650
3818
  "conditionKeys": [],
3651
3819
  "dependentActions": []
3652
3820
  },
3821
+ {
3822
+ "name": "command",
3823
+ "required": false,
3824
+ "conditionKeys": [],
3825
+ "dependentActions": []
3826
+ },
3653
3827
  {
3654
3828
  "name": "custommetric",
3655
3829
  "required": false,
@@ -3869,6 +4043,21 @@
3869
4043
  "conditionKeys": [],
3870
4044
  "dependentActions": []
3871
4045
  },
4046
+ "updatecommand": {
4047
+ "name": "UpdateCommand",
4048
+ "description": "Grants permission to update a command",
4049
+ "accessLevel": "Write",
4050
+ "resourceTypes": [
4051
+ {
4052
+ "name": "command",
4053
+ "required": true,
4054
+ "conditionKeys": [],
4055
+ "dependentActions": []
4056
+ }
4057
+ ],
4058
+ "conditionKeys": [],
4059
+ "dependentActions": []
4060
+ },
3872
4061
  "updatecustommetric": {
3873
4062
  "name": "UpdateCustomMetric",
3874
4063
  "description": "Grants permission to update the specified custom metric",
@@ -210,6 +210,30 @@
210
210
  ],
211
211
  "dependentActions": []
212
212
  },
213
+ "createstatetemplate": {
214
+ "name": "CreateStateTemplate",
215
+ "description": "Grants permission to create a state template",
216
+ "accessLevel": "Write",
217
+ "resourceTypes": [
218
+ {
219
+ "name": "signalcatalog",
220
+ "required": true,
221
+ "conditionKeys": [],
222
+ "dependentActions": []
223
+ },
224
+ {
225
+ "name": "statetemplate",
226
+ "required": true,
227
+ "conditionKeys": [],
228
+ "dependentActions": []
229
+ }
230
+ ],
231
+ "conditionKeys": [
232
+ "aws:RequestTag/${TagKey}",
233
+ "aws:TagKeys"
234
+ ],
235
+ "dependentActions": []
236
+ },
213
237
  "createvehicle": {
214
238
  "name": "CreateVehicle",
215
239
  "description": "Grants permission to create a vehicle",
@@ -318,6 +342,21 @@
318
342
  "conditionKeys": [],
319
343
  "dependentActions": []
320
344
  },
345
+ "deletestatetemplate": {
346
+ "name": "DeleteStateTemplate",
347
+ "description": "Grants permission to delete a state template",
348
+ "accessLevel": "Write",
349
+ "resourceTypes": [
350
+ {
351
+ "name": "statetemplate",
352
+ "required": true,
353
+ "conditionKeys": [],
354
+ "dependentActions": []
355
+ }
356
+ ],
357
+ "conditionKeys": [],
358
+ "dependentActions": []
359
+ },
321
360
  "deletevehicle": {
322
361
  "name": "DeleteVehicle",
323
362
  "description": "Grants permission to delete a vehicle",
@@ -354,6 +393,30 @@
354
393
  "conditionKeys": [],
355
394
  "dependentActions": []
356
395
  },
396
+ "generatecommandpayload": {
397
+ "name": "GenerateCommandPayload",
398
+ "isPermissionOnly": true,
399
+ "description": "Grants permission to generate the payload for running a command on a vehicle",
400
+ "accessLevel": "Permissions management",
401
+ "resourceTypes": [
402
+ {
403
+ "name": "vehicle",
404
+ "required": true,
405
+ "conditionKeys": [],
406
+ "dependentActions": []
407
+ },
408
+ {
409
+ "name": "statetemplate",
410
+ "required": false,
411
+ "conditionKeys": [],
412
+ "dependentActions": []
413
+ }
414
+ ],
415
+ "conditionKeys": [
416
+ "iotfleetwise:Signals"
417
+ ],
418
+ "dependentActions": []
419
+ },
357
420
  "getcampaign": {
358
421
  "name": "GetCampaign",
359
422
  "description": "Grants permission to get summary information for a given campaign",
@@ -453,6 +516,21 @@
453
516
  "conditionKeys": [],
454
517
  "dependentActions": []
455
518
  },
519
+ "getstatetemplate": {
520
+ "name": "GetStateTemplate",
521
+ "description": "Grants permission to get summary information for a given state template",
522
+ "accessLevel": "Read",
523
+ "resourceTypes": [
524
+ {
525
+ "name": "statetemplate",
526
+ "required": true,
527
+ "conditionKeys": [],
528
+ "dependentActions": []
529
+ }
530
+ ],
531
+ "conditionKeys": [],
532
+ "dependentActions": []
533
+ },
456
534
  "getvehicle": {
457
535
  "name": "GetVehicle",
458
536
  "description": "Grants permission to get summary information for a vehicle",
@@ -631,6 +709,14 @@
631
709
  "conditionKeys": [],
632
710
  "dependentActions": []
633
711
  },
712
+ "liststatetemplates": {
713
+ "name": "ListStateTemplates",
714
+ "description": "Grants permission to list state templates",
715
+ "accessLevel": "Read",
716
+ "resourceTypes": [],
717
+ "conditionKeys": [],
718
+ "dependentActions": []
719
+ },
634
720
  "listtagsforresource": {
635
721
  "name": "ListTagsForResource",
636
722
  "description": "Grants permission to list tags for a resource",
@@ -760,6 +846,12 @@
760
846
  "conditionKeys": [],
761
847
  "dependentActions": []
762
848
  },
849
+ {
850
+ "name": "statetemplate",
851
+ "required": false,
852
+ "conditionKeys": [],
853
+ "dependentActions": []
854
+ },
763
855
  {
764
856
  "name": "vehicle",
765
857
  "required": false,
@@ -808,6 +900,12 @@
808
900
  "conditionKeys": [],
809
901
  "dependentActions": []
810
902
  },
903
+ {
904
+ "name": "statetemplate",
905
+ "required": false,
906
+ "conditionKeys": [],
907
+ "dependentActions": []
908
+ },
811
909
  {
812
910
  "name": "vehicle",
813
911
  "required": false,
@@ -895,6 +993,21 @@
895
993
  "conditionKeys": [],
896
994
  "dependentActions": []
897
995
  },
996
+ "updatestatetemplate": {
997
+ "name": "UpdateStateTemplate",
998
+ "description": "Grants permission to update the given state template",
999
+ "accessLevel": "Write",
1000
+ "resourceTypes": [
1001
+ {
1002
+ "name": "statetemplate",
1003
+ "required": true,
1004
+ "conditionKeys": [],
1005
+ "dependentActions": []
1006
+ }
1007
+ ],
1008
+ "conditionKeys": [],
1009
+ "dependentActions": []
1010
+ },
898
1011
  "updatevehicle": {
899
1012
  "name": "UpdateVehicle",
900
1013
  "description": "Grants permission to update the vehicle",
@@ -225,6 +225,14 @@
225
225
  "conditionKeys": [],
226
226
  "dependentActions": []
227
227
  },
228
+ "deleteindexpolicy": {
229
+ "name": "DeleteIndexPolicy",
230
+ "description": "Grants permission to delete an index policy attached to a log group",
231
+ "accessLevel": "Write",
232
+ "resourceTypes": [],
233
+ "conditionKeys": [],
234
+ "dependentActions": []
235
+ },
228
236
  "deleteloganomalydetector": {
229
237
  "name": "DeleteLogAnomalyDetector",
230
238
  "description": "Grants permission to delete a log anomaly detector",
@@ -340,6 +348,21 @@
340
348
  "conditionKeys": [],
341
349
  "dependentActions": []
342
350
  },
351
+ "deletetransformer": {
352
+ "name": "DeleteTransformer",
353
+ "description": "Grants permission to delete a transformer associated with the specified log group",
354
+ "accessLevel": "Write",
355
+ "resourceTypes": [
356
+ {
357
+ "name": "log-group",
358
+ "required": true,
359
+ "conditionKeys": [],
360
+ "dependentActions": []
361
+ }
362
+ ],
363
+ "conditionKeys": [],
364
+ "dependentActions": []
365
+ },
343
366
  "describeaccountpolicies": {
344
367
  "name": "DescribeAccountPolicies",
345
368
  "description": "Grants permission to retrieve a data protection policy attached to an account",
@@ -396,6 +419,22 @@
396
419
  "conditionKeys": [],
397
420
  "dependentActions": []
398
421
  },
422
+ "describefieldindexes": {
423
+ "name": "DescribeFieldIndexes",
424
+ "description": "Grants permission to return all the indexing attributes that are attached with the log groups",
425
+ "accessLevel": "List",
426
+ "resourceTypes": [],
427
+ "conditionKeys": [],
428
+ "dependentActions": []
429
+ },
430
+ "describeindexpolicies": {
431
+ "name": "DescribeIndexPolicies",
432
+ "description": "Grants permission to return all the index policies that are attached with the log groups",
433
+ "accessLevel": "List",
434
+ "resourceTypes": [],
435
+ "conditionKeys": [],
436
+ "dependentActions": []
437
+ },
399
438
  "describeloggroups": {
400
439
  "name": "DescribeLogGroups",
401
440
  "description": "Grants permission to return all the log groups that are associated with the AWS account making the request",
@@ -662,6 +701,21 @@
662
701
  "conditionKeys": [],
663
702
  "dependentActions": []
664
703
  },
704
+ "gettransformer": {
705
+ "name": "GetTransformer",
706
+ "description": "Grants permission to return transformer associated with the specified log group",
707
+ "accessLevel": "Read",
708
+ "resourceTypes": [
709
+ {
710
+ "name": "log-group",
711
+ "required": true,
712
+ "conditionKeys": [],
713
+ "dependentActions": []
714
+ }
715
+ ],
716
+ "conditionKeys": [],
717
+ "dependentActions": []
718
+ },
665
719
  "link": {
666
720
  "name": "Link",
667
721
  "isPermissionOnly": true,
@@ -728,6 +782,14 @@
728
782
  "conditionKeys": [],
729
783
  "dependentActions": []
730
784
  },
785
+ "listloggroupsforquery": {
786
+ "name": "ListLogGroupsForQuery",
787
+ "description": "Grants permission to return all the log groups that are associated with the specified query",
788
+ "accessLevel": "List",
789
+ "resourceTypes": [],
790
+ "conditionKeys": [],
791
+ "dependentActions": []
792
+ },
731
793
  "listtagsforresource": {
732
794
  "name": "ListTagsForResource",
733
795
  "description": "Grants permission to list the tags for the specified resource",
@@ -899,6 +961,14 @@
899
961
  "conditionKeys": [],
900
962
  "dependentActions": []
901
963
  },
964
+ "putindexpolicy": {
965
+ "name": "PutIndexPolicy",
966
+ "description": "Grants permission to attach an index policy at log group level to optimize search and query",
967
+ "accessLevel": "Write",
968
+ "resourceTypes": [],
969
+ "conditionKeys": [],
970
+ "dependentActions": []
971
+ },
902
972
  "putlogevents": {
903
973
  "name": "PutLogEvents",
904
974
  "description": "Grants permission to upload a batch of log events to the specified log stream",
@@ -983,6 +1053,21 @@
983
1053
  "conditionKeys": [],
984
1054
  "dependentActions": []
985
1055
  },
1056
+ "puttransformer": {
1057
+ "name": "PutTransformer",
1058
+ "description": "Grants permission to create or update a transformer and associates it with the specified log group",
1059
+ "accessLevel": "Write",
1060
+ "resourceTypes": [
1061
+ {
1062
+ "name": "log-group",
1063
+ "required": true,
1064
+ "conditionKeys": [],
1065
+ "dependentActions": []
1066
+ }
1067
+ ],
1068
+ "conditionKeys": [],
1069
+ "dependentActions": []
1070
+ },
986
1071
  "startlivetail": {
987
1072
  "name": "StartLiveTail",
988
1073
  "description": "Grants permission to start a Live Tail session in CloudWatch Logs",
@@ -1104,6 +1189,14 @@
1104
1189
  "conditionKeys": [],
1105
1190
  "dependentActions": []
1106
1191
  },
1192
+ "testtransformer": {
1193
+ "name": "TestTransformer",
1194
+ "description": "Grants permission to test the transformer against a sample of log event messages",
1195
+ "accessLevel": "Read",
1196
+ "resourceTypes": [],
1197
+ "conditionKeys": [],
1198
+ "dependentActions": []
1199
+ },
1107
1200
  "unmask": {
1108
1201
  "name": "Unmask",
1109
1202
  "isPermissionOnly": true,
@@ -121,6 +121,30 @@
121
121
  "conditionKeys": [],
122
122
  "dependentActions": []
123
123
  },
124
+ "createeventtrigger": {
125
+ "name": "CreateEventTrigger",
126
+ "description": "Grants permission to create an event trigger in the domain",
127
+ "accessLevel": "Write",
128
+ "resourceTypes": [
129
+ {
130
+ "name": "domains",
131
+ "required": true,
132
+ "conditionKeys": [],
133
+ "dependentActions": []
134
+ },
135
+ {
136
+ "name": "event-triggers",
137
+ "required": true,
138
+ "conditionKeys": [
139
+ "aws:RequestTag/${TagKey}",
140
+ "aws:TagKeys"
141
+ ],
142
+ "dependentActions": []
143
+ }
144
+ ],
145
+ "conditionKeys": [],
146
+ "dependentActions": []
147
+ },
124
148
  "createintegrationworkflow": {
125
149
  "name": "CreateIntegrationWorkflow",
126
150
  "description": "Grants permission to create an integration workflow in a domain",
@@ -295,6 +319,27 @@
295
319
  "conditionKeys": [],
296
320
  "dependentActions": []
297
321
  },
322
+ "deleteeventtrigger": {
323
+ "name": "DeleteEventTrigger",
324
+ "description": "Grants permission to delete an event trigger in the domain",
325
+ "accessLevel": "Write",
326
+ "resourceTypes": [
327
+ {
328
+ "name": "domains",
329
+ "required": true,
330
+ "conditionKeys": [],
331
+ "dependentActions": []
332
+ },
333
+ {
334
+ "name": "event-triggers",
335
+ "required": true,
336
+ "conditionKeys": [],
337
+ "dependentActions": []
338
+ }
339
+ ],
340
+ "conditionKeys": [],
341
+ "dependentActions": []
342
+ },
298
343
  "deleteintegration": {
299
344
  "name": "DeleteIntegration",
300
345
  "description": "Grants permission to delete a integration in a domain",
@@ -534,6 +579,27 @@
534
579
  "conditionKeys": [],
535
580
  "dependentActions": []
536
581
  },
582
+ "geteventtrigger": {
583
+ "name": "GetEventTrigger",
584
+ "description": "Grants permission to get an event trigger in the domain",
585
+ "accessLevel": "Read",
586
+ "resourceTypes": [
587
+ {
588
+ "name": "domains",
589
+ "required": true,
590
+ "conditionKeys": [],
591
+ "dependentActions": []
592
+ },
593
+ {
594
+ "name": "event-triggers",
595
+ "required": true,
596
+ "conditionKeys": [],
597
+ "dependentActions": []
598
+ }
599
+ ],
600
+ "conditionKeys": [],
601
+ "dependentActions": []
602
+ },
537
603
  "getidentityresolutionjob": {
538
604
  "name": "GetIdentityResolutionJob",
539
605
  "description": "Grants permission to get an identity resolution job in a domain",
@@ -814,6 +880,21 @@
814
880
  "conditionKeys": [],
815
881
  "dependentActions": []
816
882
  },
883
+ "listeventtriggers": {
884
+ "name": "ListEventTriggers",
885
+ "description": "Grants permission to list all the event triggers in the domain",
886
+ "accessLevel": "List",
887
+ "resourceTypes": [
888
+ {
889
+ "name": "domains",
890
+ "required": true,
891
+ "conditionKeys": [],
892
+ "dependentActions": []
893
+ }
894
+ ],
895
+ "conditionKeys": [],
896
+ "dependentActions": []
897
+ },
817
898
  "listidentityresolutionjobs": {
818
899
  "name": "ListIdentityResolutionJobs",
819
900
  "description": "Grants permission to list identity resolution jobs in a domain",
@@ -1228,6 +1309,27 @@
1228
1309
  "iam:CreateServiceLinkedRole"
1229
1310
  ]
1230
1311
  },
1312
+ "updateeventtrigger": {
1313
+ "name": "UpdateEventTrigger",
1314
+ "description": "Grants permission to update an event trigger in the domain",
1315
+ "accessLevel": "Write",
1316
+ "resourceTypes": [
1317
+ {
1318
+ "name": "domains",
1319
+ "required": true,
1320
+ "conditionKeys": [],
1321
+ "dependentActions": []
1322
+ },
1323
+ {
1324
+ "name": "event-triggers",
1325
+ "required": true,
1326
+ "conditionKeys": [],
1327
+ "dependentActions": []
1328
+ }
1329
+ ],
1330
+ "conditionKeys": [],
1331
+ "dependentActions": []
1332
+ },
1231
1333
  "updateprofile": {
1232
1334
  "name": "UpdateProfile",
1233
1335
  "description": "Grants permission to update a profile in the domain",