iam-floyd 0.729.0 → 0.731.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 +8 -0
- package/lib/generated/aws-managed-policies/cdk-iam-floyd.js +17 -1
- package/lib/generated/aws-managed-policies/iam-floyd.d.ts +8 -0
- package/lib/generated/aws-managed-policies/iam-floyd.js +9 -1
- package/lib/generated/index.d.ts +1 -0
- package/lib/generated/index.js +6 -3
- package/lib/generated/policy-statements/appconfig.d.ts +1 -1
- package/lib/generated/policy-statements/appconfig.js +2 -2
- package/lib/generated/policy-statements/batch.d.ts +15 -0
- package/lib/generated/policy-statements/batch.js +16 -1
- package/lib/generated/policy-statements/connect.d.ts +19 -0
- package/lib/generated/policy-statements/connect.js +23 -1
- package/lib/generated/policy-statements/connectcustomerprofiles.d.ts +172 -0
- package/lib/generated/policy-statements/connectcustomerprofiles.js +229 -2
- package/lib/generated/policy-statements/costexplorerservice.d.ts +1 -1
- package/lib/generated/policy-statements/costexplorerservice.js +2 -2
- package/lib/generated/policy-statements/databasemigrationservice.d.ts +56 -0
- package/lib/generated/policy-statements/databasemigrationservice.js +78 -1
- package/lib/generated/policy-statements/datazone.d.ts +168 -0
- package/lib/generated/policy-statements/datazone.js +253 -1
- package/lib/generated/policy-statements/ec2autoscaling.d.ts +8 -0
- package/lib/generated/policy-statements/ec2autoscaling.js +9 -1
- package/lib/generated/policy-statements/elastickubernetesservice.d.ts +18 -0
- package/lib/generated/policy-statements/elastickubernetesservice.js +21 -1
- package/lib/generated/policy-statements/groundstation.d.ts +8 -0
- package/lib/generated/policy-statements/groundstation.js +12 -1
- package/lib/generated/policy-statements/guardduty.d.ts +12 -0
- package/lib/generated/policy-statements/guardduty.js +14 -2
- package/lib/generated/policy-statements/invoicingservice.d.ts +3 -3
- package/lib/generated/policy-statements/invoicingservice.js +4 -4
- package/lib/generated/policy-statements/managedstreamingforapachekafka.d.ts +8 -0
- package/lib/generated/policy-statements/managedstreamingforapachekafka.js +12 -1
- package/lib/generated/policy-statements/marketplaceentitlementservice.d.ts +1 -1
- package/lib/generated/policy-statements/marketplaceentitlementservice.js +2 -2
- package/lib/generated/policy-statements/marketplacemeteringservice.d.ts +4 -4
- package/lib/generated/policy-statements/marketplacemeteringservice.js +5 -5
- package/lib/generated/policy-statements/route53.d.ts +8 -0
- package/lib/generated/policy-statements/route53.js +12 -1
- package/lib/generated/policy-statements/s3tables.d.ts +125 -0
- package/lib/generated/policy-statements/s3tables.js +146 -2
- package/lib/generated/policy-statements/sagemakerunifiedstudiomcpisamanagedmcpsolutionforawsdataprocessingserviceslikeemr-glue-athena.d.ts +41 -0
- package/lib/generated/policy-statements/sagemakerunifiedstudiomcpisamanagedmcpsolutionforawsdataprocessingserviceslikeemr-glue-athena.js +61 -0
- package/lib/generated/policy-statements/securitytokenservice.d.ts +64 -0
- package/lib/generated/policy-statements/securitytokenservice.js +78 -1
- package/lib/generated/policy-statements/support.d.ts +27 -0
- package/lib/generated/policy-statements/support.js +37 -1
- package/lib/generated/policy-statements/supportconsole.d.ts +12 -0
- package/lib/generated/policy-statements/supportconsole.js +19 -1
- package/lib/generated/policy-statements/usersubscriptions.d.ts +8 -0
- package/lib/generated/policy-statements/usersubscriptions.js +12 -1
- package/lib/generated/policy-statements/vpclattice.d.ts +116 -0
- package/lib/generated/policy-statements/vpclattice.js +137 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
<!-- stats -->
|
|
17
17
|
Support for:
|
|
18
18
|
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
-
|
|
19
|
+
- 431 Services
|
|
20
|
+
- 19416 Actions
|
|
21
|
+
- 2068 Resource Types
|
|
22
|
+
- 2184 Condition keys
|
|
23
23
|
<!-- /stats -->
|
|
24
24
|
|
|
25
25
|
**<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.**
|
|
@@ -288,6 +288,8 @@ export declare class AwsManagedPolicy extends AwsManagedPolicyStatic {
|
|
|
288
288
|
AmazonECSFullAccess(): aws_iam.IManagedPolicy;
|
|
289
289
|
/** Policy to enable Amazon ECS Compute to manage your EC2 instances and related resources as part of ECS managed instances */
|
|
290
290
|
AmazonECSComputeServiceRolePolicy(): aws_iam.IManagedPolicy;
|
|
291
|
+
/** These permissions enable Amazon ECS to automatically provision and manage the infrastructure components required for Express Gateway Services, including load balancing, security groups, SSL certificates, and auto scaling configurations. */
|
|
292
|
+
AmazonECSInfrastructureRoleforExpressGatewayServices(): aws_iam.IManagedPolicy;
|
|
291
293
|
/** Provides access to other AWS service resources required to manage load balancers associated with ECS workloads on your behalf. */
|
|
292
294
|
AmazonECSInfrastructureRolePolicyForLoadBalancers(): aws_iam.IManagedPolicy;
|
|
293
295
|
/** Provides ECS access to create and manage EC2 managed resources */
|
|
@@ -1120,6 +1122,8 @@ export declare class AwsManagedPolicy extends AwsManagedPolicyStatic {
|
|
|
1120
1122
|
AWSApplicationMigrationMGHAccess(): aws_iam.IManagedPolicy;
|
|
1121
1123
|
/** Provides permissions for Network Migration custom resource */
|
|
1122
1124
|
AWSApplicationMigrationNetworkMigrationCustomResource(): aws_iam.IManagedPolicy;
|
|
1125
|
+
/** Provides permissions to automate VMware to AWS network infrastructure migration through CloudFormation */
|
|
1126
|
+
AWSApplicationMigrationNetworkMigrationMultiAccount(): aws_iam.IManagedPolicy;
|
|
1123
1127
|
/** This policy provides permissions to all read-only public APIs of Application Migration Service (MGN), as well as some read-only APIs of other AWS services that are required in order to make full read-only use of the MGN console. Attach this policy to your IAM users or roles. */
|
|
1124
1128
|
AWSApplicationMigrationReadOnlyAccess(): aws_iam.IManagedPolicy;
|
|
1125
1129
|
/** This policy allows the Application Migration Service (MGN) Replication Servers, which are EC2 instances launched by Application Migration Service - to communicate with the MGN service, and to create EBS snapshots in your AWS account. An IAM role with this policy is attached (as an EC2 Instance Profile) by Application Migration Service to the MGN Replication Servers which are automatically launched and terminated by MGN, as needed. MGN Replication Servers are used to facilitate data replication from your external servers to AWS, as part of the migration process managed using MGN. We do not recommend that you attach this policy to your IAM users or roles. */
|
|
@@ -1484,6 +1488,10 @@ export declare class AwsManagedPolicy extends AwsManagedPolicyStatic {
|
|
|
1484
1488
|
AWSEC2SpotFleetServiceRolePolicy(): aws_iam.IManagedPolicy;
|
|
1485
1489
|
/** Allows EC2 Spot to launch and manage spot instances */
|
|
1486
1490
|
AWSEC2SpotServiceRolePolicy(): aws_iam.IManagedPolicy;
|
|
1491
|
+
/** Amazon EC2 instance permissions to allow EC2 SQL High Availability service to detect instance high availability state through EC2 instance profile. */
|
|
1492
|
+
AWSEC2SqlHaInstancePolicy(): aws_iam.IManagedPolicy;
|
|
1493
|
+
/** EC2 SQL High Availability service permissions to detect standby/passive instances */
|
|
1494
|
+
AWSEC2SqlHaServiceRolePolicy(): aws_iam.IManagedPolicy;
|
|
1487
1495
|
/** This policy is attached to the IAM role that's attached to your Amazon EC2 Windows Instances to enable the Amazon EC2 VSS solution to create and add tags to Amazon Machine Images (AMI) and EBS Snapshots. */
|
|
1488
1496
|
AWSEC2VssSnapshotPolicy(): aws_iam.IManagedPolicy;
|
|
1489
1497
|
/** Enables access to AWS services and resources used or managed by AWS ECR pull through cache */
|