Skip to main content

adjustment_types

Creates, updates, deletes, gets or lists an adjustment_types resource.

Overview

Nameadjustment_types
TypeResource
Idaws.autoscaling.adjustment_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
adjustment_typestringThe policy adjustment type. The valid values are ChangeInCapacity, ExactCapacity, and PercentChangeInCapacity.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_adjustment_typesselectregionDescribes 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;