Class CfnApplicationPropsMixin.ProcessProperty
A process to be monitored for the component.
Implements
Inherited Members
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
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
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
Remarks
ProcessName
The name of the process to be monitored for the component.
public string? ProcessName { get; set; }