/AWS1/IF_AFB=>CREATECONFERENCEPROVIDER()¶
About CreateConferenceProvider¶
Adds a new conference provider under the user's AWS account.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_conferenceprovidername TYPE /AWS1/AFBCONFERENCEPVDRNAME /AWS1/AFBCONFERENCEPVDRNAME¶
The name of the conference provider.
iv_conferenceprovidertype TYPE /AWS1/AFBCONFERENCEPVDRTYPE /AWS1/AFBCONFERENCEPVDRTYPE¶
Represents a type within a list of predefined types.
io_meetingsetting TYPE REF TO /AWS1/CL_AFBMEETINGSETTING /AWS1/CL_AFBMEETINGSETTING¶
The meeting settings for the conference provider.
Optional arguments:¶
io_ipdialin TYPE REF TO /AWS1/CL_AFBIPDIALIN /AWS1/CL_AFBIPDIALIN¶
The IP endpoint and protocol for calling.
io_pstndialin TYPE REF TO /AWS1/CL_AFBPSTNDIALIN /AWS1/CL_AFBPSTNDIALIN¶
The information for PSTN conferencing.
iv_clientrequesttoken TYPE /AWS1/AFBCLIENTREQUESTTOKEN /AWS1/AFBCLIENTREQUESTTOKEN¶
The request token of the client.
it_tags TYPE /AWS1/CL_AFBTAG=>TT_TAGLIST TT_TAGLIST¶
The tags to be added to the specified resource. Do not provide system tags.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_afbcreconferencepvd01 /AWS1/CL_AFBCRECONFERENCEPVD01¶
Domain /AWS1/RT_ACCOUNT_ID Primitive Type NUMC
Examples¶
Syntax Example¶
This is an example of the syntax for calling the method. It includes every possible argument and initializes every possible value. The data provided is not necessarily semantically accurate (for example the value "string" may be provided for something that is intended to be an instance ID, or in some cases two arguments may be mutually exclusive). The syntax shows the ABAP syntax for creating the various data structures.
DATA(lo_result) = lo_client->/aws1/if_afb~createconferenceprovider(
io_ipdialin = new /aws1/cl_afbipdialin(
iv_commsprotocol = |string|
iv_endpoint = |string|
)
io_meetingsetting = new /aws1/cl_afbmeetingsetting( |string| )
io_pstndialin = new /aws1/cl_afbpstndialin(
iv_countrycode = |string|
iv_oneclickiddelay = |string|
iv_oneclickpindelay = |string|
iv_phonenumber = |string|
)
it_tags = VALUE /aws1/cl_afbtag=>tt_taglist(
(
new /aws1/cl_afbtag(
iv_key = |string|
iv_value = |string|
)
)
)
iv_clientrequesttoken = |string|
iv_conferenceprovidername = |string|
iv_conferenceprovidertype = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_arn = lo_result->get_conferenceproviderarn( ).
ENDIF.