Skip to content

/AWS1/IF_ACM=>UPDATEACMEENDPOINT()

About UpdateAcmeEndpoint

Updates the configuration of an existing ACME endpoint. You can change the authorization behavior, contact requirement, or certificate authority settings.

Method Signature

METHODS /AWS1/IF_ACM~UPDATEACMEENDPOINT
  IMPORTING
    !IV_ACMEENDPOINTARN TYPE /AWS1/ACMACMEENDPOINTARN OPTIONAL
    !IV_AUTHORIZATIONBEHAVIOR TYPE /AWS1/ACMACMEAUTHBEHAVIOR OPTIONAL
    !IV_CONTACT TYPE /AWS1/ACMACMECONTACT OPTIONAL
    !IO_CERTIFICATEAUTHORITY TYPE REF TO /AWS1/CL_ACMCERTAUTHORITY OPTIONAL
  RAISING
    /AWS1/CX_ACMACCESSDENIEDEX
    /AWS1/CX_ACMCONFLICTEXCEPTION
    /AWS1/CX_ACMINTERNALSERVEREX
    /AWS1/CX_ACMRESOURCENOTFOUNDEX
    /AWS1/CX_ACMTHROTTLINGEX
    /AWS1/CX_ACMVALIDATIONEX
    /AWS1/CX_ACMCLIENTEXC
    /AWS1/CX_ACMSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.

IMPORTING

Required arguments:

iv_acmeendpointarn TYPE /AWS1/ACMACMEENDPOINTARN /AWS1/ACMACMEENDPOINTARN

The Amazon Resource Name (ARN) of the ACME endpoint to update.

Optional arguments:

iv_authorizationbehavior TYPE /AWS1/ACMACMEAUTHBEHAVIOR /AWS1/ACMACMEAUTHBEHAVIOR

The updated authorization behavior.

iv_contact TYPE /AWS1/ACMACMECONTACT /AWS1/ACMACMECONTACT

The updated contact requirement.

io_certificateauthority TYPE REF TO /AWS1/CL_ACMCERTAUTHORITY /AWS1/CL_ACMCERTAUTHORITY

The updated certificate authority configuration.

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->updateacmeendpoint(
  io_certificateauthority = new /aws1/cl_acmcertauthority(
    io_publiccertauthority = new /aws1/cl_acmpubliccertauth(
      it_allowedkeyalgorithms = VALUE /aws1/cl_acmpublickeyalglist_w=>tt_publickeyalgorithmlist(
        ( new /aws1/cl_acmpublickeyalglist_w( |string| ) )
      )
    )
  )
  iv_acmeendpointarn = |string|
  iv_authorizationbehavior = |string|
  iv_contact = |string|
).