/AWS1/IF_WSW=>CREATEDATAPROTECTIONSETTINGS()¶
About CreateDataProtectionSettings¶
Creates a data protection settings resource that can be associated with a web portal.
Method Signature¶
METHODS /AWS1/IF_WSW~CREATEDATAPROTECTIONSETTINGS
IMPORTING
!IV_DISPLAYNAME TYPE /AWS1/WSWDISPLAYNAMESAFE OPTIONAL
!IV_DESCRIPTION TYPE /AWS1/WSWDESCRIPTIONSAFE OPTIONAL
!IT_TAGS TYPE /AWS1/CL_WSWTAG=>TT_TAGLIST OPTIONAL
!IV_CUSTOMERMANAGEDKEY TYPE /AWS1/WSWKEYARN OPTIONAL
!IT_ADDITIONALENCCONTEXT TYPE /AWS1/CL_WSWENCCONTEXTMAP_W=>TT_ENCRYPTIONCONTEXTMAP OPTIONAL
!IO_INLINEREDACTIONCONF TYPE REF TO /AWS1/CL_WSWINLINEREDACTCONF OPTIONAL
!IV_CLIENTTOKEN TYPE /AWS1/WSWCLIENTTOKEN OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_wswcredataprotectio01
RAISING
/AWS1/CX_WSWACCESSDENIEDEX
/AWS1/CX_WSWCONFLICTEXCEPTION
/AWS1/CX_WSWINTERNALSERVEREX
/AWS1/CX_WSWRESOURCENOTFOUNDEX
/AWS1/CX_WSWSERVICEQUOTAEXCDEX
/AWS1/CX_WSWTHROTTLINGEX
/AWS1/CX_WSWVALIDATIONEX
/AWS1/CX_WSWCLIENTEXC
/AWS1/CX_WSWSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Optional arguments:¶
iv_displayname TYPE /AWS1/WSWDISPLAYNAMESAFE /AWS1/WSWDISPLAYNAMESAFE¶
The display name of the data protection settings.
iv_description TYPE /AWS1/WSWDESCRIPTIONSAFE /AWS1/WSWDESCRIPTIONSAFE¶
The description of the data protection settings.
it_tags TYPE /AWS1/CL_WSWTAG=>TT_TAGLIST TT_TAGLIST¶
The tags to add to the data protection settings resource. A tag is a key-value pair.
iv_customermanagedkey TYPE /AWS1/WSWKEYARN /AWS1/WSWKEYARN¶
The custom managed key of the data protection settings.
it_additionalenccontext TYPE /AWS1/CL_WSWENCCONTEXTMAP_W=>TT_ENCRYPTIONCONTEXTMAP TT_ENCRYPTIONCONTEXTMAP¶
Additional encryption context of the data protection settings.
io_inlineredactionconf TYPE REF TO /AWS1/CL_WSWINLINEREDACTCONF /AWS1/CL_WSWINLINEREDACTCONF¶
The inline redaction configuration of the data protection settings that will be applied to all sessions.
iv_clienttoken TYPE /AWS1/WSWCLIENTTOKEN /AWS1/WSWCLIENTTOKEN¶
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token returns the result from the original successful request.
If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_wswcredataprotectio01 /AWS1/CL_WSWCREDATAPROTECTIO01¶
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->createdataprotectionsettings(
io_inlineredactionconf = new /aws1/cl_wswinlineredactconf(
it_globalenforcedurls = VALUE /aws1/cl_wswglbinlineredactu00=>tt_globalinlineredactionurls(
( new /aws1/cl_wswglbinlineredactu00( |string| ) )
)
it_globalexempturls = VALUE /aws1/cl_wswglbinlineredactu00=>tt_globalinlineredactionurls(
( new /aws1/cl_wswglbinlineredactu00( |string| ) )
)
it_inlineredactionpatterns = VALUE /aws1/cl_wswinlineredactionpat=>tt_inlineredactionpatterns(
(
new /aws1/cl_wswinlineredactionpat(
io_custompattern = new /aws1/cl_wswcustompattern(
iv_keywordregex = |string|
iv_patterndescription = |string|
iv_patternname = |string|
iv_patternregex = |string|
)
io_redactionplaceholder = new /aws1/cl_wswredactplaceholder(
iv_redactionplaceholdertext = |string|
iv_redactionplaceholdertype = |string|
)
it_enforcedurls = VALUE /aws1/cl_wswinlineredacturls_w=>tt_inlineredactionurls(
( new /aws1/cl_wswinlineredacturls_w( |string| ) )
)
it_exempturls = VALUE /aws1/cl_wswinlineredacturls_w=>tt_inlineredactionurls(
( new /aws1/cl_wswinlineredacturls_w( |string| ) )
)
iv_builtinpatternid = |string|
iv_confidencelevel = 123
)
)
)
iv_globalconfidencelevel = 123
)
it_additionalenccontext = VALUE /aws1/cl_wswenccontextmap_w=>tt_encryptioncontextmap(
(
VALUE /aws1/cl_wswenccontextmap_w=>ts_encryptioncontextmap_maprow(
key = |string|
value = new /aws1/cl_wswenccontextmap_w( |string| )
)
)
)
it_tags = VALUE /aws1/cl_wswtag=>tt_taglist(
(
new /aws1/cl_wswtag(
iv_key = |string|
iv_value = |string|
)
)
)
iv_clienttoken = |string|
iv_customermanagedkey = |string|
iv_description = |string|
iv_displayname = |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_dataprotectionstgsarn( ).
ENDIF.