Show / Hide Table of Contents

Class CfnGroupingConfigurationProps

Properties for defining a CfnGroupingConfiguration.

Inheritance
object
CfnGroupingConfigurationProps
Implements
ICfnGroupingConfigurationProps
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 CfnGroupingConfigurationProps : ICfnGroupingConfigurationProps
Syntax (vb)
Public Class CfnGroupingConfigurationProps Implements ICfnGroupingConfigurationProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-groupingconfiguration.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 cfnGroupingConfigurationProps = new CfnGroupingConfigurationProps {
                 GroupingAttributeDefinitions = new [] { new GroupingAttributeDefinitionProperty {
                     GroupingName = "groupingName",
                     GroupingSourceKeys = new [] { "groupingSourceKeys" },

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

Synopsis

Constructors

CfnGroupingConfigurationProps()

Properties for defining a CfnGroupingConfiguration.

Properties

GroupingAttributeDefinitions

An array of grouping attribute definitions that specify how services should be grouped based on various attributes and source keys.

Constructors

CfnGroupingConfigurationProps()

Properties for defining a CfnGroupingConfiguration.

public CfnGroupingConfigurationProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-groupingconfiguration.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 cfnGroupingConfigurationProps = new CfnGroupingConfigurationProps {
                 GroupingAttributeDefinitions = new [] { new GroupingAttributeDefinitionProperty {
                     GroupingName = "groupingName",
                     GroupingSourceKeys = new [] { "groupingSourceKeys" },

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

Properties

GroupingAttributeDefinitions

An array of grouping attribute definitions that specify how services should be grouped based on various attributes and source keys.

public object GroupingAttributeDefinitions { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-groupingconfiguration.html#cfn-applicationsignals-groupingconfiguration-groupingattributedefinitions

Type union: either IResolvable or (either IResolvable or CfnGroupingConfiguration.IGroupingAttributeDefinitionProperty)[]

Implements

ICfnGroupingConfigurationProps
Back to top Generated by DocFX