DynamoDB / Client / disable_kinesis_streaming_destination

disable_kinesis_streaming_destination#

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

Request Syntax

response = client.disable_kinesis_streaming_destination(
    TableName='string',
    StreamArn='string',
    EnableKinesisStreamingConfiguration={
        'ApproximateCreationDateTimePrecision': 'MILLISECOND'|'MICROSECOND'
    }
)
Parameters:
  • TableName (string) –

    [REQUIRED]

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

  • StreamArn (string) –

    [REQUIRED]

    The ARN for a Kinesis data stream.

  • EnableKinesisStreamingConfiguration (dict) –

    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.

Return type:

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

  • DynamoDB.Client.exceptions.InternalServerError

  • DynamoDB.Client.exceptions.LimitExceededException

  • DynamoDB.Client.exceptions.ResourceInUseException

  • DynamoDB.Client.exceptions.ResourceNotFoundException