iam-floyd 0.765.0 → 0.767.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 +10 -0
- package/lib/generated/aws-managed-policies/cdk-iam-floyd.js +21 -1
- package/lib/generated/aws-managed-policies/iam-floyd.d.ts +10 -0
- package/lib/generated/aws-managed-policies/iam-floyd.js +11 -1
- package/lib/generated/policy-statements/batch.d.ts +1 -1
- package/lib/generated/policy-statements/batch.js +2 -2
- package/lib/generated/policy-statements/certificatemanager.d.ts +9 -1
- package/lib/generated/policy-statements/certificatemanager.js +14 -3
- package/lib/generated/policy-statements/cloudwatchlogs.d.ts +61 -0
- package/lib/generated/policy-statements/cloudwatchlogs.js +79 -1
- package/lib/generated/policy-statements/devopsagentservice.d.ts +8 -0
- package/lib/generated/policy-statements/devopsagentservice.js +12 -1
- package/lib/generated/policy-statements/healthomics.d.ts +58 -0
- package/lib/generated/policy-statements/healthomics.js +73 -1
- package/lib/generated/policy-statements/iamidentitycenter.d.ts +92 -0
- package/lib/generated/policy-statements/iamidentitycenter.js +95 -1
- package/lib/generated/policy-statements/marketplace.d.ts +83 -3
- package/lib/generated/policy-statements/marketplace.js +114 -4
- package/lib/generated/policy-statements/opensearchservice.d.ts +16 -0
- package/lib/generated/policy-statements/opensearchservice.js +23 -1
- package/lib/generated/policy-statements/quicksight.d.ts +52 -0
- package/lib/generated/policy-statements/quicksight.js +65 -1
- package/lib/generated/policy-statements/sagemaker.d.ts +24 -0
- package/lib/generated/policy-statements/sagemaker.js +34 -1
- package/lib/generated/policy-statements/securityagent.d.ts +69 -64
- package/lib/generated/policy-statements/securityagent.js +71 -90
- package/lib/generated/policy-statements/shield.d.ts +1 -1
- package/lib/generated/policy-statements/shield.js +2 -2
- package/lib/generated/policy-statements/sustainability.d.ts +16 -0
- package/lib/generated/policy-statements/sustainability.js +24 -2
- package/lib/generated/policy-statements/userexperiencecustomization.d.ts +6 -6
- package/lib/generated/policy-statements/userexperiencecustomization.js +7 -7
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
Support for:
|
|
17
17
|
|
|
18
18
|
- 445 Services
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
19
|
+
- 20455 Actions
|
|
20
|
+
- 2168 Resource Types
|
|
21
|
+
- 2302 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.**
|
|
@@ -18,6 +18,14 @@ export declare class AwsManagedPolicy extends AwsManagedPolicyStatic {
|
|
|
18
18
|
AdministratorAccessAmplify(): aws_iam.IManagedPolicy;
|
|
19
19
|
/** Grants account administrative permissions. Explicitly allows developers and administrators to gain direct access to resources they need to manage AWS Elastic Beanstalk applications */
|
|
20
20
|
AdministratorAccessAWSElasticBeanstalk(): aws_iam.IManagedPolicy;
|
|
21
|
+
/** Provides permissions required by the AWS DevOps Agent to conduct investigations and perform analysis on customer AWS resources. */
|
|
22
|
+
AIDevOpsAgentAccessPolicy(): aws_iam.IManagedPolicy;
|
|
23
|
+
/** Provides full access to Amazon DevOps Agent via the AWS Management Console */
|
|
24
|
+
AIDevOpsAgentFullAccess(): aws_iam.IManagedPolicy;
|
|
25
|
+
/** Provides read only access to Amazon DevOps Agent via the AWS Management Console */
|
|
26
|
+
AIDevOpsAgentReadOnlyAccess(): aws_iam.IManagedPolicy;
|
|
27
|
+
/** Provides access to use the AWS DevOps operator web app for an Agent Space. */
|
|
28
|
+
AIDevOpsOperatorAppAccessPolicy(): aws_iam.IManagedPolicy;
|
|
21
29
|
/** Provides permissions required by the Amazon AI Operations Assistant to generate incident report of the investigation. */
|
|
22
30
|
AIOpsAssistantIncidentReportPolicy(): aws_iam.IManagedPolicy;
|
|
23
31
|
/** Provides ReadOnly permissions required by the Amazon AI Operations Assistant to do analysis on customer AWS resources during investigations. */
|
|
@@ -1256,6 +1264,8 @@ export declare class AwsManagedPolicy extends AwsManagedPolicyStatic {
|
|
|
1256
1264
|
AWSBatchServiceRolePolicyForSageMaker(): aws_iam.IManagedPolicy;
|
|
1257
1265
|
/** A service linked role to provide Billing and Cost Management Data Exports access to AWS service data for exporting the data to a target location, such as Amazon S3, on behalf of a customer. */
|
|
1258
1266
|
AWSBCMDataExportsServiceRolePolicy(): aws_iam.IManagedPolicy;
|
|
1267
|
+
/** Allows Bedrock AgentCore Gateway to managed VPC Lattice resources on your behalf */
|
|
1268
|
+
AWSBedrockAgentCoreGatewayNetworkServiceRolePolicy(): aws_iam.IManagedPolicy;
|
|
1259
1269
|
/** Use the AWSBillingConductorFullAccess managed policy to allow complete access to AWS Billing Conductor (ABC) console and APIs. This policy allows users to list, create and delete ABC resources. */
|
|
1260
1270
|
AWSBillingConductorFullAccess(): aws_iam.IManagedPolicy;
|
|
1261
1271
|
/** Use the AWSBillingConductorReadOnlyAccess managed policy to allow read only access to AWS Billing Conductor (ABC) console and APIs. This policy grants permission to view and list all ABC resources. It does not include the ability to create or delete resources. */
|