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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnScraper.ScraperLoggingConfigurationProperty
static final class
An implementation forCfnScraper.ScraperLoggingConfigurationProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLoggingDestination
Destination for scraper logging.- See Also:
-
getScraperComponents
- See Also:
-
builder
-