Kinesis / Client / delete_stream
delete_stream#
- Kinesis.Client.delete_stream(**kwargs)#
- 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.- Note- When invoking this API, it is recommended you use the - StreamARNinput parameter rather than the- StreamNameinput parameter.- If the stream is in the - ACTIVEstate, you can delete it. After a- DeleteStreamrequest, the specified stream is in the- DELETINGstate 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 - DELETINGstate 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. - See also: AWS API Documentation - Request Syntax- response = client.delete_stream( StreamName='string', EnforceConsumerDeletion=True|False, StreamARN='string' ) - Parameters:
- StreamName (string) – The name of the stream to delete. 
- EnforceConsumerDeletion (boolean) – If this parameter is unset ( - null) or if you set it to- false, and the stream has registered consumers, the call to- DeleteStreamfails with a- ResourceInUseException.
- StreamARN (string) – The ARN of the stream. 
 
- Returns:
- None 
 - Exceptions- Kinesis.Client.exceptions.ResourceNotFoundException
- Kinesis.Client.exceptions.LimitExceededException
- Kinesis.Client.exceptions.ResourceInUseException
- Kinesis.Client.exceptions.InvalidArgumentException
- Kinesis.Client.exceptions.AccessDeniedException