iam-floyd 0.811.0 → 0.813.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/aws-managed-policies/cdk-iam-floyd.d.ts +4 -0
- package/lib/generated/aws-managed-policies/cdk-iam-floyd.js +9 -1
- package/lib/generated/aws-managed-policies/iam-floyd.d.ts +4 -0
- package/lib/generated/aws-managed-policies/iam-floyd.js +5 -1
- package/lib/generated/policy-statements/artifact.d.ts +130 -0
- package/lib/generated/policy-statements/artifact.js +166 -2
- package/lib/generated/policy-statements/devopsagentservice.d.ts +8 -0
- package/lib/generated/policy-statements/devopsagentservice.js +12 -1
- package/lib/generated/policy-statements/ec2.d.ts +43 -0
- package/lib/generated/policy-statements/ec2.js +50 -1
- package/lib/generated/policy-statements/opensearchservice.d.ts +8 -0
- package/lib/generated/policy-statements/opensearchservice.js +12 -1
- package/lib/generated/policy-statements/transformcustom.d.ts +8 -0
- package/lib/generated/policy-statements/transformcustom.js +12 -1
- package/lib/generated/policy-statements/usersubscriptions.d.ts +80 -0
- package/lib/generated/policy-statements/usersubscriptions.js +113 -1
- package/lib/generated/policy-statements/wafv2.d.ts +15 -0
- package/lib/generated/policy-statements/wafv2.js +18 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
Support for:
|
|
17
17
|
|
|
18
18
|
- 451 Services
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
19
|
+
- 21319 Actions
|
|
20
|
+
- 2254 Resource Types
|
|
21
|
+
- 2377 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.**
|
|
@@ -10,6 +10,8 @@ import { AwsManagedPolicy as AwsManagedPolicyStatic } from './iam-floyd';
|
|
|
10
10
|
export declare class AwsManagedPolicy extends AwsManagedPolicyStatic {
|
|
11
11
|
/** Allow Access Analyzer to analyze resource metadata */
|
|
12
12
|
AccessAnalyzerServiceRolePolicy(): aws_iam.IManagedPolicy;
|
|
13
|
+
/** Grants account access manager permissions to manage AWS account access */
|
|
14
|
+
AccountAccessManagerServiceRolePolicy(): aws_iam.IManagedPolicy;
|
|
13
15
|
/** For use with accounts created through the Vercel Marketplace integration with AWS. Provides access to account management, notification, cost and usage analysis, and identity provider management. */
|
|
14
16
|
AccountManagementFromVercel(): aws_iam.IManagedPolicy;
|
|
15
17
|
/** Provides full access to AWS services and resources. */
|
|
@@ -536,6 +538,8 @@ export declare class AwsManagedPolicy extends AwsManagedPolicyStatic {
|
|
|
536
538
|
AmazonInspector2ReadOnlyAccess(): aws_iam.IManagedPolicy;
|
|
537
539
|
/** Grants Amazon Inspector access to AWS Services needed to perform security assessments */
|
|
538
540
|
AmazonInspector2ServiceRolePolicy(): aws_iam.IManagedPolicy;
|
|
541
|
+
/** Grants permissions for Amazon Inspector to perform actions on your behalf for multi-cloud resource scanning. */
|
|
542
|
+
AmazonInspector2ThirdPartyServiceRolePolicy(): aws_iam.IManagedPolicy;
|
|
539
543
|
/** Provides full access to Amazon Inspector. */
|
|
540
544
|
AmazonInspectorFullAccess(): aws_iam.IManagedPolicy;
|
|
541
545
|
/** Provides read only access to Amazon Inspector. */
|