Describe Contributor Insights
| dynamodb_describe_contributor_insights | R Documentation |
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¶
Arguments¶
TableName[required] The name of the table to describe. You can also provide the Amazon Resource Name (ARN) of the table in this parameter.
IndexNameThe name of the global secondary index to describe, if applicable.
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"
)
)