package awseks // The default capacity type for the cluster. // // Example: // cluster := eks.NewCluster(this, jsii.String("HelloEKS"), &ClusterProps{ // Version: eks.KubernetesVersion_V1_27(), // DefaultCapacityType: eks.DefaultCapacityType_EC2, // }) // type DefaultCapacityType string const ( // managed node group. DefaultCapacityType_NODEGROUP DefaultCapacityType = "NODEGROUP" // EC2 autoscaling group. DefaultCapacityType_EC2 DefaultCapacityType = "EC2" )