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