Interface CfnApplication.LogProperty

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

@Stability(Stable) public static interface CfnApplication.LogProperty extends software.amazon.jsii.JsiiSerializable
The AWS::ApplicationInsights::Application Log property type specifies a log 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.*;
 LogProperty logProperty = LogProperty.builder()
         .logType("logType")
         // the properties below are optional
         .encoding("encoding")
         .logGroupName("logGroupName")
         .logPath("logPath")
         .patternSet("patternSet")
         .build();
 

See Also: