Skip to content

/AWS1/IF_IOX=>UPDATECONNECTORDESTINATION()

About UpdateConnectorDestination

Updates the properties of an existing connector destination.

Method Signature

METHODS /AWS1/IF_IOX~UPDATECONNECTORDESTINATION
  IMPORTING
    !IV_IDENTIFIER TYPE /AWS1/IOXCONNECTORDSTID OPTIONAL
    !IV_DESCRIPTION TYPE /AWS1/IOXCONNECTORDSTDESC OPTIONAL
    !IV_NAME TYPE /AWS1/IOXCONNECTORDSTNAME OPTIONAL
    !IV_AUTHTYPE TYPE /AWS1/IOXAUTHTYPE OPTIONAL
    !IO_AUTHCONFIG TYPE REF TO /AWS1/CL_IOXAUTHCONFIGUPDATE OPTIONAL
    !IO_SECRETSMANAGER TYPE REF TO /AWS1/CL_IOXSECRETSMANAGER OPTIONAL
  RAISING
    /AWS1/CX_IOXACCESSDENIEDEX
    /AWS1/CX_IOXINTERNALSERVEREX
    /AWS1/CX_IOXRESOURCENOTFOUNDEX
    /AWS1/CX_IOXTHROTTLINGEX
    /AWS1/CX_IOXVALIDATIONEX
    /AWS1/CX_IOXCLIENTEXC
    /AWS1/CX_IOXSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.

IMPORTING

Required arguments:

iv_identifier TYPE /AWS1/IOXCONNECTORDSTID /AWS1/IOXCONNECTORDSTID

The unique identifier of the connector destination to update.

Optional arguments:

iv_description TYPE /AWS1/IOXCONNECTORDSTDESC /AWS1/IOXCONNECTORDSTDESC

The new description to assign to the connector destination.

iv_name TYPE /AWS1/IOXCONNECTORDSTNAME /AWS1/IOXCONNECTORDSTNAME

The new display name to assign to the connector destination.

iv_authtype TYPE /AWS1/IOXAUTHTYPE /AWS1/IOXAUTHTYPE

The new authentication type to use for the connector destination.

io_authconfig TYPE REF TO /AWS1/CL_IOXAUTHCONFIGUPDATE /AWS1/CL_IOXAUTHCONFIGUPDATE

The updated authentication configuration details for the connector destination.

io_secretsmanager TYPE REF TO /AWS1/CL_IOXSECRETSMANAGER /AWS1/CL_IOXSECRETSMANAGER

The updated AWS Secrets Manager configuration for the connector destination.

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->updateconnectordestination(
  io_authconfig = new /aws1/cl_ioxauthconfigupdate(
    io_oauthupdate = new /aws1/cl_ioxoauthupdate(
      io_proactrefreshtokenrenewal = new /aws1/cl_ioxproactrefreshtok00(
        iv_daysbeforerenewal = 123
        iv_enabled = ABAP_TRUE
      )
      iv_oauthcompleteredirecturl = |string|
    )
  )
  io_secretsmanager = new /aws1/cl_ioxsecretsmanager(
    iv_arn = |string|
    iv_versionid = |string|
  )
  iv_authtype = |string|
  iv_description = |string|
  iv_identifier = |string|
  iv_name = |string|
).