Learn R Programming

paws.database (version 0.1.12)

dynamodb_describe_contributor_insights: Returns information about contributor insights, for a given table or global secondary index

Description

Returns information about contributor insights, for a given table or global secondary index.

Usage

dynamodb_describe_contributor_insights(TableName, IndexName)

Value

A list with the following syntax:

list(
  TableName = "string",
  IndexName = "string",
  ContributorInsightsRuleList = list(
    "string"
  ),
  ContributorInsightsStatus = "ENABLING"|"ENABLED"|"DISABLING"|"DISABLED"|"FAILED",
  LastUpdateDateTime = as.POSIXct(
    "2015-01-01"
  ),
  FailureException = list(
    ExceptionName = "string",
    ExceptionDescription = "string"
  )
)

Arguments

TableName

[required] The name of the table to describe.

IndexName

The name of the global secondary index to describe, if applicable.

Request syntax

svc$describe_contributor_insights(
  TableName = "string",
  IndexName = "string"
)