Resource: aws_dynamodb_contributor_insights

Provides a DynamoDB contributor insights resource

Example Usage

resource "aws_dynamodb_contributor_insights" "test" {
  table_name = "ExampleTableName"
}

Argument Reference

This resource supports the following arguments:

Attribute Reference

This resource exports the following attributes in addition to the arguments above:

Import

In Terraform v1.5.0 and later, use an import block to import aws_dynamodb_contributor_insights using the format name:table_name/index:index_name, followed by the account number. For example:

import {
  to = aws_dynamodb_contributor_insights.test
  id = "name:ExampleTableName/index:ExampleIndexName/123456789012"
}

Using terraform import, import aws_dynamodb_contributor_insights using the format name:table_name/index:index_name, followed by the account number. For example:

% terraform import aws_dynamodb_contributor_insights.test name:ExampleTableName/index:ExampleIndexName/123456789012