Class: Aws::ECS::Types::InfrastructureOptimization

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb

Overview

The configuration that controls how Amazon ECS optimizes your infrastructure.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#scale_in_afterInteger

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 0 and 3600 (inclusive) - Specifies the number of seconds to wait before optimizing instances.

Returns:

  • (Integer)


6770
6771
6772
6773
6774
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 6770

class InfrastructureOptimization < Struct.new(
  :scale_in_after)
  SENSITIVE = []
  include Aws::Structure
end