interface CustomComponentProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApplicationInsights.Mixins.CfnApplicationPropsMixin.CustomComponentProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapplicationinsights/mixins#CfnApplicationPropsMixin_CustomComponentProperty |
Java | software.amazon.awscdk.mixins.preview.services.applicationinsights.mixins.CfnApplicationPropsMixin.CustomComponentProperty |
Python | aws_cdk.mixins_preview.aws_applicationinsights.mixins.CfnApplicationPropsMixin.CustomComponentProperty |
TypeScript | @aws-cdk/mixins-preview » aws_applicationinsights » mixins » CfnApplicationPropsMixin » CustomComponentProperty |
The AWS::ApplicationInsights::Application CustomComponent property type describes a custom component by grouping similar standalone instances to monitor.
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 customComponentProperty: applicationinsights_mixins.CfnApplicationPropsMixin.CustomComponentProperty = {
componentName: 'componentName',
resourceList: ['resourceList'],
};
Properties
| Name | Type | Description |
|---|---|---|
| component | string | The name of the component. |
| resource | string[] | The list of resource ARNs that belong to the component. |
componentName?
Type:
string
(optional)
The name of the component.
resourceList?
Type:
string[]
(optional)
The list of resource ARNs that belong to the component.

.NET
Go
Java
Python
TypeScript