Interface CfnTablePropsMixin.ContributorInsightsSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTablePropsMixin.ContributorInsightsSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnTablePropsMixin
@Stability(Stable)
public static interface CfnTablePropsMixin.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.mixins.preview.services.dynamodb.mixins.*;
ContributorInsightsSpecificationProperty contributorInsightsSpecificationProperty = ContributorInsightsSpecificationProperty.builder()
.enabled(false)
.mode("mode")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnTablePropsMixin.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
@Stability(Stable) static CfnTablePropsMixin.ContributorInsightsSpecificationProperty.Builder builder()
-