AddAutoScalingGroupCapacityOptions
- class aws_cdk.aws_ecs.AddAutoScalingGroupCapacityOptions(*, can_containers_access_instance_role=None, machine_image_type=None, spot_instance_draining=None, task_drain_time=None, topic_encryption_key=None)
- Bases: - object- The properties for adding an AutoScalingGroup. - Parameters:
- can_containers_access_instance_role ( - Optional[- bool]) – Specifies whether the containers can access the container instance role. Default: false
- machine_image_type ( - Optional[- MachineImageType]) – What type of machine image this is. Depending on the setting, different UserData will automatically be added to the- AutoScalingGroupto configure it properly for use with ECS. If you create an- AutoScalingGroupyourself and are adding it via- addAutoScalingGroup(), you must specify this value. If you are adding an- autoScalingGroupvia- addCapacity, this value will be determined from the- machineImageyou pass. Default: - Automatically determined from- machineImage, if available, otherwise- MachineImageType.AMAZON_LINUX_2.
- spot_instance_draining ( - Optional[- bool]) – Specify whether to enable Automated Draining for Spot Instances running Amazon ECS Services. For more information, see Using Spot Instances. Default: false
- task_drain_time ( - Optional[- Duration]) – (deprecated) The time period to wait before force terminating an instance that is draining. This creates a Lambda function that is used by a lifecycle hook for the AutoScalingGroup that will delay instance termination until all ECS tasks have drained from the instance. Set to 0 to disable task draining. Set to 0 to disable task draining. Default: Duration.minutes(5)
- topic_encryption_key ( - Optional[- IKey]) – If {@link AddAutoScalingGroupCapacityOptions.taskDrainTime} is non-zero, then the ECS cluster creates an SNS Topic to as part of a system to drain instances of tasks when the instance is being shut down. If this property is provided, then this key will be used to encrypt the contents of that SNS Topic. See SNS Data Encryption for more information. Default: The SNS Topic will not be encrypted.
 
- ExampleMetadata:
- fixture=_generated 
 - Example: - # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_ecs as ecs import aws_cdk.aws_kms as kms import aws_cdk.core as cdk # key: kms.Key add_auto_scaling_group_capacity_options = ecs.AddAutoScalingGroupCapacityOptions( can_containers_access_instance_role=False, machine_image_type=ecs.MachineImageType.AMAZON_LINUX_2, spot_instance_draining=False, task_drain_time=cdk.Duration.minutes(30), topic_encryption_key=key ) - Attributes - can_containers_access_instance_role
- Specifies whether the containers can access the container instance role. - Default:
- false 
 
 - machine_image_type
- What type of machine image this is. - Depending on the setting, different UserData will automatically be added to the - AutoScalingGroupto configure it properly for use with ECS.- If you create an - AutoScalingGroupyourself and are adding it via- addAutoScalingGroup(), you must specify this value. If you are adding an- autoScalingGroupvia- addCapacity, this value will be determined from the- machineImageyou pass.- Default:
- Automatically determined from - machineImage, if available, otherwise- MachineImageType.AMAZON_LINUX_2.
 
 
 - spot_instance_draining
- Specify whether to enable Automated Draining for Spot Instances running Amazon ECS Services. - For more information, see Using Spot Instances. - Default:
- false 
 
 - task_drain_time
- (deprecated) The time period to wait before force terminating an instance that is draining. - This creates a Lambda function that is used by a lifecycle hook for the AutoScalingGroup that will delay instance termination until all ECS tasks have drained from the instance. Set to 0 to disable task draining. - Set to 0 to disable task draining. - Default:
- Duration.minutes(5) 
- Deprecated:
- The lifecycle draining hook is not configured if using the EC2 Capacity Provider. Enable managed termination protection instead. 
- Stability:
- deprecated 
 
 - topic_encryption_key
- If {@link AddAutoScalingGroupCapacityOptions.taskDrainTime} is non-zero, then the ECS cluster creates an SNS Topic to as part of a system to drain instances of tasks when the instance is being shut down. If this property is provided, then this key will be used to encrypt the contents of that SNS Topic. See SNS Data Encryption for more information. - Default:
- The SNS Topic will not be encrypted.