Skip to main content

rcs_agent_country_launch_status

Creates, updates, deletes, gets or lists a rcs_agent_country_launch_status resource.

Overview

Namercs_agent_country_launch_status
TypeResource
Idaws.pinpoint_sms_voice_v2.rcs_agent_country_launch_status

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
carrier_statusarrayAn array of CarrierStatusInformation objects containing carrier-level launch status details.
iso_country_codestringThe two-character code, in ISO 3166-1 alpha-2 format, for the country or region. (pattern: <code>[A-Z]{2}</code>)
rcs_platform_idstringThe RCS platform identifier for this country.
registration_idstringThe unique identifier of the registration associated with this country launch.
statusstringThe launch status for this country. (CREATED, PENDING, PARTIAL, ACTIVE, REJECTED)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_rcs_agent_country_launch_statusselectregionRetrieves 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;