Class: Aws::ApplicationAutoScaling::Types::ScalableTargetAction

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-applicationautoscaling/types.rb

Overview

Represents the minimum and maximum capacity for a scheduled action.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_capacityInteger

The maximum capacity.

Although you can specify a large maximum capacity, note that service quotas may impose lower limits. Each service has its own default quotas for the maximum capacity of the resource. If you want to specify a higher limit, you can request an increase. For more information, consult the documentation for that service. For information about the default quotas for each service, see [Service endpoints and quotas] in the *Amazon Web Services General Reference*.

[1]: docs.aws.amazon.com/general/latest/gr/aws-service-information.html

Returns:

  • (Integer)


2825
2826
2827
2828
2829
2830
# File 'lib/aws-sdk-applicationautoscaling/types.rb', line 2825

class ScalableTargetAction < Struct.new(
  :min_capacity,
  :max_capacity)
  SENSITIVE = []
  include Aws::Structure
end

#min_capacityInteger

The minimum capacity.

When the scheduled action runs, the resource will have at least this much capacity, but it might have more depending on other settings, such as the target utilization level of a target tracking scaling policy.

Returns:

  • (Integer)


2825
2826
2827
2828
2829
2830
# File 'lib/aws-sdk-applicationautoscaling/types.rb', line 2825

class ScalableTargetAction < Struct.new(
  :min_capacity,
  :max_capacity)
  SENSITIVE = []
  include Aws::Structure
end