/AWS1/IF_R53=>LISTVPCASSOCIATIONAUTHS()¶
About ListVPCAssociationAuthorizations¶
Gets a list of the VPCs that were created by other accounts and that can be associated
with a specified hosted zone because you've submitted one or more
CreateVPCAssociationAuthorization requests.
The response includes a VPCs element with a VPC child
element for each VPC that can be associated with the hosted zone.
Method Signature¶
METHODS /AWS1/IF_R53~LISTVPCASSOCIATIONAUTHS
IMPORTING
!IV_HOSTEDZONEID TYPE /AWS1/R53RESOURCEID OPTIONAL
!IV_NEXTTOKEN TYPE /AWS1/R53PAGINATIONTOKEN OPTIONAL
!IV_MAXRESULTS TYPE /AWS1/R53INTEGER OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_r53lstvpcassociatio01
RAISING
/AWS1/CX_R53INVALIDINPUT
/AWS1/CX_R53INVPAGINATIONTOKEN
/AWS1/CX_R53NOSUCHHOSTEDZONE
/AWS1/CX_R53CLIENTEXC
/AWS1/CX_R53SERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_hostedzoneid TYPE /AWS1/R53RESOURCEID /AWS1/R53RESOURCEID¶
The ID of the hosted zone for which you want a list of VPCs that can be associated with the hosted zone.
Optional arguments:¶
iv_nexttoken TYPE /AWS1/R53PAGINATIONTOKEN /AWS1/R53PAGINATIONTOKEN¶
Optional: If a response includes a
NextTokenelement, there are more VPCs that can be associated with the specified hosted zone. To get the next page of results, submit another request, and include the value ofNextTokenfrom the response in thenexttokenparameter in anotherListVPCAssociationAuthorizationsrequest.
iv_maxresults TYPE /AWS1/R53INTEGER /AWS1/R53INTEGER¶
Optional: An integer that specifies the maximum number of VPCs that you want Amazon Route 53 to return. If you don't specify a value for
MaxResults, Route 53 returns up to 50 VPCs per page.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_r53lstvpcassociatio01 /AWS1/CL_R53LSTVPCASSOCIATIO01¶
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->listvpcassociationauths(
iv_hostedzoneid = |string|
iv_maxresults = 123
iv_nexttoken = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_resourceid = lo_result->get_hostedzoneid( ).
lv_paginationtoken = lo_result->get_nexttoken( ).
LOOP AT lo_result->get_vpcs( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_vpcregion = lo_row_1->get_vpcregion( ).
lv_vpcid = lo_row_1->get_vpcid( ).
ENDIF.
ENDLOOP.
ENDIF.