cdk-iam-floyd 0.794.0 → 0.795.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 +2 -2
- package/lib/generated/policy-statements/deadlinecloud.d.ts +54 -0
- package/lib/generated/policy-statements/deadlinecloud.js +66 -1
- package/lib/generated/policy-statements/route53resolver.d.ts +8 -0
- package/lib/generated/policy-statements/route53resolver.js +12 -1
- package/lib/generated/policy-statements/simpleemailservicev2.d.ts +26 -4
- package/lib/generated/policy-statements/simpleemailservicev2.js +30 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -472,6 +472,17 @@ export declare class Deadline extends PolicyStatement {
|
|
|
472
472
|
* https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_DeleteStorageProfile.html
|
|
473
473
|
*/
|
|
474
474
|
toDeleteStorageProfile(): this;
|
|
475
|
+
/**
|
|
476
|
+
* Grants permission to delete a volume
|
|
477
|
+
*
|
|
478
|
+
* Access Level: Write
|
|
479
|
+
*
|
|
480
|
+
* Dependent actions:
|
|
481
|
+
* - identitystore:ListGroupMembershipsForMember
|
|
482
|
+
*
|
|
483
|
+
* https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_DeleteVolume.html
|
|
484
|
+
*/
|
|
485
|
+
toDeleteVolume(): this;
|
|
475
486
|
/**
|
|
476
487
|
* Grants permission to delete a worker
|
|
477
488
|
*
|
|
@@ -752,6 +763,17 @@ export declare class Deadline extends PolicyStatement {
|
|
|
752
763
|
* https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_GetTask.html
|
|
753
764
|
*/
|
|
754
765
|
toGetTask(): this;
|
|
766
|
+
/**
|
|
767
|
+
* Grants permission to get a volume
|
|
768
|
+
*
|
|
769
|
+
* Access Level: Read
|
|
770
|
+
*
|
|
771
|
+
* Dependent actions:
|
|
772
|
+
* - identitystore:ListGroupMembershipsForMember
|
|
773
|
+
*
|
|
774
|
+
* https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_GetVolume.html
|
|
775
|
+
*/
|
|
776
|
+
toGetVolume(): this;
|
|
755
777
|
/**
|
|
756
778
|
* Grants permission to get a worker
|
|
757
779
|
*
|
|
@@ -1083,6 +1105,17 @@ export declare class Deadline extends PolicyStatement {
|
|
|
1083
1105
|
* https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_ListTasks.html
|
|
1084
1106
|
*/
|
|
1085
1107
|
toListTasks(): this;
|
|
1108
|
+
/**
|
|
1109
|
+
* Grants permission to list volumes
|
|
1110
|
+
*
|
|
1111
|
+
* Access Level: List
|
|
1112
|
+
*
|
|
1113
|
+
* Dependent actions:
|
|
1114
|
+
* - identitystore:ListGroupMembershipsForMember
|
|
1115
|
+
*
|
|
1116
|
+
* https://docs.aws.amazon.com/deadline-cloud/latest/APIReference/API_ListVolumes.html
|
|
1117
|
+
*/
|
|
1118
|
+
toListVolumes(): this;
|
|
1086
1119
|
/**
|
|
1087
1120
|
* Grants permission to list all workers in a fleet
|
|
1088
1121
|
*
|
|
@@ -1485,6 +1518,24 @@ export declare class Deadline extends PolicyStatement {
|
|
|
1485
1518
|
* - .ifQueueMembershipLevels()
|
|
1486
1519
|
*/
|
|
1487
1520
|
onQueue(farmId: string, queueId: string, account?: string, region?: string, partition?: string): this;
|
|
1521
|
+
/**
|
|
1522
|
+
* Adds a resource of type volume to the statement
|
|
1523
|
+
*
|
|
1524
|
+
* https://docs.aws.amazon.com/deadline-cloud/latest/userguide/volumes.html
|
|
1525
|
+
*
|
|
1526
|
+
* @param farmId - Identifier for the farmId.
|
|
1527
|
+
* @param fleetId - Identifier for the fleetId.
|
|
1528
|
+
* @param volumeId - Identifier for the volumeId.
|
|
1529
|
+
* @param account - Account of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's account.
|
|
1530
|
+
* @param region - Region of the resource; defaults to `*`, unless using the CDK, where the default is the current Stack's region.
|
|
1531
|
+
* @param partition - Partition of the AWS account [aws, aws-cn, aws-us-gov]; defaults to `aws`, unless using the CDK, where the default is the current Stack's partition.
|
|
1532
|
+
*
|
|
1533
|
+
* Possible conditions:
|
|
1534
|
+
* - .ifAwsResourceTag()
|
|
1535
|
+
* - .ifFarmMembershipLevels()
|
|
1536
|
+
* - .ifFleetMembershipLevels()
|
|
1537
|
+
*/
|
|
1538
|
+
onVolume(farmId: string, fleetId: string, volumeId: string, account?: string, region?: string, partition?: string): this;
|
|
1488
1539
|
/**
|
|
1489
1540
|
* Adds a resource of type worker to the statement
|
|
1490
1541
|
*
|
|
@@ -1537,6 +1588,7 @@ export declare class Deadline extends PolicyStatement {
|
|
|
1537
1588
|
* - license-endpoint
|
|
1538
1589
|
* - monitor
|
|
1539
1590
|
* - queue
|
|
1591
|
+
* - volume
|
|
1540
1592
|
* - worker
|
|
1541
1593
|
*
|
|
1542
1594
|
* @param tagKey The tag key to check
|
|
@@ -1608,6 +1660,7 @@ export declare class Deadline extends PolicyStatement {
|
|
|
1608
1660
|
* - fleet
|
|
1609
1661
|
* - job
|
|
1610
1662
|
* - queue
|
|
1663
|
+
* - volume
|
|
1611
1664
|
* - worker
|
|
1612
1665
|
*
|
|
1613
1666
|
* @param value The value(s) to check
|
|
@@ -1621,6 +1674,7 @@ export declare class Deadline extends PolicyStatement {
|
|
|
1621
1674
|
*
|
|
1622
1675
|
* Applies to resource types:
|
|
1623
1676
|
* - fleet
|
|
1677
|
+
* - volume
|
|
1624
1678
|
* - worker
|
|
1625
1679
|
*
|
|
1626
1680
|
* @param value The value(s) to check
|