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: