Skip to content

/AWS1/IF_MEM=>DESCRMULTIREGIONPARAMGROUPS()

About DescribeMultiRegionParameterGroups

Returns a list of multi-region parameter groups.

Method Signature

METHODS /AWS1/IF_MEM~DESCRMULTIREGIONPARAMGROUPS
  IMPORTING
    !IV_MULTIREGIONPARAMGROUPNAME TYPE /AWS1/MEMSTRING OPTIONAL
    !IV_MAXRESULTS TYPE /AWS1/MEMINTEGEROPTIONAL OPTIONAL
    !IV_NEXTTOKEN TYPE /AWS1/MEMSTRING OPTIONAL
  RETURNING
    VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_memdscmultirgnprmgr01
  RAISING
    /AWS1/CX_MEMINVPRMCOMBINATIO00
    /AWS1/CX_MEMINVPARAMVALUEEX
    /AWS1/CX_MEMMULTIREGIONPRMGR00
    /AWS1/CX_MEMSVCLNKROLENOTFND00
    /AWS1/CX_MEMCLIENTEXC
    /AWS1/CX_MEMSERVEREXC
    /AWS1/CX_RT_TECHNICAL_GENERIC
    /AWS1/CX_RT_SERVICE_GENERIC.

IMPORTING

Optional arguments:

iv_multiregionparamgroupname TYPE /AWS1/MEMSTRING /AWS1/MEMSTRING

The request for information on a specific multi-region parameter group.

iv_maxresults TYPE /AWS1/MEMINTEGEROPTIONAL /AWS1/MEMINTEGEROPTIONAL

The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.

iv_nexttoken TYPE /AWS1/MEMSTRING /AWS1/MEMSTRING

An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.

RETURNING

oo_output TYPE REF TO /aws1/cl_memdscmultirgnprmgr01 /AWS1/CL_MEMDSCMULTIRGNPRMGR01

Domain /AWS1/RT_ACCOUNT_ID
Primitive Type NUMC

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.

DATA(lo_result) = lo_client->descrmultiregionparamgroups(
  iv_maxresults = 123
  iv_multiregionparamgroupname = |string|
  iv_nexttoken = |string|
).

This is an example of reading all possible response values

lo_result = lo_result.
IF lo_result IS NOT INITIAL.
  lv_string = lo_result->get_nexttoken( ).
  LOOP AT lo_result->get_multiregionparamgroups( ) into lo_row.
    lo_row_1 = lo_row.
    IF lo_row_1 IS NOT INITIAL.
      lv_string = lo_row_1->get_name( ).
      lv_string = lo_row_1->get_family( ).
      lv_string = lo_row_1->get_description( ).
      lv_string = lo_row_1->get_arn( ).
    ENDIF.
  ENDLOOP.
ENDIF.