ContributorInsights

class ContributorInsights : KotlinCustomResource

Provides a DynamoDB contributor insights resource

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.dynamodb.ContributorInsights;
import com.pulumi.aws.dynamodb.ContributorInsightsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new ContributorInsights("test", ContributorInsightsArgs.builder()
.tableName("ExampleTableName")
.build());
}
}

Import

aws_dynamodb_contributor_insights can be imported using the format name:table_name/index:index_name, followed by the account number, e.g.,

$ pulumi import aws:dynamodb/contributorInsights:ContributorInsights test name:ExampleTableName/index:ExampleIndexName/123456789012

Properties

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val indexName: Output<String>?

The global secondary index name

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val tableName: Output<String>

The name of the table to enable contributor insights

Link copied to clipboard
val urn: Output<String>