scaling_process_types
Creates, updates, deletes, gets or lists a scaling_process_types resource.
Overview
| Name | scaling_process_types |
| Type | Resource |
| Id | aws.autoscaling.scaling_process_types |
Fields
The following fields are returned by SELECT queries:
- describe_scaling_process_types
| Name | Datatype | Description |
|---|---|---|
process_name | string | One of the following processes: Launch Terminate AddToLoadBalancer AlarmNotification AZRebalance HealthCheck InstanceRefresh ReplaceUnhealthy ScheduledActions |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_scaling_process_types | select | region | Describes the scaling process types for use with the ResumeProcesses and SuspendProcesses APIs. |
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_scaling_process_types
Describes the scaling process types for use with the ResumeProcesses and SuspendProcesses APIs.
SELECT
process_name
FROM aws.autoscaling.scaling_process_types
WHERE region = '{{ region }}' -- required
;