Show / Hide Table of Contents

Class CfnApplicationPropsMixin.ProcessProperty

A process to be monitored for the component.

Inheritance
object
CfnApplicationPropsMixin.ProcessProperty
Implements
CfnApplicationPropsMixin.IProcessProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.ApplicationInsights
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnApplicationPropsMixin.ProcessProperty : CfnApplicationPropsMixin.IProcessProperty
Syntax (vb)
Public Class CfnApplicationPropsMixin.ProcessProperty Implements CfnApplicationPropsMixin.IProcessProperty
Remarks

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

             var processProperty = new ProcessProperty {
                 AlarmMetrics = new [] { new AlarmMetricProperty {
                     AlarmMetricName = "alarmMetricName"
                 } },
                 ProcessName = "processName"
             };

Synopsis

Constructors

ProcessProperty()

A process to be monitored for the component.

Properties

AlarmMetrics

A list of metrics to monitor for the component.

ProcessName

The name of the process to be monitored for the component.

Constructors

ProcessProperty()

A process to be monitored for the component.

public ProcessProperty()
Remarks

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

             var processProperty = new ProcessProperty {
                 AlarmMetrics = new [] { new AlarmMetricProperty {
                     AlarmMetricName = "alarmMetricName"
                 } },
                 ProcessName = "processName"
             };

Properties

AlarmMetrics

A list of metrics to monitor for the component.

public object? AlarmMetrics { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnApplicationPropsMixin.IAlarmMetricProperty)[]

ProcessName

The name of the process to be monitored for the component.

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

string

Remarks

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

Implements

CfnApplicationPropsMixin.IProcessProperty
Back to top Generated by DocFX