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
or
npm install cdk-common@latest
// for CDKv1
npm install cdk-common@cdkv1
AWS Managed Policies enum
import * as cdk from '@aws-cdk/core';
import { AWSManagedPolicies } from 'cdk-common';
const app = new cdk.App();
const stack = new cdk.Stack(app, 'integ-default', { env });
export class IntegDefault extends cdk.Construct {
constructor(scope: cdk.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-1.0.474.tar.gz
(1.6 MB
view details)
Built Distribution
File details
Details for the file cdk-common-1.0.474.tar.gz
.
File metadata
- Download URL: cdk-common-1.0.474.tar.gz
- Upload date:
- Size: 1.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfe89f764097e27a80247db100554f5c8ab6d4862b3f335bae324a57bd38d20d |
|
MD5 | 41c0557732e8a9c113f2b8fe234f07d6 |
|
BLAKE2b-256 | 757f3dd891a946d4c6ccd469b2066219b05c84d523ab36b5208283ccd2327672 |
File details
Details for the file cdk_common-1.0.474-py3-none-any.whl
.
File metadata
- Download URL: cdk_common-1.0.474-py3-none-any.whl
- Upload date:
- Size: 1.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9494844e12c6f404d6388dd9a6ec8e4a167d2294d11a02b6ad8047fb049a01d9 |
|
MD5 | 91a3c6f14575a97dd3493d93618eb0ea |
|
BLAKE2b-256 | a50ed96d4da5c9ab9ee7af3cb8602eb4565476e8853d7d77743a2cb689ea8466 |