Show / Hide Table of Contents

Class CfnApplication.SubComponentTypeConfigurationProperty

The AWS::ApplicationInsights::Application SubComponentTypeConfiguration property type specifies the sub-component configurations for a component.

Inheritance
object
CfnApplication.SubComponentTypeConfigurationProperty
Implements
CfnApplication.ISubComponentTypeConfigurationProperty
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.ApplicationInsights
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplication.SubComponentTypeConfigurationProperty : CfnApplication.ISubComponentTypeConfigurationProperty
Syntax (vb)
Public Class CfnApplication.SubComponentTypeConfigurationProperty Implements CfnApplication.ISubComponentTypeConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationinsights-application-subcomponenttypeconfiguration.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.ApplicationInsights;

             var subComponentTypeConfigurationProperty = new SubComponentTypeConfigurationProperty {
                 SubComponentConfigurationDetails = new SubComponentConfigurationDetailsProperty {
                     AlarmMetrics = new [] { new AlarmMetricProperty {
                         AlarmMetricName = "alarmMetricName"
                     } },
                     Logs = new [] { new LogProperty {
                         LogType = "logType",

                         // the properties below are optional
                         Encoding = "encoding",
                         LogGroupName = "logGroupName",
                         LogPath = "logPath",
                         PatternSet = "patternSet"
                     } },
                     Processes = new [] { new ProcessProperty {
                         AlarmMetrics = new [] { new AlarmMetricProperty {
                             AlarmMetricName = "alarmMetricName"
                         } },
                         ProcessName = "processName"
                     } },
                     WindowsEvents = new [] { new WindowsEventProperty {
                         EventLevels = new [] { "eventLevels" },
                         EventName = "eventName",
                         LogGroupName = "logGroupName",

                         // the properties below are optional
                         PatternSet = "patternSet"
                     } }
                 },
                 SubComponentType = "subComponentType"
             };

Synopsis

Constructors

SubComponentTypeConfigurationProperty()

The AWS::ApplicationInsights::Application SubComponentTypeConfiguration property type specifies the sub-component configurations for a component.

Properties

SubComponentConfigurationDetails

The configuration settings of the sub-components.

SubComponentType

The sub-component type.

Constructors

SubComponentTypeConfigurationProperty()

The AWS::ApplicationInsights::Application SubComponentTypeConfiguration property type specifies the sub-component configurations for a component.

public SubComponentTypeConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationinsights-application-subcomponenttypeconfiguration.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.ApplicationInsights;

             var subComponentTypeConfigurationProperty = new SubComponentTypeConfigurationProperty {
                 SubComponentConfigurationDetails = new SubComponentConfigurationDetailsProperty {
                     AlarmMetrics = new [] { new AlarmMetricProperty {
                         AlarmMetricName = "alarmMetricName"
                     } },
                     Logs = new [] { new LogProperty {
                         LogType = "logType",

                         // the properties below are optional
                         Encoding = "encoding",
                         LogGroupName = "logGroupName",
                         LogPath = "logPath",
                         PatternSet = "patternSet"
                     } },
                     Processes = new [] { new ProcessProperty {
                         AlarmMetrics = new [] { new AlarmMetricProperty {
                             AlarmMetricName = "alarmMetricName"
                         } },
                         ProcessName = "processName"
                     } },
                     WindowsEvents = new [] { new WindowsEventProperty {
                         EventLevels = new [] { "eventLevels" },
                         EventName = "eventName",
                         LogGroupName = "logGroupName",

                         // the properties below are optional
                         PatternSet = "patternSet"
                     } }
                 },
                 SubComponentType = "subComponentType"
             };

Properties

SubComponentConfigurationDetails

The configuration settings of the sub-components.

public object SubComponentConfigurationDetails { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationinsights-application-subcomponenttypeconfiguration.html#cfn-applicationinsights-application-subcomponenttypeconfiguration-subcomponentconfigurationdetails

SubComponentType

The sub-component type.

public string SubComponentType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationinsights-application-subcomponenttypeconfiguration.html#cfn-applicationinsights-application-subcomponenttypeconfiguration-subcomponenttype

Implements

CfnApplication.ISubComponentTypeConfigurationProperty
Back to top Generated by DocFX