campaign_state_batches
Creates, updates, deletes, gets or lists a campaign_state_batches resource.
Overview
| Name | campaign_state_batches |
| Type | Resource |
| Id | aws.connectcampaignsv2.campaign_state_batches |
Fields
The following fields are returned by SELECT queries:
- get_campaign_state_batch
| Name | Datatype | Description |
|---|---|---|
failed_requests | array | List of failed requests of campaign state |
successful_requests | array | List of successful response of campaign state |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_campaign_state_batch | select | region | Get state of campaigns for the specified Amazon Connect 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
- get_campaign_state_batch
Get state of campaigns for the specified Amazon Connect account.
SELECT
failed_requests,
successful_requests
FROM aws.connectcampaignsv2.campaign_state_batches
WHERE region = '{{ region }}' -- required
;