/AWS1/IF_CNT=>UPDATEAUTHENTICATIONPROFILE()
¶
About UpdateAuthenticationProfile¶
This API is in preview release for Amazon Connect and is subject to change. To request access to this API, contact Amazon Web Services Support.
Updates the selected authentication profile.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_authenticationprofileid
TYPE /AWS1/CNTAUTHNTCTNPROFILEID
/AWS1/CNTAUTHNTCTNPROFILEID
¶
A unique identifier for the authentication profile.
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_name
TYPE /AWS1/CNTAUTHNTCTNPROFILENAME
/AWS1/CNTAUTHNTCTNPROFILENAME
¶
The name for the authentication profile.
iv_description
TYPE /AWS1/CNTAUTHNTCTNPROFILEDESC
/AWS1/CNTAUTHNTCTNPROFILEDESC
¶
The description for the authentication profile.
it_allowedips
TYPE /AWS1/CL_CNTIPCIDRLIST_W=>TT_IPCIDRLIST
TT_IPCIDRLIST
¶
A list of IP address range strings that are allowed to access the instance. For more information on how to configure IP addresses, seeConfigure session timeouts in the Amazon Connect Administrator Guide.
it_blockedips
TYPE /AWS1/CL_CNTIPCIDRLIST_W=>TT_IPCIDRLIST
TT_IPCIDRLIST
¶
A list of IP address range strings that are blocked from accessing the instance. For more information on how to configure IP addresses, For more information on how to configure IP addresses, see Configure IP-based access control in the Amazon Connect Administrator Guide.
iv_periodicsessionduration
TYPE /AWS1/CNTACCESSTOKENDURATION
/AWS1/CNTACCESSTOKENDURATION
¶
The short lived session duration configuration for users logged in to Amazon Connect, in minutes. This value determines the maximum possible time before an agent is authenticated. For more information, For more information on how to configure IP addresses, see Configure session timeouts in the Amazon Connect Administrator Guide.
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_cnt~updateauthenticationprofile(
it_allowedips = VALUE /aws1/cl_cntipcidrlist_w=>tt_ipcidrlist(
( new /aws1/cl_cntipcidrlist_w( |string| ) )
)
it_blockedips = VALUE /aws1/cl_cntipcidrlist_w=>tt_ipcidrlist(
( new /aws1/cl_cntipcidrlist_w( |string| ) )
)
iv_authenticationprofileid = |string|
iv_description = |string|
iv_instanceid = |string|
iv_name = |string|
iv_periodicsessionduration = 123
).