interface CfnGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.XRay.Mixins.CfnGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsxray/mixins#CfnGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.xray.mixins.CfnGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_xray.mixins.CfnGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_xray » mixins » CfnGroupMixinProps |
Properties for CfnGroupPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-xray-group.html
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 cfnGroupMixinProps: xray_mixins.CfnGroupMixinProps = {
filterExpression: 'filterExpression',
groupName: 'groupName',
insightsConfiguration: {
insightsEnabled: false,
notificationsEnabled: false,
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| filter | string | The filter expression defining the parameters to include traces. |
| group | string | The unique case-sensitive name of the group. |
| insights | IResolvable | Insights | The structure containing configurations related to insights. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
filterExpression?
Type:
string
(optional)
The filter expression defining the parameters to include traces.
groupName?
Type:
string
(optional)
The unique case-sensitive name of the group.
insightsConfiguration?
Type:
IResolvable | Insights
(optional)
The structure containing configurations related to insights.
- The InsightsEnabled boolean can be set to true to enable insights for the group or false to disable insights for the group.
- The NotificationsEnabled boolean can be set to true to enable insights notifications through Amazon EventBridge for the group.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript