List Contributor Insights
| dynamodb_list_contributor_insights | R Documentation | 
Returns a list of ContributorInsightsSummary for a table and all its global secondary indexes¶
Description¶
Returns a list of ContributorInsightsSummary for a table and all its global secondary indexes.
Usage¶
dynamodb_list_contributor_insights(TableName, NextToken, MaxResults)
Arguments¶
| TableName | The name of the table. You can also provide the Amazon Resource Name (ARN) of the table in this parameter. | 
| NextToken | A token to for the desired page, if there is one. | 
| MaxResults | Maximum number of results to return per page. | 
Value¶
A list with the following syntax:
list(
  ContributorInsightsSummaries = list(
    list(
      TableName = "string",
      IndexName = "string",
      ContributorInsightsStatus = "ENABLING"|"ENABLED"|"DISABLING"|"DISABLED"|"FAILED"
    )
  ),
  NextToken = "string"
)
Request syntax¶
svc$list_contributor_insights(
  TableName = "string",
  NextToken = "string",
  MaxResults = 123
)