iam-floyd 0.800.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 +3 -3
- package/lib/generated/policy-statements/bedrock.d.ts +31 -0
- package/lib/generated/policy-statements/bedrock.js +40 -1
- package/lib/generated/policy-statements/bedrockpoweredbyawsmantle.d.ts +37 -0
- package/lib/generated/policy-statements/bedrockpoweredbyawsmantle.js +46 -1
- package/lib/generated/policy-statements/inspector2.d.ts +15 -0
- package/lib/generated/policy-statements/inspector2.js +18 -1
- package/lib/generated/policy-statements/secretsmanager.d.ts +1 -1
- package/lib/generated/policy-statements/secretsmanager.js +10 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
Support for:
|
|
17
17
|
|
|
18
18
|
- 450 Services
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
19
|
+
- 21087 Actions
|
|
20
|
+
- 2233 Resource Types
|
|
21
|
+
- 2362 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.**
|
|
@@ -781,6 +781,14 @@ export declare class Bedrock extends PolicyStatement {
|
|
|
781
781
|
* https://docs.aws.amazon.com/bedrock/latest/APIReference/welcome.html
|
|
782
782
|
*/
|
|
783
783
|
toGenerateQuery(): this;
|
|
784
|
+
/**
|
|
785
|
+
* Returns the account-wide data retention mode for Amazon Bedrock
|
|
786
|
+
*
|
|
787
|
+
* Access Level: Read
|
|
788
|
+
*
|
|
789
|
+
* https://docs.aws.amazon.com/bedrock/latest/APIReference/API_GetAccountDataRetention.html
|
|
790
|
+
*/
|
|
791
|
+
toGetAccountDataRetention(): this;
|
|
784
792
|
/**
|
|
785
793
|
* Grants permission to retrieve an existing agent
|
|
786
794
|
*
|
|
@@ -1750,6 +1758,17 @@ export declare class Bedrock extends PolicyStatement {
|
|
|
1750
1758
|
* https://docs.aws.amazon.com/bedrock/latest/APIReference/API_agent_PrepareFlow.html
|
|
1751
1759
|
*/
|
|
1752
1760
|
toPrepareFlow(): this;
|
|
1761
|
+
/**
|
|
1762
|
+
* Sets the account-wide data retention mode for Amazon Bedrock
|
|
1763
|
+
*
|
|
1764
|
+
* Access Level: Write
|
|
1765
|
+
*
|
|
1766
|
+
* Possible conditions:
|
|
1767
|
+
* - .ifDataRetentionMode()
|
|
1768
|
+
*
|
|
1769
|
+
* https://docs.aws.amazon.com/bedrock/latest/APIReference/API_PutAccountDataRetention.html
|
|
1770
|
+
*/
|
|
1771
|
+
toPutAccountDataRetention(): this;
|
|
1753
1772
|
/**
|
|
1754
1773
|
* Grants permission to set account-level enforced guardrail configuration
|
|
1755
1774
|
*
|
|
@@ -2763,6 +2782,18 @@ export declare class Bedrock extends PolicyStatement {
|
|
|
2763
2782
|
* @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike`
|
|
2764
2783
|
*/
|
|
2765
2784
|
ifBearerTokenType(value: string | string[], operator?: Operator | string): this;
|
|
2785
|
+
/**
|
|
2786
|
+
* Filters access by the specified Data Retention Mode
|
|
2787
|
+
*
|
|
2788
|
+
* https://docs.aws.amazon.com/service-authorization/latest/reference/list_amazonbedrock.html#amazonbedrock-policy-keys
|
|
2789
|
+
*
|
|
2790
|
+
* Applies to actions:
|
|
2791
|
+
* - .toPutAccountDataRetention()
|
|
2792
|
+
*
|
|
2793
|
+
* @param value The value(s) to check
|
|
2794
|
+
* @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike`
|
|
2795
|
+
*/
|
|
2796
|
+
ifDataRetentionMode(value: string | string[], operator?: Operator | string): this;
|
|
2766
2797
|
/**
|
|
2767
2798
|
* Filters access by the GuardrailIdentifier containing the GuardrailArn or the GuardrailArn:NumericVersion
|
|
2768
2799
|
*
|