/AWS1/IF_KNS=>DELETESTREAM()¶
About DeleteStream¶
Deletes a Kinesis data stream and all its shards and data. You must shut down any
applications that are operating on the stream before you delete the stream. If an
application attempts to operate on a deleted stream, it receives the exception
ResourceNotFoundException.
When invoking this API, you must use either the StreamARN or the
StreamName parameter, or both. It is recommended that you use the
StreamARN input parameter when you invoke this API.
If the stream is in the ACTIVE state, you can delete it. After a
DeleteStream request, the specified stream is in the
DELETING state until Kinesis Data Streams completes the
deletion.
Note: Kinesis Data Streams might continue to accept
data read and write operations, such as PutRecord, PutRecords, and GetRecords, on a stream in the
DELETING state until the stream deletion is complete.
When you delete a stream, any shards in that stream are also deleted, and any tags are dissociated from the stream.
You can use the DescribeStreamSummary operation to check the state
of the stream, which is returned in StreamStatus.
DeleteStream has a limit of five transactions per second per account.
Method Signature¶
METHODS /AWS1/IF_KNS~DELETESTREAM
IMPORTING
!IV_STREAMNAME TYPE /AWS1/KNSSTREAMNAME OPTIONAL
!IV_ENFORCECONSUMERDELETION TYPE /AWS1/KNSBOOLEANOBJECT OPTIONAL
!IV_STREAMARN TYPE /AWS1/KNSSTREAMARN OPTIONAL
RAISING
/AWS1/CX_KNSACCESSDENIEDEX
/AWS1/CX_KNSINVALIDARGUMENTEX
/AWS1/CX_KNSLIMITEXCEEDEDEX
/AWS1/CX_KNSRESOURCEINUSEEX
/AWS1/CX_KNSRESOURCENOTFOUNDEX
/AWS1/CX_KNSCLIENTEXC
/AWS1/CX_KNSSERVEREXC
/AWS1/CX_RT_TECHNICAL_GENERIC
/AWS1/CX_RT_SERVICE_GENERIC.
IMPORTING¶
Optional arguments:¶
iv_streamname TYPE /AWS1/KNSSTREAMNAME /AWS1/KNSSTREAMNAME¶
The name of the stream to delete.
iv_enforceconsumerdeletion TYPE /AWS1/KNSBOOLEANOBJECT /AWS1/KNSBOOLEANOBJECT¶
If this parameter is unset (
null) or if you set it tofalse, and the stream has registered consumers, the call toDeleteStreamfails with aResourceInUseException.
iv_streamarn TYPE /AWS1/KNSSTREAMARN /AWS1/KNSSTREAMARN¶
The ARN of the stream.
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->deletestream(
iv_enforceconsumerdeletion = ABAP_TRUE
iv_streamarn = |string|
iv_streamname = |string|
).