interface ContributorInsightsSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DynamoDB.CfnTablePropsMixin.ContributorInsightsSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdynamodb#CfnTablePropsMixin_ContributorInsightsSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.dynamodb.CfnTablePropsMixin.ContributorInsightsSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_dynamodb.CfnTablePropsMixin.ContributorInsightsSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_dynamodb » CfnTablePropsMixin » ContributorInsightsSpecificationProperty |
Configures contributor insights settings for a table 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/cfn-property-mixins';
const contributorInsightsSpecificationProperty: dynamodb.CfnTablePropsMixin.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 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 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 table.

.NET
Go
Java
Python
TypeScript