/AWS1/CL_GMZ=>TERMINATESTREAMSESSION()
¶
About TerminateStreamSession¶
Permanently terminates an active stream session. When called, the stream session status changes to TERMINATING
. You can terminate a stream session in any status except ACTIVATING
. If the stream session is in ACTIVATING
status, an exception is thrown.
Method Signature¶
IMPORTING¶
Required arguments:¶
iv_identifier
TYPE /AWS1/GMZIDENTIFIER
/AWS1/GMZIDENTIFIER
¶
Amazon Resource Name (ARN) or ID that uniquely identifies the stream group resource. Example ARN:
arn:aws:gameliftstreams:us-west-2:111122223333:streamgroup/sg-1AB2C3De4
. Example ID:sg-1AB2C3De4
.The stream group that runs this stream session.
iv_streamsessionidentifier
TYPE /AWS1/GMZIDENTIFIER
/AWS1/GMZIDENTIFIER
¶
Amazon Resource Name (ARN) or ID that uniquely identifies the stream session resource. Example ARN:
arn:aws:gameliftstreams:us-west-2:111122223333:streamsession/sg-1AB2C3De4/ABC123def4567
. Example ID:ABC123def4567
.
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->/aws1/if_gmz~terminatestreamsession(
iv_identifier = |string|
iv_streamsessionidentifier = |string|
).