voice_connector_termination_credentials
Creates, updates, deletes, gets or lists a voice_connector_termination_credentials resource.
Overview
| Name | voice_connector_termination_credentials |
| Type | Resource |
| Id | aws.chime_sdk_voice.voice_connector_termination_credentials |
Fields
The following fields are returned by SELECT queries:
- list_voice_connector_termination_credentials
| Name | Datatype | Description |
|---|---|---|
username | string | A list of user names. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_voice_connector_termination_credentials | select | voice_connector_id, region | Lists the SIP credentials for the specified Amazon Chime SDK Voice Connector. | |
put_voice_connector_termination_credentials | replace | voice_connector_id, region | Updates a Voice Connector's termination credentials. | |
delete_voice_connector_termination_credentials | delete | voice_connector_id, region | Deletes the specified SIP credentials used by your equipment to authenticate during call termination. |
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
- list_voice_connector_termination_credentials
Lists the SIP credentials for the specified Amazon Chime SDK Voice Connector.
SELECT
username
FROM aws.chime_sdk_voice.voice_connector_termination_credentials
WHERE voice_connector_id = '{{ voice_connector_id }}' -- required
AND region = '{{ region }}' -- required
;
REPLACE examples
- put_voice_connector_termination_credentials
Updates a Voice Connector's termination credentials.
REPLACE aws.chime_sdk_voice.voice_connector_termination_credentials
SET
Credentials = '{{ Credentials }}'
WHERE
voice_connector_id = '{{ voice_connector_id }}' --required
AND region = '{{ region }}' --required;
DELETE examples
- delete_voice_connector_termination_credentials
Deletes the specified SIP credentials used by your equipment to authenticate during call termination.
DELETE FROM aws.chime_sdk_voice.voice_connector_termination_credentials
WHERE voice_connector_id = '{{ voice_connector_id }}' --required
AND region = '{{ region }}' --required
;