adjustment_types
Creates, updates, deletes, gets or lists an adjustment_types resource.
Overview
| Name | adjustment_types |
| Type | Resource |
| Id | aws.autoscaling.adjustment_types |
Fields
The following fields are returned by SELECT queries:
- describe_adjustment_types
| Name | Datatype | Description |
|---|---|---|
adjustment_type | string | The policy adjustment type. The valid values are ChangeInCapacity, ExactCapacity, and PercentChangeInCapacity. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_adjustment_types | select | region | Describes the available adjustment types for step scaling and simple scaling policies. The following adjustment types are supported: ChangeInCapacity ExactCapacity PercentChangeInCapacity |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_adjustment_types
Describes the available adjustment types for step scaling and simple scaling policies. The following adjustment types are supported: ChangeInCapacity ExactCapacity PercentChangeInCapacity
SELECT
adjustment_type
FROM aws.autoscaling.adjustment_types
WHERE region = '{{ region }}' -- required
;