Interface CfnScraper.ScraperComponentProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnScraper.ScraperComponentProperty.Jsii$Proxy
Enclosing class:
CfnScraper

@Stability(Stable) public static interface CfnScraper.ScraperComponentProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.aps.*;
 ScraperComponentProperty scraperComponentProperty = ScraperComponentProperty.builder()
         .type("type")
         // the properties below are optional
         .config(ComponentConfigProperty.builder()
                 .options(Map.of(
                         "optionsKey", "options"))
                 .build())
         .build();
 

See Also: