Learn R Programming

paws.database (version 0.1.12)

dynamodb_describe_kinesis_streaming_destination: Returns information about the status of Kinesis streaming

Description

Returns information about the status of Kinesis streaming.

Usage

dynamodb_describe_kinesis_streaming_destination(TableName)

Value

A list with the following syntax:

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

Arguments

TableName

[required] The name of the table being described.

Request syntax

svc$describe_kinesis_streaming_destination(
  TableName = "string"
)