Interface CfnScraperPropsMixin.ScraperComponentProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnScraperPropsMixin.ScraperComponentProperty.Jsii$Proxy
- Enclosing class:
CfnScraperPropsMixin
@Stability(Stable)
public static interface CfnScraperPropsMixin.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.cfnpropertymixins.services.aps.*;
ScraperComponentProperty scraperComponentProperty = ScraperComponentProperty.builder()
.config(ComponentConfigProperty.builder()
.options(Map.of(
"optionsKey", "options"))
.build())
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnScraperPropsMixin.ScraperComponentPropertystatic final classAn implementation forCfnScraperPropsMixin.ScraperComponentProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfig
The configuration settings for the scraper component.Returns union: either
IResolvableorCfnScraperPropsMixin.ComponentConfigProperty- See Also:
-
getType
The type of the scraper component.- See Also:
-
builder
-