Interface CfnTable.ContributorInsightsSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTable.ContributorInsightsSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnTable
@Stability(Stable)
public static interface CfnTable.ContributorInsightsSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.dynamodb.*;
ContributorInsightsSpecificationProperty contributorInsightsSpecificationProperty = ContributorInsightsSpecificationProperty.builder()
.enabled(false)
// the properties below are optional
.mode("mode")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTable.ContributorInsightsSpecificationPropertystatic final classAn implementation forCfnTable.ContributorInsightsSpecificationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnabled
Indicates whether CloudWatch Contributor Insights are to be enabled (true) or disabled (false).Returns union: either
BooleanorIResolvable- See Also:
-
getMode
Specifies the CloudWatch Contributor Insights mode for a table.Valid values are
ACCESSED_AND_THROTTLED_KEYS(tracks all access and throttled events) orTHROTTLED_KEYS(tracks only throttled events). This setting determines what type of contributor insights data is collected for the table.- See Also:
-
builder
-