aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
18 lines (17 loc) • 565 B
TypeScript
import { BootstrapOptions, ICluster } from './cluster';
import * as autoscaling from '../../aws-autoscaling';
export declare function renderAmazonLinuxUserData(cluster: ICluster, autoScalingGroup: autoscaling.AutoScalingGroup, options?: BootstrapOptions): string[];
export declare function renderBottlerocketUserData(cluster: ICluster): string[];
/**
* The lifecycle label for node selector
*/
export declare enum LifecycleLabel {
/**
* on-demand instances
*/
ON_DEMAND = "OnDemand",
/**
* spot instances
*/
SPOT = "Ec2Spot"
}