interface InsightsConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.XRay.Mixins.CfnGroupPropsMixin.InsightsConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsxray/mixins#CfnGroupPropsMixin_InsightsConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.xray.mixins.CfnGroupPropsMixin.InsightsConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_xray.mixins.CfnGroupPropsMixin.InsightsConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_xray » mixins » CfnGroupPropsMixin » 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 { mixins as xray_mixins } from '@aws-cdk/mixins-preview/aws-xray';
const insightsConfigurationProperty: xray_mixins.CfnGroupPropsMixin.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.

.NET
Go
Java
Python
TypeScript