Skip to content

Update Contributor Insights

dynamodb_update_contributor_insights R Documentation

Updates the status for contributor insights for a specific table or index

Description

Updates the status for contributor insights for a specific table or index. CloudWatch Contributor Insights for DynamoDB graphs display the partition key and (if applicable) sort key of frequently accessed items and frequently throttled items in plaintext. If you require the use of Amazon Web Services Key Management Service (KMS) to encrypt this table’s partition key and sort key data with an Amazon Web Services managed key or customer managed key, you should not enable CloudWatch Contributor Insights for DynamoDB for this table.

Usage

dynamodb_update_contributor_insights(TableName, IndexName,
  ContributorInsightsAction)

Arguments

TableName

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

IndexName

The global secondary index name, if applicable.

ContributorInsightsAction

[required] Represents the contributor insights action.

Value

A list with the following syntax:

list(
  TableName = "string",
  IndexName = "string",
  ContributorInsightsStatus = "ENABLING"|"ENABLED"|"DISABLING"|"DISABLED"|"FAILED"
)

Request syntax

svc$update_contributor_insights(
  TableName = "string",
  IndexName = "string",
  ContributorInsightsAction = "ENABLE"|"DISABLE"
)