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.1013.tar.gz
(1.4 MB
view details)
Built Distribution
File details
Details for the file cdk_common-1.0.1013.tar.gz
.
File metadata
- Download URL: cdk_common-1.0.1013.tar.gz
- Upload date:
- Size: 1.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6879c9f1fdd24b221c8e53bcc7e6e1679013987c36573315fdd4c9778ff46c37 |
|
MD5 | 139f69b1fad1a0437f04b9c195cbde0c |
|
BLAKE2b-256 | 3ed7d73631373840379fd7e6e72b0e67ebe596051c933d9eac8f036721935b3c |
File details
Details for the file cdk_common-1.0.1013-py3-none-any.whl
.
File metadata
- Download URL: cdk_common-1.0.1013-py3-none-any.whl
- Upload date:
- Size: 1.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d6dc6f454c01fded3f300bb9525a501147d5c8c56eb66bb4004f28e185bf4ff7 |
|
MD5 | 1276f0166db5a7c1de87bc7dd4b050c8 |
|
BLAKE2b-256 | 8a6e9663b2a4b2dc8e47badc579f90fb314cf1ef4a84fd824bdd00ac7b663a61 |