Interface CfnScraper.ScraperLoggingConfigurationProperty

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

@Stability(Stable) public static interface CfnScraper.ScraperLoggingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for scraper 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.*;
 ScraperLoggingConfigurationProperty scraperLoggingConfigurationProperty = ScraperLoggingConfigurationProperty.builder()
         .loggingDestination(ScraperLoggingDestinationProperty.builder()
                 .cloudWatchLogs(CloudWatchLogDestinationProperty.builder()
                         .logGroupArn("logGroupArn")
                         .build())
                 .build())
         .scraperComponents(List.of(ScraperComponentProperty.builder()
                 .type("type")
                 // the properties below are optional
                 .config(ComponentConfigProperty.builder()
                         .options(Map.of(
                                 "optionsKey", "options"))
                         .build())
                 .build()))
         .build();
 

See Also: