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 classA builder forCfnScraper.ScraperLoggingConfigurationPropertystatic final classAn implementation forCfnScraper.ScraperLoggingConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Destination for scraper logging.Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnScraper.ScraperComponentProperty>Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLoggingDestination
Destination for scraper logging.Returns union: either
IResolvableorCfnScraper.ScraperLoggingDestinationProperty- See Also:
-
getScraperComponents
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnScraper.ScraperComponentProperty>- See Also:
-
builder
-