interface GroupBy
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DevOpsGuru.Events.DevOpsGuruInsightClosed.GroupBy |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdevopsguru/events#DevOpsGuruInsightClosed_GroupBy |
Java | software.amazon.awscdk.mixins.preview.services.devopsguru.events.DevOpsGuruInsightClosed.GroupBy |
Python | aws_cdk.mixins_preview.aws_devopsguru.events.DevOpsGuruInsightClosed.GroupBy |
TypeScript | @aws-cdk/mixins-preview ยป aws_devopsguru ยป events ยป DevOpsGuruInsightClosed ยป GroupBy |
Type definition for GroupBy.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as devopsguru_events } from '@aws-cdk/mixins-preview/aws-devopsguru';
const groupBy: devopsguru_events.DevOpsGuruInsightClosed.GroupBy = {
dimensions: ['dimensions'],
group: ['group'],
};
Properties
| Name | Type | Description |
|---|---|---|
| dimensions? | string[] | dimensions property. |
| group? | string[] | group property. |
dimensions?
Type:
string[]
(optional, default: Do not filter on this field)
dimensions property.
Specify an array of string values to match this event if the actual value of dimensions is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
group?
Type:
string[]
(optional, default: Do not filter on this field)
group property.
Specify an array of string values to match this event if the actual value of group is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript