Show / Hide Table of Contents

Class CfnApplication.SubComponentTypeConfigurationProperty

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

Inheritance
System.Object
CfnApplication.SubComponentTypeConfigurationProperty
Implements
CfnApplication.ISubComponentTypeConfigurationProperty
Namespace: Amazon.CDK.AWS.ApplicationInsights
Assembly: Amazon.CDK.AWS.ApplicationInsights.dll
Syntax (csharp)
public class SubComponentTypeConfigurationProperty : Object, CfnApplication.ISubComponentTypeConfigurationProperty
Syntax (vb)
Public Class SubComponentTypeConfigurationProperty
    Inherits Object
    Implements CfnApplication.ISubComponentTypeConfigurationProperty
Remarks

Link: 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"
        } },
        WindowsEvents = new [] { new WindowsEventProperty {
            EventLevels = new [] { "eventLevels" },
            EventName = "eventName",
            LogGroupName = "logGroupName",

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

Synopsis

Constructors

SubComponentTypeConfigurationProperty()

Properties

SubComponentConfigurationDetails

The configuration settings of the sub-components.

SubComponentType

The sub-component type.

Constructors

SubComponentTypeConfigurationProperty()

public SubComponentTypeConfigurationProperty()

Properties

SubComponentConfigurationDetails

The configuration settings of the sub-components.

public object SubComponentConfigurationDetails { get; set; }
Property Value

System.Object

Remarks

Link: 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

System.String

Remarks

Link: 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