Show / Hide Table of Contents

Class DevOpsGuruNewAnomalyAssociation.GroupBy

(experimental) Type definition for GroupBy.

Inheritance
object
DevOpsGuruNewAnomalyAssociation.GroupBy
Implements
DevOpsGuruNewAnomalyAssociation.IGroupBy
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.DevOpsGuru.Events
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class DevOpsGuruNewAnomalyAssociation.GroupBy : DevOpsGuruNewAnomalyAssociation.IGroupBy
Syntax (vb)
Public Class DevOpsGuruNewAnomalyAssociation.GroupBy Implements DevOpsGuruNewAnomalyAssociation.IGroupBy
Remarks

Stability: Experimental

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.DevOpsGuru.Events;

             var groupBy = new GroupBy {
                 Dimensions = new [] { "dimensions" },
                 Group = new [] { "group" }
             };

Synopsis

Constructors

GroupBy()

(experimental) Type definition for GroupBy.

Properties

Dimensions

(experimental) dimensions property.

Group

(experimental) group property.

Constructors

GroupBy()

(experimental) Type definition for GroupBy.

public GroupBy()
Remarks

Stability: Experimental

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.DevOpsGuru.Events;

             var groupBy = new GroupBy {
                 Dimensions = new [] { "dimensions" },
                 Group = new [] { "group" }
             };

Properties

Dimensions

(experimental) dimensions property.

public string[]? Dimensions { get; set; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

Group

(experimental) group property.

public string[]? Group { get; set; }
Property Value

string[]

Remarks

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.

Default: - Do not filter on this field

Stability: Experimental

Implements

DevOpsGuruNewAnomalyAssociation.IGroupBy
Back to top Generated by DocFX