interface ContributorInsightsSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DynamoDB.Mixins.CfnGlobalTablePropsMixin.ContributorInsightsSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdynamodb/mixins#CfnGlobalTablePropsMixin_ContributorInsightsSpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.dynamodb.mixins.CfnGlobalTablePropsMixin.ContributorInsightsSpecificationProperty |
Python | aws_cdk.mixins_preview.aws_dynamodb.mixins.CfnGlobalTablePropsMixin.ContributorInsightsSpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_dynamodb » mixins » CfnGlobalTablePropsMixin » 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 { mixins as dynamodb_mixins } from '@aws-cdk/mixins-preview/aws-dynamodb';
const contributorInsightsSpecificationProperty: dynamodb_mixins.CfnGlobalTablePropsMixin.ContributorInsightsSpecificationProperty = {
enabled: false,
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
(optional)
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