/AWS1/IF_SSM=>RESUMESESSION()¶
About ResumeSession¶
Reconnects a session to a managed node after it has been disconnected. Connections can be resumed for disconnected sessions, but not terminated sessions.
This command is primarily for use by client machines to automatically reconnect during intermittent network issues. It isn't intended for any other use.
Method Signature¶
METHODS /AWS1/IF_SSM~RESUMESESSION
IMPORTING
!IV_SESSIONID TYPE /AWS1/SSMSESSIONID OPTIONAL
RETURNING
VALUE(OO_OUTPUT) TYPE REF TO /aws1/cl_ssmresumesessionrsp
RAISING
/AWS1/CX_SSMDOESNOTEXISTEX
/AWS1/CX_SSMINTERNALSERVERERR
/AWS1/CX_SSMCLIENTEXC
/AWS1/CX_SSMSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Required arguments:¶
iv_sessionid TYPE /AWS1/SSMSESSIONID /AWS1/SSMSESSIONID¶
The ID of the disconnected session to resume.
RETURNING¶
oo_output TYPE REF TO /aws1/cl_ssmresumesessionrsp /AWS1/CL_SSMRESUMESESSIONRSP¶
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->resumesession( |string| ).
This is an example of reading all possible response values
lo_result = lo_result.
IF lo_result IS NOT INITIAL.
lv_sessionid = lo_result->get_sessionid( ).
lv_tokenvalue = lo_result->get_tokenvalue( ).
lv_streamurl = lo_result->get_streamurl( ).
ENDIF.