Class: Aws::ApplicationAutoScaling::Types::ScalableTargetAction
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationAutoScaling::Types::ScalableTargetAction
- Defined in:
- gems/aws-sdk-applicationautoscaling/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.
3360 3361 3362 3363 3364 3365 |
# File 'gems/aws-sdk-applicationautoscaling/lib/aws-sdk-applicationautoscaling/types.rb', line 3360 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.
3360 3361 3362 3363 3364 3365 |
# File 'gems/aws-sdk-applicationautoscaling/lib/aws-sdk-applicationautoscaling/types.rb', line 3360 class ScalableTargetAction < Struct.new( :min_capacity, :max_capacity) SENSITIVE = [] include Aws::Structure end |