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.801.tar.gz
(996.0 kB
view details)
Built Distribution
cdk_common-1.0.801-py3-none-any.whl
(994.7 kB
view details)
File details
Details for the file cdk-common-1.0.801.tar.gz
.
File metadata
- Download URL: cdk-common-1.0.801.tar.gz
- Upload date:
- Size: 996.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e26d3ed97484a1b4dafc998f1e2c01fd9caffca2ff7346c0149a969d2db4add5 |
|
MD5 | 87409167f839cf524c103d45f9abc4fc |
|
BLAKE2b-256 | 85e3a6353453c0bf7bc5e81f78363957e76d5ddde6f277dd98f2d7176da0756f |
File details
Details for the file cdk_common-1.0.801-py3-none-any.whl
.
File metadata
- Download URL: cdk_common-1.0.801-py3-none-any.whl
- Upload date:
- Size: 994.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4eedfe7066555116945bc6a615a691d33f784c03d046eaa0b1d1c905e2484851 |
|
MD5 | f333c96842f26380f8f543725144b0e6 |
|
BLAKE2b-256 | b3a9d47b4054c2be02d5f5d06d15b0f8ed33f79f502eb26f51eb15f24fd8470b |