Module Values.CreateMeetingDialOutRequestSource

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.

Sourcetype nonrec t = {
  1. meetingId : GuidString.t;
    (*

    The Amazon Chime SDK meeting ID.

    *)
  2. fromPhoneNumber : E164PhoneNumber.t;
    (*

    Phone number used as the caller ID when the remote party receives a call.

    *)
  3. toPhoneNumber : E164PhoneNumber.t;
    (*

    Phone number called when inviting someone to a meeting.

    *)
  4. joinToken : JoinTokenString.t;
    (*

    Token used by the Amazon Chime SDK attendee. Call the CreateAttendee action to get a join token.

    *)
}
Sourceval context_ : string
Sourceval make : meetingId:GuidString.t -> fromPhoneNumber:E164PhoneNumber.t -> toPhoneNumber:E164PhoneNumber.t -> joinToken:JoinTokenString.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GuidString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t