eks-for-prod
Version:
EKS Cluster + EFS Filesystem + Aurora Serverless Cluster
15 lines • 599 B
TypeScript
import { Construct, Stack, StackProps, Stage, StageProps } from '@aws-cdk/core';
import { ICluster } from '@aws-cdk/aws-eks';
export declare class EksCluster extends Construct {
cluster: ICluster;
constructor(scope: Construct, id: string);
private createEksCluster;
private createSpotNodeGroups;
}
export declare class EksClusterStack extends Stack {
constructor(scope: Construct, id: string, props?: StackProps);
}
export declare class EksClusterStage extends Stage {
constructor(scope: Construct, id: string, props?: StageProps);
}
//# sourceMappingURL=eks-cluster.d.ts.map