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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnApplication.LogPatternSetProperty
static final class
An implementation forCfnApplication.LogPatternSetProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
A list of objects that define the log patterns that belong toLogPatternSet
.The name of the log pattern.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLogPatterns
A list of objects that define the log patterns that belong toLogPatternSet
. -
getPatternSetName
The name of the log pattern.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.
-
builder
-