iam-floyd 0.769.0 → 0.770.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 +4 -4
- package/lib/generated/aws-managed-policies/cdk-iam-floyd.d.ts +16 -0
- package/lib/generated/aws-managed-policies/cdk-iam-floyd.js +33 -1
- package/lib/generated/aws-managed-policies/iam-floyd.d.ts +16 -0
- package/lib/generated/aws-managed-policies/iam-floyd.js +17 -1
- package/lib/generated/index.d.ts +1 -0
- package/lib/generated/index.js +10 -8
- package/lib/generated/policy-statements/bedrock.d.ts +122 -0
- package/lib/generated/policy-statements/bedrock.js +157 -1
- package/lib/generated/policy-statements/glue.d.ts +8 -0
- package/lib/generated/policy-statements/glue.js +12 -1
- package/lib/generated/policy-statements/lightsail.d.ts +10 -0
- package/lib/generated/policy-statements/lightsail.js +11 -1
- package/lib/generated/policy-statements/s3files.d.ts +333 -0
- package/lib/generated/policy-statements/s3files.js +436 -0
- package/lib/generated/policy-statements/simpleemailservice-mailmanager.d.ts +45 -73
- package/lib/generated/policy-statements/simpleemailservice-mailmanager.js +46 -74
- package/lib/generated/policy-statements/transform.d.ts +8 -0
- package/lib/generated/policy-statements/transform.js +12 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
<!-- stats -->
|
|
16
16
|
Support for:
|
|
17
17
|
|
|
18
|
-
-
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
18
|
+
- 447 Services
|
|
19
|
+
- 20549 Actions
|
|
20
|
+
- 2179 Resource Types
|
|
21
|
+
- 2314 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.**
|
|
@@ -820,6 +820,22 @@ export declare class AwsManagedPolicy extends AwsManagedPolicyStatic {
|
|
|
820
820
|
AmazonRoute53ResolverFullAccess(): aws_iam.IManagedPolicy;
|
|
821
821
|
/** Read only policy for Route 53 Resolver */
|
|
822
822
|
AmazonRoute53ResolverReadOnlyAccess(): aws_iam.IManagedPolicy;
|
|
823
|
+
/** Provides full access to all S3 directory buckets. */
|
|
824
|
+
AmazonS3ExpressFullAccess(): aws_iam.IManagedPolicy;
|
|
825
|
+
/** Provides read only access to S3Express operations for S3 directory buckets. */
|
|
826
|
+
AmazonS3ExpressReadOnlyAccess(): aws_iam.IManagedPolicy;
|
|
827
|
+
/** Provides root client access to an S3 Files file system. */
|
|
828
|
+
AmazonS3FilesClientFullAccess(): aws_iam.IManagedPolicy;
|
|
829
|
+
/** Provides read only client access to an S3 Files file system. */
|
|
830
|
+
AmazonS3FilesClientReadOnlyAccess(): aws_iam.IManagedPolicy;
|
|
831
|
+
/** Provides read and write client access to an S3 Files file system. */
|
|
832
|
+
AmazonS3FilesClientReadWriteAccess(): aws_iam.IManagedPolicy;
|
|
833
|
+
/** Provides management access to Amazon S3 Files resources */
|
|
834
|
+
AmazonS3FilesCSIDriverPolicy(): aws_iam.IManagedPolicy;
|
|
835
|
+
/** Provides full access to all S3 Files via the AWS Management Console. */
|
|
836
|
+
AmazonS3FilesFullAccess(): aws_iam.IManagedPolicy;
|
|
837
|
+
/** Provides read only access to all S3 Files via the AWS Management Console. */
|
|
838
|
+
AmazonS3FilesReadOnlyAccess(): aws_iam.IManagedPolicy;
|
|
823
839
|
/** Provides full access to all buckets via the AWS Management Console. */
|
|
824
840
|
AmazonS3FullAccess(): aws_iam.IManagedPolicy;
|
|
825
841
|
/** Provides AWS Lambda functions permissions to interact with Amazon S3 Object Lambda. Also grants Lambda permissions to write to CloudWatch Logs. */
|