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 +3 -3
- package/lib/generated/policy-statements/elasticache.d.ts +17 -0
- package/lib/generated/policy-statements/elasticache.js +20 -1
- package/lib/generated/policy-statements/sagemaker.d.ts +236 -46
- package/lib/generated/policy-statements/sagemaker.js +292 -52
- package/lib/generated/policy-statements/transform.d.ts +46 -0
- package/lib/generated/policy-statements/transform.js +52 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
Support for:
|
|
17
17
|
|
|
18
18
|
- 449 Services
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
19
|
+
- 20939 Actions
|
|
20
|
+
- 2221 Resource Types
|
|
21
|
+
- 2359 Condition keys
|
|
22
22
|
<!-- /stats -->
|
|
23
23
|
|
|
24
24
|
**<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.**
|
|
@@ -1051,6 +1051,7 @@ export declare class Elasticache extends PolicyStatement {
|
|
|
1051
1051
|
* - .ifCacheNodeType()
|
|
1052
1052
|
* - .ifCacheParameterGroupName()
|
|
1053
1053
|
* - .ifClusterModeEnabled()
|
|
1054
|
+
* - .ifDurability()
|
|
1054
1055
|
* - .ifEngineType()
|
|
1055
1056
|
* - .ifEngineVersion()
|
|
1056
1057
|
* - .ifKmsKeyId()
|
|
@@ -1514,6 +1515,22 @@ export declare class Elasticache extends PolicyStatement {
|
|
|
1514
1515
|
* @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike`
|
|
1515
1516
|
*/
|
|
1516
1517
|
ifDataStorageUnit(value: string | string[], operator?: Operator | string): this;
|
|
1518
|
+
/**
|
|
1519
|
+
* Filters access by the Durability parameter in the request. Valid values are default, async, sync, or disabled
|
|
1520
|
+
*
|
|
1521
|
+
* https://docs.aws.amazon.com/AmazonElastiCache/latest/red-ug/IAM.ConditionKeys.html#IAM.SpecifyingConditions
|
|
1522
|
+
*
|
|
1523
|
+
* Applies to actions:
|
|
1524
|
+
* - .toCreateReplicationGroup()
|
|
1525
|
+
* - .toModifyReplicationGroup()
|
|
1526
|
+
*
|
|
1527
|
+
* Applies to resource types:
|
|
1528
|
+
* - replicationgroup
|
|
1529
|
+
*
|
|
1530
|
+
* @param value The value(s) to check
|
|
1531
|
+
* @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike`
|
|
1532
|
+
*/
|
|
1533
|
+
ifDurability(value: string | string[], operator?: Operator | string): this;
|
|
1517
1534
|
/**
|
|
1518
1535
|
* 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
|
|
1519
1536
|
*
|