Interface CfnScraperPropsMixin.ScraperLoggingConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnScraperPropsMixin.ScraperLoggingConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnScraperPropsMixin
@Stability(Stable)
public static interface CfnScraperPropsMixin.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.cfnpropertymixins.services.aps.*;
ScraperLoggingConfigurationProperty scraperLoggingConfigurationProperty = ScraperLoggingConfigurationProperty.builder()
.loggingDestination(ScraperLoggingDestinationProperty.builder()
.cloudWatchLogs(CloudWatchLogDestinationProperty.builder()
.logGroupArn("logGroupArn")
.build())
.build())
.scraperComponents(List.of(ScraperComponentProperty.builder()
.config(ComponentConfigProperty.builder()
.options(Map.of(
"optionsKey", "options"))
.build())
.type("type")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnScraperPropsMixin.ScraperLoggingConfigurationPropertystatic final classAn implementation forCfnScraperPropsMixin.ScraperLoggingConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectDestination for scraper logging.default ObjectReturns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnScraperPropsMixin.ScraperComponentProperty>Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLoggingDestination
Destination for scraper logging.Returns union: either
IResolvableorCfnScraperPropsMixin.ScraperLoggingDestinationProperty- See Also:
-
getScraperComponents
Returns union: eitherIResolvableor Listinvalid input: '<'eitherIResolvableorCfnScraperPropsMixin.ScraperComponentProperty>- See Also:
-
builder
@Stability(Stable) static CfnScraperPropsMixin.ScraperLoggingConfigurationProperty.Builder builder()
-