Interface AutoScalingGroupCapacityOptions
- All Superinterfaces:
CommonAutoScalingGroupProps
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AutoScalingGroupCapacityOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:01.378Z")
@Stability(Stable)
public interface AutoScalingGroupCapacityOptions
extends software.amazon.jsii.JsiiSerializable, CommonAutoScalingGroupProps
Options for adding worker nodes.
Example:
Cluster cluster; cluster.addAutoScalingGroupCapacity("BottlerocketNodes", AutoScalingGroupCapacityOptions.builder() .instanceType(new InstanceType("t3.small")) .minCapacity(2) .machineImageType(MachineImageType.BOTTLEROCKET) .build());
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forAutoScalingGroupCapacityOptions
static final class
An implementation forAutoScalingGroupCapacityOptions
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Boolean
Configures the EC2 user-data script for instances in this autoscaling group to bootstrap the node (invoke/etc/eks/bootstrap.sh
) and associate it with the EKS cluster.default BootstrapOptions
EKS node bootstrapping options.Instance type of the instances to start.default MachineImageType
Machine image type.default Boolean
Will automatically update the aws-auth ConfigMap to map the IAM instance role to RBAC.default Boolean
Installs the AWS spot instance interrupt handler on the cluster if it's not already added.Methods inherited from interface software.amazon.awscdk.services.autoscaling.CommonAutoScalingGroupProps
getAllowAllOutbound, getAssociatePublicIpAddress, getAutoScalingGroupName, getBlockDevices, getCapacityRebalance, getCooldown, getDefaultInstanceWarmup, getDesiredCapacity, getGroupMetrics, getHealthCheck, getIgnoreUnmodifiedSizeProperties, getInstanceMonitoring, getKeyName, getKeyPair, getMaxCapacity, getMaxInstanceLifetime, getMinCapacity, getNewInstancesProtectedFromScaleIn, getNotifications, getSignals, getSpotPrice, getSsmSessionPermissions, getTerminationPolicies, getTerminationPolicyCustomLambdaFunctionArn, getUpdatePolicy, getVpcSubnets
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInstanceType
Instance type of the instances to start. -
getBootstrapEnabled
Configures the EC2 user-data script for instances in this autoscaling group to bootstrap the node (invoke/etc/eks/bootstrap.sh
) and associate it with the EKS cluster.If you wish to provide a custom user data script, set this to
false
and manually invokeautoscalingGroup.addUserData()
.Default: true
-
getBootstrapOptions
EKS node bootstrapping options.Default: - none
-
getMachineImageType
Machine image type.Default: MachineImageType.AMAZON_LINUX_2
-
getMapRole
Will automatically update the aws-auth ConfigMap to map the IAM instance role to RBAC.This cannot be explicitly set to
true
if the cluster has kubectl disabled.Default: - true if the cluster has kubectl enabled (which is the default).
-
getSpotInterruptHandler
Installs the AWS spot instance interrupt handler on the cluster if it's not already added.Only relevant if
spotPrice
is used.Default: true
-
builder
-