Skip to main content

meeting_dial_outs

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

Overview

Namemeeting_dial_outs
TypeResource
Idaws.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:

NameAccessible byRequired ParamsOptional ParamsDescription
create_meeting_dial_outinsertmeeting_id, region, FromPhoneNumber, ToPhoneNumber, JoinTokenUses 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.

NameDatatypeDescription
meeting_idstringThe Amazon Chime SDK meeting ID.
regionstringAWS region (default: us-east-1)

INSERT examples

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
;