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.940.tar.gz
(1.3 MB
view details)
Built Distribution
File details
Details for the file cdk_common-1.0.940.tar.gz
.
File metadata
- Download URL: cdk_common-1.0.940.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00d33ab05e10ce8d7683956c8b05c394adf56fa3a7c8439f1fbab86c1f2e45ec |
|
MD5 | 35ce13e8c411b3276769d0c519640fca |
|
BLAKE2b-256 | ff16f329d3ff0efd9f7d8e1584aa3ad92e84cc22779b238a2d53a71b48b028b2 |
File details
Details for the file cdk_common-1.0.940-py3-none-any.whl
.
File metadata
- Download URL: cdk_common-1.0.940-py3-none-any.whl
- Upload date:
- Size: 1.3 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4852b9b8036b071743b57acdbf7b2c15ecece5c1bb3b579ef3f7259ab4864f7d |
|
MD5 | 3de9a2f6245c941feb7dd4fc711febbd |
|
BLAKE2b-256 | de170afeabf6ef851f1c4db65442e02340e2d6c1256f9a8c4c8284a45abacb02 |