/AWS1/IF_EC2=>CREATETGWPEERINGATTACHMENT()¶
About CreateTransitGatewayPeeringAttachment¶
Requests a transit gateway peering attachment between the specified transit gateway (requester) and a peer transit gateway (accepter). The peer transit gateway can be in your account or a different Amazon Web Services account.
After you create the peering attachment, the owner of the accepter transit gateway must accept the attachment request.
Method Signature¶
METHODS /AWS1/IF_EC2~CREATETGWPEERINGATTACHMENT
IMPORTING
!IV_TRANSITGATEWAYID TYPE /AWS1/EC2TRANSITGATEWAYID OPTIONAL
!IV_PEERTRANSITGATEWAYID TYPE /AWS1/EC2TRANSITASSOCIATIONG00 OPTIONAL
!IV_PEERACCOUNTID TYPE /AWS1/EC2STRING OPTIONAL
!IV_PEERREGION TYPE /AWS1/EC2STRING OPTIONAL
!IO_OPTIONS TYPE REF TO /AWS1/CL_EC2CRETGWPEERINGATT01 OPTIONAL
!IT_TAGSPECIFICATIONS TYPE /AWS1/CL_EC2TAGSPECIFICATION=>TT_TAGSPECIFICATIONLIST OPTIONAL
!IV_DRYRUN TYPE /AWS1/EC2BOOLEAN OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_ec2cretgwpeeringatt02
RAISING
/AWS1/CX_EC2CLIENTEXC
/AWS1/CX_EC2SERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_transitgatewayid TYPE /AWS1/EC2TRANSITGATEWAYID /AWS1/EC2TRANSITGATEWAYID¶
The ID of the transit gateway.
iv_peertransitgatewayid TYPE /AWS1/EC2TRANSITASSOCIATIONG00 /AWS1/EC2TRANSITASSOCIATIONG00¶
The ID of the peer transit gateway with which to create the peering attachment.
iv_peeraccountid TYPE /AWS1/EC2STRING /AWS1/EC2STRING¶
The ID of the Amazon Web Services account that owns the peer transit gateway.
iv_peerregion TYPE /AWS1/EC2STRING /AWS1/EC2STRING¶
The Region where the peer transit gateway is located.
Optional arguments:¶
io_options TYPE REF TO /AWS1/CL_EC2CRETGWPEERINGATT01 /AWS1/CL_EC2CRETGWPEERINGATT01¶
Requests a transit gateway peering attachment.
it_tagspecifications TYPE /AWS1/CL_EC2TAGSPECIFICATION=>TT_TAGSPECIFICATIONLIST TT_TAGSPECIFICATIONLIST¶
The tags to apply to the transit gateway peering attachment.
iv_dryrun TYPE /AWS1/EC2BOOLEAN /AWS1/EC2BOOLEAN¶
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is
DryRunOperation. Otherwise, it isUnauthorizedOperation.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_ec2cretgwpeeringatt02 /AWS1/CL_EC2CRETGWPEERINGATT02¶
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->createtgwpeeringattachment(
io_options = new /aws1/cl_ec2cretgwpeeringatt01( |string| )
it_tagspecifications = VALUE /aws1/cl_ec2tagspecification=>tt_tagspecificationlist(
(
new /aws1/cl_ec2tagspecification(
it_tags = VALUE /aws1/cl_ec2tag=>tt_taglist(
(
new /aws1/cl_ec2tag(
iv_key = |string|
iv_value = |string|
)
)
)
iv_resourcetype = |string|
)
)
)
iv_dryrun = ABAP_TRUE
iv_peeraccountid = |string|
iv_peerregion = |string|
iv_peertransitgatewayid = |string|
iv_transitgatewayid = |string|
).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lo_transitgatewaypeeringat = lo_result->get_tgwpeeringattachment( ).
IF lo_transitgatewaypeeringat IS NOT INITIAL.
lv_string = lo_transitgatewaypeeringat->get_tgwattachmentid( ).
lv_string = lo_transitgatewaypeeringat->get_acceptertgwattachmentid( ).
lo_peeringtgwinfo = lo_transitgatewaypeeringat->get_requestertgwinfo( ).
IF lo_peeringtgwinfo IS NOT INITIAL.
lv_string = lo_peeringtgwinfo->get_transitgatewayid( ).
lv_string = lo_peeringtgwinfo->get_corenetworkid( ).
lv_string = lo_peeringtgwinfo->get_ownerid( ).
lv_string = lo_peeringtgwinfo->get_region( ).
ENDIF.
lo_peeringtgwinfo = lo_transitgatewaypeeringat->get_acceptertgwinfo( ).
IF lo_peeringtgwinfo IS NOT INITIAL.
lv_string = lo_peeringtgwinfo->get_transitgatewayid( ).
lv_string = lo_peeringtgwinfo->get_corenetworkid( ).
lv_string = lo_peeringtgwinfo->get_ownerid( ).
lv_string = lo_peeringtgwinfo->get_region( ).
ENDIF.
lo_transitgatewaypeeringat_1 = lo_transitgatewaypeeringat->get_options( ).
IF lo_transitgatewaypeeringat_1 IS NOT INITIAL.
lv_dynamicroutingvalue = lo_transitgatewaypeeringat_1->get_dynamicrouting( ).
ENDIF.
lo_peeringattachmentstatus = lo_transitgatewaypeeringat->get_status( ).
IF lo_peeringattachmentstatus IS NOT INITIAL.
lv_string = lo_peeringattachmentstatus->get_code( ).
lv_string = lo_peeringattachmentstatus->get_message( ).
ENDIF.
lv_transitgatewayattachmen = lo_transitgatewaypeeringat->get_state( ).
lv_datetime = lo_transitgatewaypeeringat->get_creationtime( ).
LOOP AT lo_transitgatewaypeeringat->get_tags( ) into lo_row.
lo_row_1 = lo_row.
IF lo_row_1 IS NOT INITIAL.
lv_string = lo_row_1->get_key( ).
lv_string = lo_row_1->get_value( ).
ENDIF.
ENDLOOP.
ENDIF.
ENDIF.