Interface CfnApplication.LogPatternProperty

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

@Stability(Stable) public static interface CfnApplication.LogPatternProperty extends software.amazon.jsii.JsiiSerializable
The AWS::ApplicationInsights::Application LogPattern property type specifies an object that defines the log patterns that belong to a LogPatternSet .

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.*;
 LogPatternProperty logPatternProperty = LogPatternProperty.builder()
         .pattern("pattern")
         .patternName("patternName")
         .rank(123)
         .build();
 

See Also: