Class: Aws::AutoScaling::Types::AdjustmentType
- Inherits:
-
Struct
- Object
- Struct
- Aws::AutoScaling::Types::AdjustmentType
- Defined in:
- gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb
Overview
Describes a policy adjustment type.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#adjustment_type ⇒ String
The policy adjustment type.
Instance Attribute Details
#adjustment_type ⇒ String
The policy adjustment type. The valid values are ChangeInCapacity
,
ExactCapacity
, and PercentChangeInCapacity
.
192 193 194 195 196 |
# File 'gems/aws-sdk-autoscaling/lib/aws-sdk-autoscaling/types.rb', line 192 class AdjustmentType < Struct.new( :adjustment_type) SENSITIVE = [] include Aws::Structure end |