public static interface CfnApplication.LogPatternSetProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnApplication.LogPatternSetProperty.Builder
A builder for
CfnApplication.LogPatternSetProperty |
static class |
CfnApplication.LogPatternSetProperty.Jsii$Proxy
An implementation for
CfnApplication.LogPatternSetProperty |
Modifier and Type | Method and Description |
---|---|
static CfnApplication.LogPatternSetProperty.Builder |
builder() |
java.lang.Object |
getLogPatterns()
A list of objects that define the log patterns that belong to `LogPatternSet` .
|
java.lang.String |
getPatternSetName()
The name of the log pattern.
|
java.lang.Object getLogPatterns()
java.lang.String getPatternSetName()
A log pattern name can contain up to 30 characters, and it cannot be empty. The characters can be Unicode letters, digits, or one of the following symbols: period, dash, underscore.
static CfnApplication.LogPatternSetProperty.Builder builder()