/AWS1/IF_BDT=>INVOKEDATAAUTOMATIONASYNC()¶
About InvokeDataAutomationAsync¶
Async API: Invoke data automation.
Method Signature¶
METHODS /AWS1/IF_BDT~INVOKEDATAAUTOMATIONASYNC
IMPORTING
!IV_CLIENTTOKEN TYPE /AWS1/BDTIDEMPOTENCYTOKEN OPTIONAL
!IO_INPUTCONFIGURATION TYPE REF TO /AWS1/CL_BDTINPUTCONFIGURATION OPTIONAL
!IO_OUTPUTCONFIGURATION TYPE REF TO /AWS1/CL_BDTOUTPUTCONF OPTIONAL
!IO_DATAAUTOMATIONCONF TYPE REF TO /AWS1/CL_BDTDATAAUTOMATIONCONF OPTIONAL
!IO_ENCRYPTIONCONFIGURATION TYPE REF TO /AWS1/CL_BDTENCRYPTIONCONF OPTIONAL
!IO_NOTIFICATIONCONFIGURATION TYPE REF TO /AWS1/CL_BDTNOTIFICATIONCONF OPTIONAL
!IT_BLUEPRINTS TYPE /AWS1/CL_BDTBLUEPRINT=>TT_BLUEPRINTLIST OPTIONAL
!IV_DATAAUTOMATIONPROFILEARN TYPE /AWS1/BDTDATAAUTOMATIONPFLARN OPTIONAL
!IT_TAGS TYPE /AWS1/CL_BDTTAG=>TT_TAGLIST OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_bdtinvdataautomatio01
RAISING
/AWS1/CX_BDTACCESSDENIEDEX
/AWS1/CX_BDTINTERNALSERVEREX
/AWS1/CX_BDTSERVICEQUOTAEXCDEX
/AWS1/CX_BDTTHROTTLINGEX
/AWS1/CX_BDTVALIDATIONEX
/AWS1/CX_BDTCLIENTEXC
/AWS1/CX_BDTSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
io_inputconfiguration TYPE REF TO /AWS1/CL_BDTINPUTCONFIGURATION /AWS1/CL_BDTINPUTCONFIGURATION¶
Input configuration.
io_outputconfiguration TYPE REF TO /AWS1/CL_BDTOUTPUTCONF /AWS1/CL_BDTOUTPUTCONF¶
Output configuration.
iv_dataautomationprofilearn TYPE /AWS1/BDTDATAAUTOMATIONPFLARN /AWS1/BDTDATAAUTOMATIONPFLARN¶
Data automation profile ARN
Optional arguments:¶
iv_clienttoken TYPE /AWS1/BDTIDEMPOTENCYTOKEN /AWS1/BDTIDEMPOTENCYTOKEN¶
Idempotency token.
io_dataautomationconf TYPE REF TO /AWS1/CL_BDTDATAAUTOMATIONCONF /AWS1/CL_BDTDATAAUTOMATIONCONF¶
Data automation configuration.
io_encryptionconfiguration TYPE REF TO /AWS1/CL_BDTENCRYPTIONCONF /AWS1/CL_BDTENCRYPTIONCONF¶
Encryption configuration.
io_notificationconfiguration TYPE REF TO /AWS1/CL_BDTNOTIFICATIONCONF /AWS1/CL_BDTNOTIFICATIONCONF¶
Notification configuration.
it_blueprints TYPE /AWS1/CL_BDTBLUEPRINT=>TT_BLUEPRINTLIST TT_BLUEPRINTLIST¶
Blueprint list.
it_tags TYPE /AWS1/CL_BDTTAG=>TT_TAGLIST TT_TAGLIST¶
List of tags.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_bdtinvdataautomatio01 /AWS1/CL_BDTINVDATAAUTOMATIO01¶
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->invokedataautomationasync(
io_dataautomationconf = new /aws1/cl_bdtdataautomationconf(
iv_dataautomationprojectarn = |string|
iv_stage = |string|
)
io_encryptionconfiguration = new /aws1/cl_bdtencryptionconf(
it_kmsencryptioncontext = VALUE /aws1/cl_bdtenccontextmap_w=>tt_encryptioncontextmap(
(
VALUE /aws1/cl_bdtenccontextmap_w=>ts_encryptioncontextmap_maprow(
key = |string|
value = new /aws1/cl_bdtenccontextmap_w( |string| )
)
)
)
iv_kmskeyid = |string|
)
io_inputconfiguration = new /aws1/cl_bdtinputconfiguration(
io_assetprocessingconf = new /aws1/cl_bdtassetprocingconf(
io_video = new /aws1/cl_bdtvideoastprocingc00(
io_segmentconfiguration = new /aws1/cl_bdtvideosegmentconf(
io_timestampsegment = new /aws1/cl_bdttimestampsegment(
iv_endtimemillis = 123
iv_starttimemillis = 123
)
)
)
)
iv_s3uri = |string|
)
io_notificationconfiguration = new /aws1/cl_bdtnotificationconf( new /aws1/cl_bdteventbridgeconf( ABAP_TRUE ) )
io_outputconfiguration = new /aws1/cl_bdtoutputconf( |string| )
it_blueprints = VALUE /aws1/cl_bdtblueprint=>tt_blueprintlist(
(
new /aws1/cl_bdtblueprint(
iv_blueprintarn = |string|
iv_stage = |string|
iv_version = |string|
)
)
)
it_tags = VALUE /aws1/cl_bdttag=>tt_taglist(
(
new /aws1/cl_bdttag(
iv_key = |string|
iv_value = |string|
)
)
)
iv_clienttoken = |string|
iv_dataautomationprofilearn = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_invocationarn = lo_result->get_invocationarn( ).
ENDIF.