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

*************************************
disable_kinesis_streaming_destination
*************************************



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

  

  Stops replication from the DynamoDB table to the Kinesis data stream. This is done without deleting either of the resources.

  

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


  **Request Syntax**
  ::

    response = client.disable_kinesis_streaming_destination(
        TableName='string',
        StreamArn='string',
        EnableKinesisStreamingConfiguration={
            'ApproximateCreationDateTimePrecision': 'MILLISECOND'|'MICROSECOND'
        }
    )
    
  :type TableName: string
  :param TableName: **[REQUIRED]** 

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

    

  
  :type StreamArn: string
  :param StreamArn: **[REQUIRED]** 

    The ARN for a Kinesis data stream.

    

  
  :type EnableKinesisStreamingConfiguration: dict
  :param EnableKinesisStreamingConfiguration: 

    The source for the Kinesis streaming information that is being enabled.

    

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

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

      

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

    
    ::

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

    

    - *(dict) --* 
      

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

        The name of the table being modified.

        
      

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

        The ARN for the specific Kinesis data stream.

        
      

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

        The current status of the replication.

        
      

      - **EnableKinesisStreamingConfiguration** *(dict) --* 

        The destination for the Kinesis streaming information that is being enabled.

        
        

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

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

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

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

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

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

  