interface LogPatternSetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApplicationInsights.Mixins.CfnApplicationPropsMixin.LogPatternSetProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapplicationinsights/mixins#CfnApplicationPropsMixin_LogPatternSetProperty |
Java | software.amazon.awscdk.mixins.preview.services.applicationinsights.mixins.CfnApplicationPropsMixin.LogPatternSetProperty |
Python | aws_cdk.mixins_preview.aws_applicationinsights.mixins.CfnApplicationPropsMixin.LogPatternSetProperty |
TypeScript | @aws-cdk/mixins-preview » aws_applicationinsights » mixins » CfnApplicationPropsMixin » 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 { mixins as applicationinsights_mixins } from '@aws-cdk/mixins-preview/aws-applicationinsights';
const logPatternSetProperty: applicationinsights_mixins.CfnApplicationPropsMixin.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)[]
(optional)
A list of objects that define the log patterns that belong to LogPatternSet .
patternSetName?
Type:
string
(optional)
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