Common AWS CDK librarys.
Project description
Welcome to cdk-common
This Constructs Library will collection of useful function and class for AWS CDK.
Install
Use the npm dist tag to opt in CDKv1 or CDKv2:
// for CDKv2
npm install cdk-common
AWS Managed Policies enum
import * as cdk from 'aws-cdk-lib';
import { AWSManagedPolicies } from 'cdk-common';
import { Construct } from 'constructs';
const app = new cdk.App();
const stack = new cdk.Stack(app, 'integ-default', { env });
export class IntegDefault extends Construct {
constructor(scope: Construct, id: string ) {
super(scope, id);
const role = new iam.Role(this, 'iamrole', {
assumedBy: new iam.ServicePrincipal('ec2.amazonaws.com'),
});
// Use this way.
role.addManagedPolicy(iam.ManagedPolicy.fromAwsManagedPolicyName(AWSManagedPolicies.AMAZON_SSM_MANAGED_INSTANCE_CORE));
// Not this way.
role.addManagedPolicy(iam.ManagedPolicy.fromAwsManagedPolicyName('AmazonSSMManagedInstanceCore'));
}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cdk_common-2.1.13.tar.gz
(4.0 MB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cdk_common-2.1.13.tar.gz.
File metadata
- Download URL: cdk_common-2.1.13.tar.gz
- Upload date:
- Size: 4.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca40e76e23ab1c8d13c8db9d8594045c1927d2793f32f6439d477c028a66bf60
|
|
| MD5 |
dc3742b3345dd3d997b1486ea6a8299d
|
|
| BLAKE2b-256 |
463789d4367413d8b6ae0047337b4a53eae9917e912172b44821ff22607100de
|
File details
Details for the file cdk_common-2.1.13-py3-none-any.whl.
File metadata
- Download URL: cdk_common-2.1.13-py3-none-any.whl
- Upload date:
- Size: 4.0 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7451c833735fa552d50284a2bea02374b09bffb21f8d40b643e81f428c3d794f
|
|
| MD5 |
3034872612a26df675e4500304356139
|
|
| BLAKE2b-256 |
da336f367be698b4a6152fa56467f50541d6f4339211912afc05719a1a757ba1
|