:doc:`KinesisVideo <../../kinesisvideo>` / Client / delete_stream

*************
delete_stream
*************



.. py:method:: KinesisVideo.Client.delete_stream(**kwargs)

  

  Deletes a Kinesis video stream and the data contained in the stream.

   

  This method marks the stream for deletion, and makes the data in the stream inaccessible immediately.

   

  

   

  To ensure that you have the latest version of the stream before deleting it, you can specify the stream version. Kinesis Video Streams assigns a version to each stream. When you update a stream, Kinesis Video Streams assigns a new version number. To get the latest stream version, use the ``DescribeStream`` API.

   

  This operation requires permission for the ``KinesisVideo:DeleteStream`` action.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/DeleteStream>`_  


  **Request Syntax**
  ::

    response = client.delete_stream(
        StreamARN='string',
        CurrentVersion='string'
    )
    
  :type StreamARN: string
  :param StreamARN: **[REQUIRED]** 

    The Amazon Resource Name (ARN) of the stream that you want to delete.

    

  
  :type CurrentVersion: string
  :param CurrentVersion: 

    Optional: The version of the stream that you want to delete.

     

    Specify the version as a safeguard to ensure that your are deleting the correct stream. To get the stream version, use the ``DescribeStream`` API.

     

    If not specified, only the ``CreationTime`` is checked before deleting the stream.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {}
      
    **Response Structure**

    

    - *(dict) --* 
  
  **Exceptions**
  
  *   :py:class:`KinesisVideo.Client.exceptions.ClientLimitExceededException`

  
  *   :py:class:`KinesisVideo.Client.exceptions.InvalidArgumentException`

  
  *   :py:class:`KinesisVideo.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`KinesisVideo.Client.exceptions.NotAuthorizedException`

  
  *   :py:class:`KinesisVideo.Client.exceptions.VersionMismatchException`

  
  *   :py:class:`KinesisVideo.Client.exceptions.ResourceInUseException`

  