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.805.tar.gz
(998.7 kB
view details)
Built Distribution
cdk_common-1.0.805-py3-none-any.whl
(997.4 kB
view details)
File details
Details for the file cdk-common-1.0.805.tar.gz
.
File metadata
- Download URL: cdk-common-1.0.805.tar.gz
- Upload date:
- Size: 998.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eaddf0350a72577241d893b13250393c9d3c115337c71b493b91544389e69d74 |
|
MD5 | acc8cd29de9a619414fd6e93ba6a5429 |
|
BLAKE2b-256 | 02e7f2a8d3e09538074867f295f4c4c796721a4516d5a0f06c0e4e92fd20c922 |
File details
Details for the file cdk_common-1.0.805-py3-none-any.whl
.
File metadata
- Download URL: cdk_common-1.0.805-py3-none-any.whl
- Upload date:
- Size: 997.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 | cad48659851670a646f7a343fc94aee196cad246e844a9a847c2e8d58f67c7b7 |
|
MD5 | 0fe70e8a081855b3385c02b841308105 |
|
BLAKE2b-256 | 37eba84f3666c6c94a3081873fba425a18fb3d7c529f406d8b230ed4bc850d9e |