AWS CDK utilities for provisioning and managing AWS infrastructure using the AWS CDK.
This package provides high-level constructs and service managers that simplify common AWS CDK patterns:
pnpm add @gradientedge/cdk-utils-aws
import { CommonConstruct } from '@gradientedge/cdk-utils-aws'
import { Construct } from 'constructs'
class MyStack extends CommonConstruct {
constructor(parent: Construct, id: string, props: CommonStackProps) {
super(parent, id, props)
this.initResources()
}
}
Provides operations on AWS ElastiCache Service.