delivery_channel_status
Creates, updates, deletes, gets or lists a delivery_channel_status resource.
Overview
| Name | delivery_channel_status |
| Type | Resource |
| Id | aws.config.delivery_channel_status |
Fields
The following fields are returned by SELECT queries:
- describe_delivery_channel_status
| Name | Datatype | Description |
|---|---|---|
delivery_channels_status | array | A list that contains the status of a specified delivery channel. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_delivery_channel_status | select | region | Returns the current status of the specified delivery channel. If a delivery channel is not specified, this operation returns the current status of all delivery channels associated with the account. Currently, you can specify only one delivery channel per region in your account. |
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_delivery_channel_status
Returns the current status of the specified delivery channel. If a delivery channel is not specified, this operation returns the current status of all delivery channels associated with the account. Currently, you can specify only one delivery channel per region in your account.
SELECT
delivery_channels_status
FROM aws.config.delivery_channel_status
WHERE region = '{{ region }}' -- required
;