Skip to content

Enable Kinesis Streaming Destination

dynamodb_enable_kinesis_streaming_destination R Documentation

Starts table data replication to the specified Kinesis data stream at a timestamp chosen during the enable workflow

Description

Starts table data replication to the specified Kinesis data stream at a timestamp chosen during the enable workflow. If this operation doesn't return results immediately, use DescribeKinesisStreamingDestination to check if streaming to the Kinesis data stream is ACTIVE.

Usage

dynamodb_enable_kinesis_streaming_destination(TableName, StreamArn,
  EnableKinesisStreamingConfiguration)

Arguments

TableName

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

StreamArn

[required] The ARN for a Kinesis data stream.

EnableKinesisStreamingConfiguration

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

Value

A list with the following syntax:

list(
  TableName = "string",
  StreamArn = "string",
  DestinationStatus = "ENABLING"|"ACTIVE"|"DISABLING"|"DISABLED"|"ENABLE_FAILED"|"UPDATING",
  EnableKinesisStreamingConfiguration = list(
    ApproximateCreationDateTimePrecision = "MILLISECOND"|"MICROSECOND"
  )
)

Request syntax

svc$enable_kinesis_streaming_destination(
  TableName = "string",
  StreamArn = "string",
  EnableKinesisStreamingConfiguration = list(
    ApproximateCreationDateTimePrecision = "MILLISECOND"|"MICROSECOND"
  )
)