auto_scaling_notification_types
Creates, updates, deletes, gets or lists an auto_scaling_notification_types resource.
Overview
| Name | auto_scaling_notification_types |
| Type | Resource |
| Id | aws.autoscaling.auto_scaling_notification_types |
Fields
The following fields are returned by SELECT queries:
- describe_auto_scaling_notification_types
| Name | Datatype | Description |
|---|---|---|
auto_scaling_notification_type | string | The notification types. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_auto_scaling_notification_types | select | region | Describes the notification types that are supported by Amazon EC2 Auto Scaling. |
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_auto_scaling_notification_types
Describes the notification types that are supported by Amazon EC2 Auto Scaling.
SELECT
auto_scaling_notification_type
FROM aws.autoscaling.auto_scaling_notification_types
WHERE region = '{{ region }}' -- required
;