interface InsightsConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.XRay.CfnGroup.InsightsConfigurationProperty | 
|  Java | software.amazon.awscdk.services.xray.CfnGroup.InsightsConfigurationProperty | 
|  Python | aws_cdk.aws_xray.CfnGroup.InsightsConfigurationProperty | 
|  TypeScript | @aws-cdk/aws-xray»CfnGroup»InsightsConfigurationProperty | 
The structure containing configurations related to insights.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as xray from '@aws-cdk/aws-xray';
const insightsConfigurationProperty: xray.CfnGroup.InsightsConfigurationProperty = {
  insightsEnabled: false,
  notificationsEnabled: false,
};
Properties
| Name | Type | Description | 
|---|---|---|
| insights | boolean | IResolvable | Set the InsightsEnabled value to true to enable insights or false to disable insights. | 
| notifications | boolean | IResolvable | Set the NotificationsEnabled value to true to enable insights notifications. | 
insightsEnabled?
Type:
boolean | IResolvable
(optional)
Set the InsightsEnabled value to true to enable insights or false to disable insights.
notificationsEnabled?
Type:
boolean | IResolvable
(optional)
Set the NotificationsEnabled value to true to enable insights notifications.
Notifications can only be enabled on a group with InsightsEnabled set to true.
