Interface CfnApplication.WindowsEventProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplication.WindowsEventProperty.Jsii$Proxy
Enclosing class:
CfnApplication

@Stability(Stable) public static interface CfnApplication.WindowsEventProperty extends software.amazon.jsii.JsiiSerializable
The AWS::ApplicationInsights::Application WindowsEvent property type specifies a Windows Event to monitor 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.*;
 WindowsEventProperty windowsEventProperty = WindowsEventProperty.builder()
         .eventLevels(List.of("eventLevels"))
         .eventName("eventName")
         .logGroupName("logGroupName")
         // the properties below are optional
         .patternSet("patternSet")
         .build();
 

See Also: