/AWS1/IF_CNT=>UPDATESECURITYPROFILE()¶
About UpdateSecurityProfile¶
Updates a security profile.
For information about security profiles, see Security Profiles in the Amazon Connect Administrator Guide. For a mapping of the API name and user interface name of the security profile permissions, see List of security profile permissions.
Method Signature¶
METHODS /AWS1/IF_CNT~UPDATESECURITYPROFILE
IMPORTING
!IV_DESCRIPTION TYPE /AWS1/CNTSECURITYPROFILEDESC OPTIONAL
!IT_PERMISSIONS TYPE /AWS1/CL_CNTPERMISSIONSLIST_W=>TT_PERMISSIONSLIST OPTIONAL
!IV_SECURITYPROFILEID TYPE /AWS1/CNTSECURITYPROFILEID OPTIONAL
!IV_INSTANCEID TYPE /AWS1/CNTINSTANCEID OPTIONAL
!IT_ALLOWEDACCESSCONTROLTAGS TYPE /AWS1/CL_CNTALLOWEDACCCTLTGS_W=>TT_ALLOWEDACCESSCONTROLTAGS OPTIONAL
!IT_TAGRESTRICTEDRESOURCES TYPE /AWS1/CL_CNTTAGRESTRICTEDRES00=>TT_TAGRESTRICTEDRESOURCELIST OPTIONAL
!IT_APPLICATIONS TYPE /AWS1/CL_CNTAPPLICATION=>TT_APPLICATIONS OPTIONAL
!IT_HIERARCHYRESTRICTEDRESRCS TYPE /AWS1/CL_CNTHIERARCHYRESTRIC00=>TT_HIERARCHYRESTRICTEDRESRCLST OPTIONAL
!IV_ALWEDACCCTLHIERARCHYGRPID TYPE /AWS1/CNTHIERARCHYGROUPID OPTIONAL
RAISING
/AWS1/CX_CNTINTERNALSERVICEEX
/AWS1/CX_CNTINVALIDPARAMETEREX
/AWS1/CX_CNTINVALIDREQUESTEX
/AWS1/CX_CNTRESOURCENOTFOUNDEX
/AWS1/CX_CNTTHROTTLINGEX
/AWS1/CX_CNTCLIENTEXC
/AWS1/CX_CNTSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_securityprofileid TYPE /AWS1/CNTSECURITYPROFILEID /AWS1/CNTSECURITYPROFILEID¶
The identifier for the security profle.
iv_instanceid TYPE /AWS1/CNTINSTANCEID /AWS1/CNTINSTANCEID¶
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
Optional arguments:¶
iv_description TYPE /AWS1/CNTSECURITYPROFILEDESC /AWS1/CNTSECURITYPROFILEDESC¶
The description of the security profile.
it_permissions TYPE /AWS1/CL_CNTPERMISSIONSLIST_W=>TT_PERMISSIONSLIST TT_PERMISSIONSLIST¶
The permissions granted to a security profile. For a list of valid permissions, see List of security profile permissions.
it_allowedaccesscontroltags TYPE /AWS1/CL_CNTALLOWEDACCCTLTGS_W=>TT_ALLOWEDACCESSCONTROLTAGS TT_ALLOWEDACCESSCONTROLTAGS¶
The list of tags that a security profile uses to restrict access to resources in Amazon Connect.
it_tagrestrictedresources TYPE /AWS1/CL_CNTTAGRESTRICTEDRES00=>TT_TAGRESTRICTEDRESOURCELIST TT_TAGRESTRICTEDRESOURCELIST¶
The list of resources that a security profile applies tag restrictions to in Amazon Connect.
it_applications TYPE /AWS1/CL_CNTAPPLICATION=>TT_APPLICATIONS TT_APPLICATIONS¶
A list of the third-party application's metadata.
it_hierarchyrestrictedresrcs TYPE /AWS1/CL_CNTHIERARCHYRESTRIC00=>TT_HIERARCHYRESTRICTEDRESRCLST TT_HIERARCHYRESTRICTEDRESRCLST¶
The list of resources that a security profile applies hierarchy restrictions to in Amazon Connect. Following are acceptable ResourceNames:
User.
iv_alwedaccctlhierarchygrpid TYPE /AWS1/CNTHIERARCHYGROUPID /AWS1/CNTHIERARCHYGROUPID¶
The identifier of the hierarchy group that a security profile uses to restrict access to resources in Amazon Connect.
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->updatesecurityprofile(
it_allowedaccesscontroltags = VALUE /aws1/cl_cntallowedaccctltgs_w=>tt_allowedaccesscontroltags(
(
VALUE /aws1/cl_cntallowedaccctltgs_w=>ts_allowedaccessctltags_maprow(
key = |string|
value = new /aws1/cl_cntallowedaccctltgs_w( |string| )
)
)
)
it_applications = VALUE /aws1/cl_cntapplication=>tt_applications(
(
new /aws1/cl_cntapplication(
it_applicationpermissions = VALUE /aws1/cl_cntapplicationperms_w=>tt_applicationpermissions(
( new /aws1/cl_cntapplicationperms_w( |string| ) )
)
iv_namespace = |string|
)
)
)
it_hierarchyrestrictedresrcs = VALUE /aws1/cl_cnthierarchyrestric00=>tt_hierarchyrestrictedresrclst(
( new /aws1/cl_cnthierarchyrestric00( |string| ) )
)
it_permissions = VALUE /aws1/cl_cntpermissionslist_w=>tt_permissionslist(
( new /aws1/cl_cntpermissionslist_w( |string| ) )
)
it_tagrestrictedresources = VALUE /aws1/cl_cnttagrestrictedres00=>tt_tagrestrictedresourcelist(
( new /aws1/cl_cnttagrestrictedres00( |string| ) )
)
iv_alwedaccctlhierarchygrpid = |string|
iv_description = |string|
iv_instanceid = |string|
iv_securityprofileid = |string|
).