cdk-iam-floyd 0.799.0 → 0.801.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
  - 450 Services
19
- - 21072 Actions
20
- - 2230 Resource Types
21
- - 2360 Condition keys
19
+ - 21087 Actions
20
+ - 2233 Resource Types
21
+ - 2362 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.**
@@ -776,6 +776,14 @@ export declare class Bedrock extends PolicyStatement {
776
776
  * https://docs.aws.amazon.com/bedrock/latest/APIReference/welcome.html
777
777
  */
778
778
  toGenerateQuery(): this;
779
+ /**
780
+ * Returns the account-wide data retention mode for Amazon Bedrock
781
+ *
782
+ * Access Level: Read
783
+ *
784
+ * https://docs.aws.amazon.com/bedrock/latest/APIReference/API_GetAccountDataRetention.html
785
+ */
786
+ toGetAccountDataRetention(): this;
779
787
  /**
780
788
  * Grants permission to retrieve an existing agent
781
789
  *
@@ -1745,6 +1753,17 @@ export declare class Bedrock extends PolicyStatement {
1745
1753
  * https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent_PrepareFlow.html
1746
1754
  */
1747
1755
  toPrepareFlow(): this;
1756
+ /**
1757
+ * Sets the account-wide data retention mode for Amazon Bedrock
1758
+ *
1759
+ * Access Level: Write
1760
+ *
1761
+ * Possible conditions:
1762
+ * - .ifDataRetentionMode()
1763
+ *
1764
+ * https://docs.aws.amazon.com/bedrock/latest/APIReference/API_PutAccountDataRetention.html
1765
+ */
1766
+ toPutAccountDataRetention(): this;
1748
1767
  /**
1749
1768
  * Grants permission to set account-level enforced guardrail configuration
1750
1769
  *
@@ -2758,6 +2777,18 @@ export declare class Bedrock extends PolicyStatement {
2758
2777
  * @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike`
2759
2778
  */
2760
2779
  ifBearerTokenType(value: string | string[], operator?: Operator | string): this;
2780
+ /**
2781
+ * Filters access by the specified Data Retention Mode
2782
+ *
2783
+ * https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonbedrock.html#amazonbedrock-policy-keys
2784
+ *
2785
+ * Applies to actions:
2786
+ * - .toPutAccountDataRetention()
2787
+ *
2788
+ * @param value The value(s) to check
2789
+ * @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike`
2790
+ */
2791
+ ifDataRetentionMode(value: string | string[], operator?: Operator | string): this;
2761
2792
  /**
2762
2793
  * Filters access by the GuardrailIdentifier containing the GuardrailArn or the GuardrailArn:NumericVersion
2763
2794
  *