GradientEdge CDK Utils
    Preparing search index...
    import { CommonConstruct } from '@gradientedge/cdk-utils'

    class CustomConstruct extends CommonConstruct {
    constructor(parent: cdk.Construct, id: string, props: common.CommonStackProps) {
    super(parent, id, props)
    this.props = props
    this.elasticacheManager.createElastiCache('MyElastiCache', scope, props)
    }
    }
    Index

    Constructors

    Methods

    • Parameters

      • id: string

        scoped id of the resource

      • scope: CommonConstruct

        scope in which this resource is defined

      • props: ElastiCacheProps

        the ElastiCache cluster properties

      • subnetIds: string[]

        the list of subnet IDs for the cache subnet group

      • securityGroupIds: string[]

        the list of VPC security group IDs to associate with the cluster

      • OptionallogDeliveryConfigurations: any

        optional log delivery configuration for the cluster

      Returns CfnCacheCluster