@Stability(value=Stable)
public static interface CfnApplication.LogPatternSetProperty
extends software.amazon.jsii.JsiiSerializable
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() |
Object |
getLogPatterns()
A list of objects that define the log patterns that belong to `LogPatternSet` .
|
String |
getPatternSetName()
The name of the log pattern.
|
@Stability(value=Stable) @NotNull Object getLogPatterns()
@Stability(value=Stable) @NotNull 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.
@Stability(value=Stable) static CfnApplication.LogPatternSetProperty.Builder builder()
Copyright © 2022. All rights reserved.