Interface CfnApplication.ProcessProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.ProcessProperty.Jsii$Proxy
- Enclosing class:
CfnApplication
@Stability(Stable)
public static interface CfnApplication.ProcessProperty
extends software.amazon.jsii.JsiiSerializable
A process to be monitored for the component.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.applicationinsights.*; ProcessProperty processProperty = ProcessProperty.builder() .alarmMetrics(List.of(AlarmMetricProperty.builder() .alarmMetricName("alarmMetricName") .build())) .processName("processName") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplication.ProcessProperty
static final class
An implementation forCfnApplication.ProcessProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A list of metrics to monitor for the component.The name of the process to be monitored for the component.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAlarmMetrics
A list of metrics to monitor for the component.- See Also:
-
getProcessName
The name of the process to be monitored for the component.- See Also:
-
builder
-