:doc:`DynamoDB <../../dynamodb>` / Client / describe_kinesis_streaming_destination

**************************************
describe_kinesis_streaming_destination
**************************************



.. py:method:: DynamoDB.Client.describe_kinesis_streaming_destination(**kwargs)

  

  Returns information about the status of Kinesis streaming.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/DescribeKinesisStreamingDestination>`_  


  **Request Syntax**
  ::

    response = client.describe_kinesis_streaming_destination(
        TableName='string'
    )
    
  :type TableName: string
  :param TableName: **[REQUIRED]** 

    The name of the table being described. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.

    

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

    
    ::

      {
          'TableName': 'string',
          'KinesisDataStreamDestinations': [
              {
                  'StreamArn': 'string',
                  'DestinationStatus': 'ENABLING'|'ACTIVE'|'DISABLING'|'DISABLED'|'ENABLE_FAILED'|'UPDATING',
                  'DestinationStatusDescription': 'string',
                  'ApproximateCreationDateTimePrecision': 'MILLISECOND'|'MICROSECOND'
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **TableName** *(string) --* 

        The name of the table being described.

        
      

      - **KinesisDataStreamDestinations** *(list) --* 

        The list of replica structures for the table being described.

        
        

        - *(dict) --* 

          Describes a Kinesis data stream destination.

          
          

          - **StreamArn** *(string) --* 

            The ARN for a specific Kinesis data stream.

            
          

          - **DestinationStatus** *(string) --* 

            The current status of replication.

            
          

          - **DestinationStatusDescription** *(string) --* 

            The human-readable string that corresponds to the replica status.

            
          

          - **ApproximateCreationDateTimePrecision** *(string) --* 

            The precision of the Kinesis data stream timestamp. The values are either ``MILLISECOND`` or ``MICROSECOND``.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`DynamoDB.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`DynamoDB.Client.exceptions.InternalServerError`

  