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