rcs_agent_country_launch_status
Creates, updates, deletes, gets or lists a rcs_agent_country_launch_status resource.
Overview
| Name | rcs_agent_country_launch_status |
| Type | Resource |
| Id | aws.pinpoint_sms_voice_v2.rcs_agent_country_launch_status |
Fields
The following fields are returned by SELECT queries:
- describe_rcs_agent_country_launch_status
| Name | Datatype | Description |
|---|---|---|
carrier_status | array | An array of CarrierStatusInformation objects containing carrier-level launch status details. |
iso_country_code | string | The two-character code, in ISO 3166-1 alpha-2 format, for the country or region. (pattern: <code>[A-Z]{2}</code>) |
rcs_platform_id | string | The RCS platform identifier for this country. |
registration_id | string | The unique identifier of the registration associated with this country launch. |
status | string | The launch status for this country. (CREATED, PENDING, PARTIAL, ACTIVE, REJECTED) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_rcs_agent_country_launch_status | select | region | Retrieves the per-country launch status of an RCS agent, including carrier-level details for each country. |
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_rcs_agent_country_launch_status
Retrieves the per-country launch status of an RCS agent, including carrier-level details for each country.
SELECT
carrier_status,
iso_country_code,
rcs_platform_id,
registration_id,
status
FROM aws.pinpoint_sms_voice_v2.rcs_agent_country_launch_status
WHERE region = '{{ region }}' -- required
;