interface ContributorInsightsSpecificationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.DynamoDB.CfnGlobalTable.ContributorInsightsSpecificationProperty | 
  Java | software.amazon.awscdk.services.dynamodb.CfnGlobalTable.ContributorInsightsSpecificationProperty | 
  Python | aws_cdk.aws_dynamodb.CfnGlobalTable.ContributorInsightsSpecificationProperty | 
  TypeScript  | @aws-cdk/aws-dynamodb » CfnGlobalTable » ContributorInsightsSpecificationProperty | 
Configures contributor insights settings for a replica or one of its indexes.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as dynamodb from '@aws-cdk/aws-dynamodb';
const contributorInsightsSpecificationProperty: dynamodb.CfnGlobalTable.ContributorInsightsSpecificationProperty = {
  enabled: false,
};
Properties
| Name | Type | Description | 
|---|---|---|
| enabled | boolean | IResolvable | Indicates whether CloudWatch Contributor Insights are to be enabled (true) or disabled (false). | 
enabled
Type:
boolean | IResolvable
Indicates whether CloudWatch Contributor Insights are to be enabled (true) or disabled (false).

 .NET
 Java
 Python
 TypeScript