cdk-iam-floyd 0.796.0 → 0.797.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 CHANGED
@@ -16,9 +16,9 @@
16
16
  Support for:
17
17
 
18
18
  - 449 Services
19
- - 20926 Actions
20
- - 2220 Resource Types
21
- - 2351 Condition keys
19
+ - 20939 Actions
20
+ - 2221 Resource Types
21
+ - 2359 Condition keys
22
22
  <!-- /stats -->
23
23
 
24
24
  ![EXPERIMENTAL](https://img.shields.io/badge/stability-experimantal-orange?style=for-the-badge)**<br>This is an early version of the package. The API will change while I implement new features. Therefore make sure you use an exact version in your `package.json` before it reaches 1.0.0.**
@@ -1046,6 +1046,7 @@ export declare class Elasticache extends PolicyStatement {
1046
1046
  * - .ifCacheNodeType()
1047
1047
  * - .ifCacheParameterGroupName()
1048
1048
  * - .ifClusterModeEnabled()
1049
+ * - .ifDurability()
1049
1050
  * - .ifEngineType()
1050
1051
  * - .ifEngineVersion()
1051
1052
  * - .ifKmsKeyId()
@@ -1509,6 +1510,22 @@ export declare class Elasticache extends PolicyStatement {
1509
1510
  * @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike`
1510
1511
  */
1511
1512
  ifDataStorageUnit(value: string | string[], operator?: Operator | string): this;
1513
+ /**
1514
+ * Filters access by the Durability parameter in the request. Valid values are default, async, sync, or disabled
1515
+ *
1516
+ * https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/IAM.ConditionKeys.html#IAM.SpecifyingConditions
1517
+ *
1518
+ * Applies to actions:
1519
+ * - .toCreateReplicationGroup()
1520
+ * - .toModifyReplicationGroup()
1521
+ *
1522
+ * Applies to resource types:
1523
+ * - replicationgroup
1524
+ *
1525
+ * @param value The value(s) to check
1526
+ * @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike`
1527
+ */
1528
+ ifDurability(value: string | string[], operator?: Operator | string): this;
1512
1529
  /**
1513
1530
  * Filters access by the engine type present in creation requests. For replication group creations, default engine 'redis' is used as key if parameter is not present
1514
1531
  *