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.786.tar.gz
(993.6 kB
view details)
Built Distribution
cdk_common-1.0.786-py3-none-any.whl
(992.4 kB
view details)
File details
Details for the file cdk-common-1.0.786.tar.gz
.
File metadata
- Download URL: cdk-common-1.0.786.tar.gz
- Upload date:
- Size: 993.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b60e3bc6c7c76f5764c3cc3df9625fce0ef05e7d33834b1d77502bf3f68ea384 |
|
MD5 | 6dd41480fb860836d121c1e7a0582f02 |
|
BLAKE2b-256 | c7e4b759940ff3e08f1ea6f133758d91db05168fa3e47430654e1c327000160f |
File details
Details for the file cdk_common-1.0.786-py3-none-any.whl
.
File metadata
- Download URL: cdk_common-1.0.786-py3-none-any.whl
- Upload date:
- Size: 992.4 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 | 79de7e6b592335f9af2950283448c5583ca5fdedbe234174c8c8cb8f01ad9ee7 |
|
MD5 | 908b09cce591bb89b3f9d860b996008e |
|
BLAKE2b-256 | 674343792ce480fc0f736886f02846355d82444638e8c8a9ca2ca0b6d2f7fc9f |