Skip to main content

voice_connector_termination_healths

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

Overview

Namevoice_connector_termination_healths
TypeResource
Idaws.chime_sdk_voice.voice_connector_termination_healths

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
sourcestringThe source IP address.
timestampstring (date-time)The timestamp, in ISO 8601 format.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_voice_connector_termination_healthselectvoice_connector_id, regionRetrieves 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
voice_connector_idstringThe Voice Connector ID.

SELECT examples

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
;