interface InfrastructureOptimizationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ECS.Mixins.CfnCapacityProviderPropsMixin.InfrastructureOptimizationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsecs/mixins#CfnCapacityProviderPropsMixin_InfrastructureOptimizationProperty |
Java | software.amazon.awscdk.mixins.preview.services.ecs.mixins.CfnCapacityProviderPropsMixin.InfrastructureOptimizationProperty |
Python | aws_cdk.mixins_preview.aws_ecs.mixins.CfnCapacityProviderPropsMixin.InfrastructureOptimizationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ecs » mixins » CfnCapacityProviderPropsMixin » InfrastructureOptimizationProperty |
The configuration that controls how Amazon ECS optimizes your infrastructure.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ecs_mixins } from '@aws-cdk/mixins-preview/aws-ecs';
const infrastructureOptimizationProperty: ecs_mixins.CfnCapacityProviderPropsMixin.InfrastructureOptimizationProperty = {
scaleInAfter: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| scale | number | This parameter defines the number of seconds Amazon ECS Managed Instances waits before optimizing EC2 instances that have become idle or underutilized. |
scaleInAfter?
Type:
number
(optional)
This parameter defines the number of seconds Amazon ECS Managed Instances waits before optimizing EC2 instances that have become idle or underutilized.
A longer delay increases the likelihood of placing new tasks on idle or underutilized instances instances, reducing startup time. A shorter delay helps reduce infrastructure costs by optimizing idle or underutilized instances,instances more quickly.
Valid values are:
null- Uses the default optimization behavior.-1- Disables automatic infrastructure optimization.- A value between
0and3600(inclusive) - Specifies the number of seconds to wait before optimizing instances.

.NET
Go
Java
Python
TypeScript