interface ScraperComponentProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.APS.Mixins.CfnScraperPropsMixin.ScraperComponentProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsaps/mixins#CfnScraperPropsMixin_ScraperComponentProperty |
Java | software.amazon.awscdk.mixins.preview.services.aps.mixins.CfnScraperPropsMixin.ScraperComponentProperty |
Python | aws_cdk.mixins_preview.aws_aps.mixins.CfnScraperPropsMixin.ScraperComponentProperty |
TypeScript | @aws-cdk/mixins-preview » aws_aps » mixins » CfnScraperPropsMixin » ScraperComponentProperty |
A component of a Amazon Managed Service for Prometheus scraper that can be configured for logging.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as aps_mixins } from '@aws-cdk/mixins-preview/aws-aps';
const scraperComponentProperty: aps_mixins.CfnScraperPropsMixin.ScraperComponentProperty = {
config: {
options: {
optionsKey: 'options',
},
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| config? | IResolvable | Component | The configuration settings for the scraper component. |
| type? | string | The type of the scraper component. |
config?
Type:
IResolvable | Component
(optional)
The configuration settings for the scraper component.
type?
Type:
string
(optional)
The type of the scraper component.

.NET
Go
Java
Python
TypeScript