interface LogPatternSetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ApplicationInsights.CfnApplication.LogPatternSetProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapplicationinsights#CfnApplication_LogPatternSetProperty |
Java | software.amazon.awscdk.services.applicationinsights.CfnApplication.LogPatternSetProperty |
Python | aws_cdk.aws_applicationinsights.CfnApplication.LogPatternSetProperty |
TypeScript | aws-cdk-lib » aws_applicationinsights » CfnApplication » LogPatternSetProperty |
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 { aws_applicationinsights as applicationinsights } from 'aws-cdk-lib';
const logPatternSetProperty: applicationinsights.CfnApplication.LogPatternSetProperty = {
logPatterns: [{
pattern: 'pattern',
patternName: 'patternName',
rank: 123,
}],
patternSetName: 'patternSetName',
};
Properties
| Name | Type | Description |
|---|---|---|
| log | IResolvable | (IResolvable | Log)[] | A list of objects that define the log patterns that belong to LogPatternSet . |
| pattern | string | The name of the log pattern. |
logPatterns
Type:
IResolvable | (IResolvable | Log)[]
A list of objects that define the log patterns that belong to LogPatternSet .
patternSetName
Type:
string
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.

.NET
Go
Java
Python
TypeScript