interface SubComponentTypeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApplicationInsights.Mixins.CfnApplicationPropsMixin.SubComponentTypeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapplicationinsights/mixins#CfnApplicationPropsMixin_SubComponentTypeConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.applicationinsights.mixins.CfnApplicationPropsMixin.SubComponentTypeConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_applicationinsights.mixins.CfnApplicationPropsMixin.SubComponentTypeConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_applicationinsights » mixins » CfnApplicationPropsMixin » SubComponentTypeConfigurationProperty |
The AWS::ApplicationInsights::Application SubComponentTypeConfiguration property type specifies the sub-component configurations for a component.
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 subComponentTypeConfigurationProperty: applicationinsights_mixins.CfnApplicationPropsMixin.SubComponentTypeConfigurationProperty = {
subComponentConfigurationDetails: {
alarmMetrics: [{
alarmMetricName: 'alarmMetricName',
}],
logs: [{
encoding: 'encoding',
logGroupName: 'logGroupName',
logPath: 'logPath',
logType: 'logType',
patternSet: 'patternSet',
}],
processes: [{
alarmMetrics: [{
alarmMetricName: 'alarmMetricName',
}],
processName: 'processName',
}],
windowsEvents: [{
eventLevels: ['eventLevels'],
eventName: 'eventName',
logGroupName: 'logGroupName',
patternSet: 'patternSet',
}],
},
subComponentType: 'subComponentType',
};
Properties
| Name | Type | Description |
|---|---|---|
| sub | IResolvable | Sub | The configuration settings of the sub-components. |
| sub | string | The sub-component type. |
subComponentConfigurationDetails?
Type:
IResolvable | Sub
(optional)
The configuration settings of the sub-components.
subComponentType?
Type:
string
(optional)
The sub-component type.

.NET
Go
Java
Python
TypeScript