Skip to content

Describe Kinesis Streaming Destination

dynamodb_describe_kinesis_streaming_destination R Documentation

Returns information about the status of Kinesis streaming

Description

Returns information about the status of Kinesis streaming.

Usage

dynamodb_describe_kinesis_streaming_destination(TableName)

Arguments

TableName

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

Value

A list with the following syntax:

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

Request syntax

svc$describe_kinesis_streaming_destination(
  TableName = "string"
)