interface ContributorInsightsSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DynamoDB.CfnGlobalTable.ContributorInsightsSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdynamodb#CfnGlobalTable_ContributorInsightsSpecificationProperty |
Java | software.amazon.awscdk.services.dynamodb.CfnGlobalTable.ContributorInsightsSpecificationProperty |
Python | aws_cdk.aws_dynamodb.CfnGlobalTable.ContributorInsightsSpecificationProperty |
TypeScript | aws-cdk-lib » 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 { aws_dynamodb as dynamodb } from 'aws-cdk-lib';
const contributorInsightsSpecificationProperty: dynamodb.CfnGlobalTable.ContributorInsightsSpecificationProperty = {
enabled: false,
// the properties below are optional
mode: 'mode',
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | IResolvable | Indicates whether CloudWatch Contributor Insights are to be enabled (true) or disabled (false). |
| mode? | string | Specifies the CloudWatch Contributor Insights mode for a global table. |
enabled
Type:
boolean | IResolvable
Indicates whether CloudWatch Contributor Insights are to be enabled (true) or disabled (false).
mode?
Type:
string
(optional)
Specifies the CloudWatch Contributor Insights mode for a global table.
Valid values are ACCESSED_AND_THROTTLED_KEYS (tracks all access and throttled events) or THROTTLED_KEYS (tracks only throttled events). This setting determines what type of contributor insights data is collected for the global table.

.NET
Go
Java
Python
TypeScript