Class: Aws::ApplicationAutoScaling::Types::ScalableTargetAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationAutoScaling::Types::ScalableTargetAction
- 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
-
#max_capacity ⇒ Integer
The maximum capacity.
-
#min_capacity ⇒ Integer
The minimum capacity.
Instance Attribute Details
#max_capacity ⇒ Integer
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
2888 2889 2890 2891 2892 2893 |
# File 'lib/aws-sdk-applicationautoscaling/types.rb', line 2888 class ScalableTargetAction < Struct.new( :min_capacity, :max_capacity) SENSITIVE = [] include Aws::Structure end |
#min_capacity ⇒ Integer
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.
2888 2889 2890 2891 2892 2893 |
# File 'lib/aws-sdk-applicationautoscaling/types.rb', line 2888 class ScalableTargetAction < Struct.new( :min_capacity, :max_capacity) SENSITIVE = [] include Aws::Structure end |