/AWS1/CL_CHM=>STARTMEETINGTRANSCRIPTION()
¶
About StartMeetingTranscription¶
Starts transcription for the specified meetingId
. For more information, refer to
Using Amazon Chime SDK live transcription
in the Amazon Chime SDK Developer Guide.
If you specify an invalid configuration, a TranscriptFailed
event will be sent with the contents of the BadRequestException
generated by Amazon Transcribe.
For more information on each parameter and which combinations are valid, refer to the
StartStreamTranscription API in the
Amazon Transcribe Developer Guide.
By default, Amazon Transcribe may use and store audio content processed by the service to develop and improve Amazon Web Services AI/ML services as further described in section 50 of the Amazon Web Services Service Terms. Using Amazon Transcribe may be subject to federal and state laws or regulations regarding the recording or interception of electronic communications. It is your and your end users’ responsibility to comply with all applicable laws regarding the recording, including properly notifying all participants in a recorded session or communication that the session or communication is being recorded, and obtaining all necessary consents. You can opt out from Amazon Web Services using audio content to develop and improve AWS AI/ML services by configuring an AI services opt out policy using Amazon Web Services Organizations.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_meetingid
TYPE /AWS1/CHMGUIDSTRING
/AWS1/CHMGUIDSTRING
¶
The unique ID of the meeting being transcribed.
io_transcriptionconf
TYPE REF TO /AWS1/CL_CHMTRANSCRIPTIONCONF
/AWS1/CL_CHMTRANSCRIPTIONCONF
¶
The configuration for the current transcription operation. Must contain
EngineTranscribeSettings
orEngineTranscribeMedicalSettings
.
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.
lo_client->/aws1/if_chm~startmeetingtranscription(
io_transcriptionconf = new /aws1/cl_chmtranscriptionconf(
io_enginetranscribemedical00 = new /aws1/cl_chmenginetranscribe01(
iv_contentidentificationtype = |string|
iv_languagecode = |string|
iv_region = |string|
iv_specialty = |string|
iv_type = |string|
iv_vocabularyname = |string|
)
io_enginetranscribesettings = new /aws1/cl_chmenginetranscribe00(
iv_contentidentificationtype = |string|
iv_contentredactiontype = |string|
iv_enbpartialrsltsstabiliz00 = ABAP_TRUE
iv_identifylanguage = ABAP_TRUE
iv_languagecode = |string|
iv_languagemodelname = |string|
iv_languageoptions = |string|
iv_partialresultsstability = |string|
iv_piientitytypes = |string|
iv_preferredlanguage = |string|
iv_region = |string|
iv_vocabularyfiltermethod = |string|
iv_vocabularyfiltername = |string|
iv_vocabularyfilternames = |string|
iv_vocabularyname = |string|
iv_vocabularynames = |string|
)
)
iv_meetingid = |string|
).