meeting_dial_outs
Creates, updates, deletes, gets or lists a meeting_dial_outs resource.
Overview
| Name | meeting_dial_outs |
| Type | Resource |
| Id | aws.chime.meeting_dial_outs |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
create_meeting_dial_out | insert | meeting_id, region, FromPhoneNumber, ToPhoneNumber, JoinToken | Uses the join token and call metadata in a meeting request (From number, To number, and so forth) to initiate an outbound call to a public switched telephone network (PSTN) and join them into a Chime meeting. Also ensures that the From number belongs to the customer. To play welcome audio or implement an interactive voice response (IVR), use the CreateSipMediaApplicationCall action with the corresponding SIP media application ID. This API is not available in a dedicated namespace. |
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 |
|---|---|---|
meeting_id | string | The Amazon Chime SDK meeting ID. |
region | string | AWS region (default: us-east-1) |
INSERT examples
- create_meeting_dial_out
- Manifest
Uses the join token and call metadata in a meeting request (From number, To number, and so forth) to initiate an outbound call to a public switched telephone network (PSTN) and join them into a Chime meeting. Also ensures that the From number belongs to the customer. To play welcome audio or implement an interactive voice response (IVR), use the CreateSipMediaApplicationCall action with the corresponding SIP media application ID. This API is not available in a dedicated namespace.
INSERT INTO aws.chime.meeting_dial_outs (
FromPhoneNumber,
ToPhoneNumber,
JoinToken,
meeting_id,
region
)
SELECT
'{{ FromPhoneNumber }}' /* required */,
'{{ ToPhoneNumber }}' /* required */,
'{{ JoinToken }}' /* required */,
'{{ meeting_id }}',
'{{ region }}'
RETURNING
transaction_id
;
# Description fields are for documentation purposes
- name: meeting_dial_outs
props:
- name: meeting_id
value: "{{ meeting_id }}"
description: Required parameter for the meeting_dial_outs resource.
- name: region
value: "{{ region }}"
description: Required parameter for the meeting_dial_outs resource.
- name: FromPhoneNumber
value: "{{ FromPhoneNumber }}"
- name: ToPhoneNumber
value: "{{ ToPhoneNumber }}"
- name: JoinToken
value: "{{ JoinToken }}"