Skip to content

/AWS1/IF_ACM=>UPDATEACMEDOMAINVALIDATION()

About UpdateAcmeDomainValidation

Updates the prevalidation configuration of an existing domain validation.

Method Signature

METHODS /AWS1/IF_ACM~UPDATEACMEDOMAINVALIDATION
  IMPORTING
    !IV_ACMEDOMAINVALIDATIONARN TYPE /AWS1/ACMACMEDOMAINVLDTNARN OPTIONAL
    !IO_PREVALIDATIONOPTIONS TYPE REF TO /AWS1/CL_ACMPREVLDTNOPTIONS 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_acmedomainvalidationarn TYPE /AWS1/ACMACMEDOMAINVLDTNARN /AWS1/ACMACMEDOMAINVLDTNARN

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

Optional arguments:

io_prevalidationoptions TYPE REF TO /AWS1/CL_ACMPREVLDTNOPTIONS /AWS1/CL_ACMPREVLDTNOPTIONS

The updated prevalidation options.

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->updateacmedomainvalidation(
  io_prevalidationoptions = new /aws1/cl_acmprevldtnoptions(
    io_dnsprevalidation = new /aws1/cl_acmdnsprevldtnoptions(
      io_domainscope = new /aws1/cl_acmdomainscope(
        iv_exactdomain = |string|
        iv_subdomains = |string|
        iv_wildcards = |string|
      )
      iv_hostedzoneid = |string|
    )
  )
  iv_acmedomainvalidationarn = |string|
).