/AWS1/IF_SLK=>DELETEDATALAKEORGCONF()¶
About DeleteDataLakeOrganizationConfiguration¶
Turns off automatic enablement of Amazon Security Lake for member accounts that are added to an organization in Organizations. Only the delegated Security Lake administrator for an organization can perform this operation. If the delegated Security Lake administrator performs this operation, new member accounts won't automatically contribute data to the data lake.
Method Signature¶
METHODS /AWS1/IF_SLK~DELETEDATALAKEORGCONF
IMPORTING
!IT_AUTOENABLENEWACCOUNT TYPE /AWS1/CL_SLKDATALAKEAUTOENBN00=>TT_DATALAKEAUTOENBNEWACCONFLST OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_slkdeldatalakeorgco01
RAISING
/AWS1/CX_SLKACCESSDENIEDEX
/AWS1/CX_SLKBADREQUESTEX
/AWS1/CX_SLKCONFLICTEXCEPTION
/AWS1/CX_SLKINTERNALSERVEREX
/AWS1/CX_SLKRESOURCENOTFOUNDEX
/AWS1/CX_SLKTHROTTLINGEX
/AWS1/CX_SLKCLIENTEXC
/AWS1/CX_SLKSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Optional arguments:¶
it_autoenablenewaccount TYPE /AWS1/CL_SLKDATALAKEAUTOENBN00=>TT_DATALAKEAUTOENBNEWACCONFLST TT_DATALAKEAUTOENBNEWACCONFLST¶
Turns off automatic enablement of Security Lake for member accounts that are added to an organization.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_slkdeldatalakeorgco01 /AWS1/CL_SLKDELDATALAKEORGCO01¶
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->deletedatalakeorgconf(
it_autoenablenewaccount = VALUE /aws1/cl_slkdatalakeautoenbn00=>tt_datalakeautoenbnewacconflst(
(
new /aws1/cl_slkdatalakeautoenbn00(
it_sources = VALUE /aws1/cl_slkawslogsrcresrc=>tt_awslogsourceresourcelist(
(
new /aws1/cl_slkawslogsrcresrc(
iv_sourcename = |string|
iv_sourceversion = |string|
)
)
)
iv_region = |string|
)
)
)
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
ENDIF.