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.862.tar.gz
(1.0 MB
view details)
Built Distribution
File details
Details for the file cdk-common-1.0.862.tar.gz
.
File metadata
- Download URL: cdk-common-1.0.862.tar.gz
- Upload date:
- Size: 1.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc4e4c7b81f8cfb512022a526bcb01082b7000a1db6d9b7cb9c7c8bd7c50ab0c |
|
MD5 | f64c9df1a7e4cd65e4346754564a1875 |
|
BLAKE2b-256 | 59e310a0837cabefad2bbe0f257f3950eb978f7f94d13117b970cc5cbbc62504 |
File details
Details for the file cdk_common-1.0.862-py3-none-any.whl
.
File metadata
- Download URL: cdk_common-1.0.862-py3-none-any.whl
- Upload date:
- Size: 1.0 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8ec2c0eb6940b0b1f82409219decb0b037b7e2f8580225b8c4a3677111cc71a4 |
|
MD5 | e37bfbcf0189843c05b7a48adef8de7e |
|
BLAKE2b-256 | 3ee0812c0c64d6aa871f2e89938f796136224675afd8d237011123c8b477c616 |