Show / Hide Table of Contents

Class CfnGroupingConfiguration.GroupingAttributeDefinitionProperty

A structure that defines how services should be grouped based on specific attributes.

Inheritance
object
CfnGroupingConfiguration.GroupingAttributeDefinitionProperty
Implements
CfnGroupingConfiguration.IGroupingAttributeDefinitionProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.ApplicationSignals
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnGroupingConfiguration.GroupingAttributeDefinitionProperty : CfnGroupingConfiguration.IGroupingAttributeDefinitionProperty
Syntax (vb)
Public Class CfnGroupingConfiguration.GroupingAttributeDefinitionProperty Implements CfnGroupingConfiguration.IGroupingAttributeDefinitionProperty
Remarks

This includes the friendly name for the grouping, the source keys to derive values from, and an optional default value.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-groupingconfiguration-groupingattributedefinition.html

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.AWS.ApplicationSignals;

             var groupingAttributeDefinitionProperty = new GroupingAttributeDefinitionProperty {
                 GroupingName = "groupingName",
                 GroupingSourceKeys = new [] { "groupingSourceKeys" },

                 // the properties below are optional
                 DefaultGroupingValue = "defaultGroupingValue"
             };

Synopsis

Constructors

GroupingAttributeDefinitionProperty()

A structure that defines how services should be grouped based on specific attributes.

Properties

DefaultGroupingValue

The default value to use for this grouping attribute when no value can be derived from the source keys.

GroupingName

The friendly name for this grouping attribute, such as BusinessUnit or Environment .

GroupingSourceKeys

An array of source keys used to derive the grouping attribute value from telemetry data, AWS tags, or other sources.

Constructors

GroupingAttributeDefinitionProperty()

A structure that defines how services should be grouped based on specific attributes.

public GroupingAttributeDefinitionProperty()
Remarks

This includes the friendly name for the grouping, the source keys to derive values from, and an optional default value.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-groupingconfiguration-groupingattributedefinition.html

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.AWS.ApplicationSignals;

             var groupingAttributeDefinitionProperty = new GroupingAttributeDefinitionProperty {
                 GroupingName = "groupingName",
                 GroupingSourceKeys = new [] { "groupingSourceKeys" },

                 // the properties below are optional
                 DefaultGroupingValue = "defaultGroupingValue"
             };

Properties

DefaultGroupingValue

The default value to use for this grouping attribute when no value can be derived from the source keys.

public string? DefaultGroupingValue { get; set; }
Property Value

string

Remarks

This ensures all services have a grouping value even if the source data is missing.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-groupingconfiguration-groupingattributedefinition.html#cfn-applicationsignals-groupingconfiguration-groupingattributedefinition-defaultgroupingvalue

GroupingName

The friendly name for this grouping attribute, such as BusinessUnit or Environment .

public string GroupingName { get; set; }
Property Value

string

Remarks

This name is used to identify the grouping in the console and APIs.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-groupingconfiguration-groupingattributedefinition.html#cfn-applicationsignals-groupingconfiguration-groupingattributedefinition-groupingname

GroupingSourceKeys

An array of source keys used to derive the grouping attribute value from telemetry data, AWS tags, or other sources.

public string[] GroupingSourceKeys { get; set; }
Property Value

string[]

Remarks

For example, ["business_unit", "team"] would look for values in those fields.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-groupingconfiguration-groupingattributedefinition.html#cfn-applicationsignals-groupingconfiguration-groupingattributedefinition-groupingsourcekeys

Implements

CfnGroupingConfiguration.IGroupingAttributeDefinitionProperty
Back to top Generated by DocFX