Interface CfnApplication.LogPatternSetProperty

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

@Stability(Stable) public static interface CfnApplication.LogPatternSetProperty extends software.amazon.jsii.JsiiSerializable
The AWS::ApplicationInsights::Application LogPatternSet property type specifies the log pattern set.

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.*;
 LogPatternSetProperty logPatternSetProperty = LogPatternSetProperty.builder()
         .logPatterns(List.of(LogPatternProperty.builder()
                 .pattern("pattern")
                 .patternName("patternName")
                 .rank(123)
                 .build()))
         .patternSetName("patternSetName")
         .build();
 

See Also: