voice_connector_termination_healths
Creates, updates, deletes, gets or lists a voice_connector_termination_healths resource.
Overview
| Name | voice_connector_termination_healths |
| Type | Resource |
| Id | aws.chime_sdk_voice.voice_connector_termination_healths |
Fields
The following fields are returned by SELECT queries:
- get_voice_connector_termination_health
| Name | Datatype | Description |
|---|---|---|
source | string | The source IP address. |
timestamp | string (date-time) | The timestamp, in ISO 8601 format. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_voice_connector_termination_health | select | voice_connector_id, region | Retrieves information about the last time a SIP OPTIONS ping was received from your SIP infrastructure for the specified Amazon Chime SDK Voice Connector. |
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) |
voice_connector_id | string | The Voice Connector ID. |
SELECT examples
- get_voice_connector_termination_health
Retrieves information about the last time a SIP OPTIONS ping was received from your SIP infrastructure for the specified Amazon Chime SDK Voice Connector.
SELECT
source,
timestamp
FROM aws.chime_sdk_voice.voice_connector_termination_healths
WHERE voice_connector_id = '{{ voice_connector_id }}' -- required
AND region = '{{ region }}' -- required
;