public static final class AutoScalingGroup.Builder
extends java.lang.Object
AutoScalingGroup
.Modifier and Type | Method and Description |
---|---|
AutoScalingGroup.Builder |
allowAllOutbound(java.lang.Boolean allowAllOutbound)
Whether the instances can initiate connections to anywhere by default.
|
AutoScalingGroup.Builder |
associatePublicIpAddress(java.lang.Boolean associatePublicIpAddress)
Whether instances in the Auto Scaling Group should have public IP addresses associated with them.
|
AutoScalingGroup.Builder |
autoScalingGroupName(java.lang.String autoScalingGroupName)
The name of the Auto Scaling group.
|
AutoScalingGroup.Builder |
blockDevices(java.util.List<? extends BlockDevice> blockDevices)
Specifies how block devices are exposed to the instance.
|
AutoScalingGroup |
build() |
AutoScalingGroup.Builder |
cooldown(Duration cooldown)
Default scaling cooldown for this AutoScalingGroup.
|
static AutoScalingGroup.Builder |
create(software.constructs.Construct scope,
java.lang.String id) |
AutoScalingGroup.Builder |
desiredCapacity(java.lang.Number desiredCapacity)
Initial amount of instances in the fleet.
|
AutoScalingGroup.Builder |
groupMetrics(java.util.List<? extends GroupMetrics> groupMetrics)
Enable monitoring for group metrics, these metrics describe the group rather than any of its instances.
|
AutoScalingGroup.Builder |
healthCheck(HealthCheck healthCheck)
Configuration for health checks.
|
AutoScalingGroup.Builder |
ignoreUnmodifiedSizeProperties(java.lang.Boolean ignoreUnmodifiedSizeProperties)
If the ASG has scheduled actions, don't reset unchanged group sizes.
|
AutoScalingGroup.Builder |
init(CloudFormationInit init)
Apply the given CloudFormation Init configuration to the instances in the AutoScalingGroup at startup.
|
AutoScalingGroup.Builder |
initOptions(ApplyCloudFormationInitOptions initOptions)
Use the given options for applying CloudFormation Init.
|
AutoScalingGroup.Builder |
instanceMonitoring(Monitoring instanceMonitoring)
Controls whether instances in this group are launched with detailed or basic monitoring.
|
AutoScalingGroup.Builder |
instanceType(InstanceType instanceType)
Type of instance to launch.
|
AutoScalingGroup.Builder |
keyName(java.lang.String keyName)
Name of SSH keypair to grant access to instances.
|
AutoScalingGroup.Builder |
launchTemplate(ILaunchTemplate launchTemplate)
Launch template to use.
|
AutoScalingGroup.Builder |
machineImage(IMachineImage machineImage)
AMI to launch.
|
AutoScalingGroup.Builder |
maxCapacity(java.lang.Number maxCapacity)
Maximum number of instances in the fleet.
|
AutoScalingGroup.Builder |
maxInstanceLifetime(Duration maxInstanceLifetime)
The maximum amount of time that an instance can be in service.
|
AutoScalingGroup.Builder |
minCapacity(java.lang.Number minCapacity)
Minimum number of instances in the fleet.
|
AutoScalingGroup.Builder |
mixedInstancesPolicy(MixedInstancesPolicy mixedInstancesPolicy)
Mixed Instances Policy to use.
|
AutoScalingGroup.Builder |
newInstancesProtectedFromScaleIn(java.lang.Boolean newInstancesProtectedFromScaleIn)
Whether newly-launched instances are protected from termination by Amazon EC2 Auto Scaling when scaling in.
|
AutoScalingGroup.Builder |
notifications(java.util.List<? extends NotificationConfiguration> notifications)
Configure autoscaling group to send notifications about fleet changes to an SNS topic(s).
|
AutoScalingGroup.Builder |
notificationsTopic(ITopic notificationsTopic)
Deprecated.
use `notifications`
|
AutoScalingGroup.Builder |
replacingUpdateMinSuccessfulInstancesPercent(java.lang.Number replacingUpdateMinSuccessfulInstancesPercent)
Deprecated.
Use `signals` instead
|
AutoScalingGroup.Builder |
requireImdsv2(java.lang.Boolean requireImdsv2)
Whether IMDSv2 should be required on launched instances.
|
AutoScalingGroup.Builder |
resourceSignalCount(java.lang.Number resourceSignalCount)
Deprecated.
Use `signals` instead.
|
AutoScalingGroup.Builder |
resourceSignalTimeout(Duration resourceSignalTimeout)
Deprecated.
Use `signals` instead.
|
AutoScalingGroup.Builder |
role(IRole role)
An IAM role to associate with the instance profile assigned to this Auto Scaling Group.
|
AutoScalingGroup.Builder |
rollingUpdateConfiguration(RollingUpdateConfiguration rollingUpdateConfiguration)
Deprecated.
Use `updatePolicy` instead
|
AutoScalingGroup.Builder |
securityGroup(ISecurityGroup securityGroup)
Security group to launch the instances in.
|
AutoScalingGroup.Builder |
signals(Signals signals)
Configure waiting for signals during deployment.
|
AutoScalingGroup.Builder |
spotPrice(java.lang.String spotPrice)
The maximum hourly price (in USD) to be paid for any Spot Instance launched to fulfill the request.
|
AutoScalingGroup.Builder |
terminationPolicies(java.util.List<? extends TerminationPolicy> terminationPolicies)
A policy or a list of policies that are used to select the instances to terminate.
|
AutoScalingGroup.Builder |
updatePolicy(UpdatePolicy updatePolicy)
What to do when an AutoScalingGroup's instance configuration is changed.
|
AutoScalingGroup.Builder |
updateType(UpdateType updateType)
Deprecated.
Use `updatePolicy` instead
|
AutoScalingGroup.Builder |
userData(UserData userData)
Specific UserData to use.
|
AutoScalingGroup.Builder |
vpc(IVpc vpc)
VPC to launch these instances in.
|
AutoScalingGroup.Builder |
vpcSubnets(SubnetSelection vpcSubnets)
Where to place instances within the VPC.
|
public static AutoScalingGroup.Builder create(software.constructs.Construct scope, java.lang.String id)
scope
- This parameter is required.id
- This parameter is required.AutoScalingGroup.Builder
.public AutoScalingGroup.Builder allowAllOutbound(java.lang.Boolean allowAllOutbound)
Default: true
allowAllOutbound
- Whether the instances can initiate connections to anywhere by default. This parameter is required.this
public AutoScalingGroup.Builder associatePublicIpAddress(java.lang.Boolean associatePublicIpAddress)
Default: - Use subnet setting.
associatePublicIpAddress
- Whether instances in the Auto Scaling Group should have public IP addresses associated with them. This parameter is required.this
public AutoScalingGroup.Builder autoScalingGroupName(java.lang.String autoScalingGroupName)
This name must be unique per Region per account.
Default: - Auto generated by CloudFormation
autoScalingGroupName
- The name of the Auto Scaling group. This parameter is required.this
public AutoScalingGroup.Builder blockDevices(java.util.List<? extends BlockDevice> blockDevices)
Each instance that is launched has an associated root device volume, either an Amazon EBS volume or an instance store volume. You can use block device mappings to specify additional EBS volumes or instance store volumes to attach to an instance when it is launched.
Default: - Uses the block device mapping of the AMI
blockDevices
- Specifies how block devices are exposed to the instance. You can specify virtual devices and EBS volumes. This parameter is required.this
public AutoScalingGroup.Builder cooldown(Duration cooldown)
Default: Duration.minutes(5)
cooldown
- Default scaling cooldown for this AutoScalingGroup. This parameter is required.this
public AutoScalingGroup.Builder desiredCapacity(java.lang.Number desiredCapacity)
If this is set to a number, every deployment will reset the amount of instances to this number. It is recommended to leave this value blank.
Default: minCapacity, and leave unchanged during deployment
desiredCapacity
- Initial amount of instances in the fleet. This parameter is required.this
public AutoScalingGroup.Builder groupMetrics(java.util.List<? extends GroupMetrics> groupMetrics)
To report all group metrics use GroupMetrics.all()
Group metrics are reported in a granularity of 1 minute at no additional charge.
Default: - no group metrics will be reported
groupMetrics
- Enable monitoring for group metrics, these metrics describe the group rather than any of its instances. This parameter is required.this
public AutoScalingGroup.Builder healthCheck(HealthCheck healthCheck)
Default: - HealthCheck.ec2 with no grace period
healthCheck
- Configuration for health checks. This parameter is required.this
public AutoScalingGroup.Builder ignoreUnmodifiedSizeProperties(java.lang.Boolean ignoreUnmodifiedSizeProperties)
Only used if the ASG has scheduled actions (which may scale your ASG up or down regardless of cdk deployments). If true, the size of the group will only be reset if it has been changed in the CDK app. If false, the sizes will always be changed back to what they were in the CDK app on deployment.
Default: true
ignoreUnmodifiedSizeProperties
- If the ASG has scheduled actions, don't reset unchanged group sizes. This parameter is required.this
public AutoScalingGroup.Builder instanceMonitoring(Monitoring instanceMonitoring)
When detailed monitoring is enabled, Amazon CloudWatch generates metrics every minute and your account is charged a fee. When you disable detailed monitoring, CloudWatch generates metrics every 5 minutes.
Default: - Monitoring.DETAILED
instanceMonitoring
- Controls whether instances in this group are launched with detailed or basic monitoring. This parameter is required.this
public AutoScalingGroup.Builder keyName(java.lang.String keyName)
Default: - No SSH access will be possible.
keyName
- Name of SSH keypair to grant access to instances. This parameter is required.this
public AutoScalingGroup.Builder maxCapacity(java.lang.Number maxCapacity)
Default: desiredCapacity
maxCapacity
- Maximum number of instances in the fleet. This parameter is required.this
public AutoScalingGroup.Builder maxInstanceLifetime(Duration maxInstanceLifetime)
The maximum duration applies to all current and future instances in the group. As an instance approaches its maximum duration, it is terminated and replaced, and cannot be used again.
You must specify a value of at least 604,800 seconds (7 days). To clear a previously set value, leave this property undefined.
Default: none
maxInstanceLifetime
- The maximum amount of time that an instance can be in service. This parameter is required.this
public AutoScalingGroup.Builder minCapacity(java.lang.Number minCapacity)
Default: 1
minCapacity
- Minimum number of instances in the fleet. This parameter is required.this
public AutoScalingGroup.Builder newInstancesProtectedFromScaleIn(java.lang.Boolean newInstancesProtectedFromScaleIn)
By default, Auto Scaling can terminate an instance at any time after launch when scaling in an Auto Scaling Group, subject to the group's termination policy. However, you may wish to protect newly-launched instances from being scaled in if they are going to run critical applications that should not be prematurely terminated.
This flag must be enabled if the Auto Scaling Group will be associated with an ECS Capacity Provider with managed termination protection.
Default: false
newInstancesProtectedFromScaleIn
- Whether newly-launched instances are protected from termination by Amazon EC2 Auto Scaling when scaling in. This parameter is required.this
public AutoScalingGroup.Builder notifications(java.util.List<? extends NotificationConfiguration> notifications)
Default: - No fleet change notifications will be sent.
notifications
- Configure autoscaling group to send notifications about fleet changes to an SNS topic(s). This parameter is required.this
@Deprecated public AutoScalingGroup.Builder notificationsTopic(ITopic notificationsTopic)
Default: - No fleet change notifications will be sent.
notificationsTopic
- SNS topic to send notifications about fleet changes. This parameter is required.this
@Deprecated public AutoScalingGroup.Builder replacingUpdateMinSuccessfulInstancesPercent(java.lang.Number replacingUpdateMinSuccessfulInstancesPercent)
Only used if updateType == UpdateType.ReplacingUpdate. Specifies how many instances must signal success for the update to succeed.
Default: minSuccessfulInstancesPercent
replacingUpdateMinSuccessfulInstancesPercent
- Configuration for replacing updates. This parameter is required.this
@Deprecated public AutoScalingGroup.Builder resourceSignalCount(java.lang.Number resourceSignalCount)
Default: 1 if resourceSignalTimeout is set, 0 otherwise
resourceSignalCount
- How many ResourceSignal calls CloudFormation expects before the resource is considered created. This parameter is required.this
@Deprecated public AutoScalingGroup.Builder resourceSignalTimeout(Duration resourceSignalTimeout)
The maximum value is 43200 (12 hours).
Default: Duration.minutes(5) if resourceSignalCount is set, N/A otherwise
resourceSignalTimeout
- The length of time to wait for the resourceSignalCount. This parameter is required.this
@Deprecated public AutoScalingGroup.Builder rollingUpdateConfiguration(RollingUpdateConfiguration rollingUpdateConfiguration)
Only used if updateType == UpdateType.RollingUpdate.
Default: - RollingUpdateConfiguration with defaults.
rollingUpdateConfiguration
- Configuration for rolling updates. This parameter is required.this
public AutoScalingGroup.Builder signals(Signals signals)
Use this to pause the CloudFormation deployment to wait for the instances
in the AutoScalingGroup to report successful startup during
creation and updates. The UserData script needs to invoke cfn-signal
with a success or failure code after it is done setting up the instance.
Without waiting for signals, the CloudFormation deployment will proceed as soon as the AutoScalingGroup has been created or updated but before the instances in the group have been started.
For example, to have instances wait for an Elastic Load Balancing health check before they signal success, add a health-check verification by using the cfn-init helper script. For an example, see the verify_instance_health command in the Auto Scaling rolling updates sample template:
https://github.com/awslabs/aws-cloudformation-templates/blob/master/aws/services/AutoScaling/AutoScalingRollingUpdates.yaml
Default: - Do not wait for signals
signals
- Configure waiting for signals during deployment. This parameter is required.this
public AutoScalingGroup.Builder spotPrice(java.lang.String spotPrice)
Spot Instances are launched when the price you specify exceeds the current Spot market price.
Default: none
spotPrice
- The maximum hourly price (in USD) to be paid for any Spot Instance launched to fulfill the request. This parameter is required.this
public AutoScalingGroup.Builder terminationPolicies(java.util.List<? extends TerminationPolicy> terminationPolicies)
The policies are executed in the order that you list them.
Default: - `TerminationPolicy.DEFAULT`
terminationPolicies
- A policy or a list of policies that are used to select the instances to terminate. This parameter is required.this
public AutoScalingGroup.Builder updatePolicy(UpdatePolicy updatePolicy)
This is applied when any of the settings on the ASG are changed that affect how the instances should be created (VPC, instance type, startup scripts, etc.). It indicates how the existing instances should be replaced with new instances matching the new config. By default, nothing is done and only new instances are launched with the new config.
Default: - `UpdatePolicy.rollingUpdate()` if using `init`, `UpdatePolicy.none()` otherwise
updatePolicy
- What to do when an AutoScalingGroup's instance configuration is changed. This parameter is required.this
@Deprecated public AutoScalingGroup.Builder updateType(UpdateType updateType)
This is applied when any of the settings on the ASG are changed that affect how the instances should be created (VPC, instance type, startup scripts, etc.). It indicates how the existing instances should be replaced with new instances matching the new config. By default, nothing is done and only new instances are launched with the new config.
Default: UpdateType.None
updateType
- What to do when an AutoScalingGroup's instance configuration is changed. This parameter is required.this
public AutoScalingGroup.Builder vpcSubnets(SubnetSelection vpcSubnets)
Default: - All Private subnets.
vpcSubnets
- Where to place instances within the VPC. This parameter is required.this
public AutoScalingGroup.Builder vpc(IVpc vpc)
vpc
- VPC to launch these instances in. This parameter is required.this
public AutoScalingGroup.Builder init(CloudFormationInit init)
If you specify init
, you must also specify signals
to configure
the number of instances to wait for and the timeout for waiting for the
init process.
Default: - no CloudFormation init
init
- Apply the given CloudFormation Init configuration to the instances in the AutoScalingGroup at startup. This parameter is required.this
public AutoScalingGroup.Builder initOptions(ApplyCloudFormationInitOptions initOptions)
Describes the configsets to use and the timeout to wait
Default: - default options
initOptions
- Use the given options for applying CloudFormation Init. This parameter is required.this
public AutoScalingGroup.Builder instanceType(InstanceType instanceType)
launchTemplate
must not be specified when this property is specified.
Default: - Do not provide any instance type
instanceType
- Type of instance to launch. This parameter is required.this
public AutoScalingGroup.Builder launchTemplate(ILaunchTemplate launchTemplate)
Launch configuration related settings and MixedInstancesPolicy must not be specified when a launch template is specified.
Default: - Do not provide any launch template
launchTemplate
- Launch template to use. This parameter is required.this
public AutoScalingGroup.Builder machineImage(IMachineImage machineImage)
launchTemplate
must not be specified when this property is specified.
Default: - Do not provide any machine image
machineImage
- AMI to launch. This parameter is required.this
public AutoScalingGroup.Builder mixedInstancesPolicy(MixedInstancesPolicy mixedInstancesPolicy)
Launch configuration related settings and Launch Template must not be specified when a MixedInstancesPolicy is specified.
Default: - Do not provide any MixedInstancesPolicy
mixedInstancesPolicy
- Mixed Instances Policy to use. This parameter is required.this
public AutoScalingGroup.Builder requireImdsv2(java.lang.Boolean requireImdsv2)
Default: false
requireImdsv2
- Whether IMDSv2 should be required on launched instances. This parameter is required.this
public AutoScalingGroup.Builder role(IRole role)
The role must be assumable by the service principal ec2.amazonaws.com
:
launchTemplate
must not be specified when this property is specified.
Default: A role will automatically be created, it can be accessed via the `role` property
Example:
Role role = Role.Builder.create(this, "MyRole") .assumedBy(new ServicePrincipal("ec2.amazonaws.com")) .build();
role
- An IAM role to associate with the instance profile assigned to this Auto Scaling Group. This parameter is required.this
public AutoScalingGroup.Builder securityGroup(ISecurityGroup securityGroup)
launchTemplate
must not be specified when this property is specified.
Default: - A SecurityGroup will be created if none is specified.
securityGroup
- Security group to launch the instances in. This parameter is required.this
public AutoScalingGroup.Builder userData(UserData userData)
The UserData may still be mutated after creation.
launchTemplate
must not be specified when this property is specified.
Default: - A UserData object appropriate for the MachineImage's Operating System is created.
userData
- Specific UserData to use. This parameter is required.this
public AutoScalingGroup build()