interface ComponentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApplicationInsights.Mixins.CfnApplicationPropsMixin.ComponentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapplicationinsights/mixins#CfnApplicationPropsMixin_ComponentConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.applicationinsights.mixins.CfnApplicationPropsMixin.ComponentConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_applicationinsights.mixins.CfnApplicationPropsMixin.ComponentConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_applicationinsights » mixins » CfnApplicationPropsMixin » ComponentConfigurationProperty |
The AWS::ApplicationInsights::Application ComponentConfiguration property type defines the configuration settings of the 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 componentConfigurationProperty: applicationinsights_mixins.CfnApplicationPropsMixin.ComponentConfigurationProperty = {
configurationDetails: {
alarmMetrics: [{
alarmMetricName: 'alarmMetricName',
}],
alarms: [{
alarmName: 'alarmName',
severity: 'severity',
}],
haClusterPrometheusExporter: {
prometheusPort: 'prometheusPort',
},
hanaPrometheusExporter: {
agreeToInstallHanadbClient: false,
hanaPort: 'hanaPort',
hanaSecretName: 'hanaSecretName',
hanasid: 'hanasid',
prometheusPort: 'prometheusPort',
},
jmxPrometheusExporter: {
hostPort: 'hostPort',
jmxurl: 'jmxurl',
prometheusPort: 'prometheusPort',
},
logs: [{
encoding: 'encoding',
logGroupName: 'logGroupName',
logPath: 'logPath',
logType: 'logType',
patternSet: 'patternSet',
}],
netWeaverPrometheusExporter: {
instanceNumbers: ['instanceNumbers'],
prometheusPort: 'prometheusPort',
sapsid: 'sapsid',
},
processes: [{
alarmMetrics: [{
alarmMetricName: 'alarmMetricName',
}],
processName: 'processName',
}],
sqlServerPrometheusExporter: {
prometheusPort: 'prometheusPort',
sqlSecretName: 'sqlSecretName',
},
windowsEvents: [{
eventLevels: ['eventLevels'],
eventName: 'eventName',
logGroupName: 'logGroupName',
patternSet: 'patternSet',
}],
},
subComponentTypeConfigurations: [{
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 |
|---|---|---|
| configuration | IResolvable | Configuration | The configuration settings. |
| sub | IResolvable | (IResolvable | Sub)[] | Sub-component configurations of the component. |
configurationDetails?
Type:
IResolvable | Configuration
(optional)
The configuration settings.
subComponentTypeConfigurations?
Type:
IResolvable | (IResolvable | Sub)[]
(optional)
Sub-component configurations of the component.

.NET
Go
Java
Python
TypeScript