interface LogPatternSetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ApplicationInsights.CfnApplicationPropsMixin.LogPatternSetProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapplicationinsights#CfnApplicationPropsMixin_LogPatternSetProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.applicationinsights.CfnApplicationPropsMixin.LogPatternSetProperty |
Python | aws_cdk.cfn_property_mixins.aws_applicationinsights.CfnApplicationPropsMixin.LogPatternSetProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_applicationinsights » 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 { aws_applicationinsights as applicationinsights } from '@aws-cdk/cfn-property-mixins';
const logPatternSetProperty: applicationinsights.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