Interface CfnClusterPropsMixin.PrometheusProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClusterPropsMixin.PrometheusProperty.Jsii$Proxy
- Enclosing class:
CfnClusterPropsMixin
@Stability(Stable)
public static interface CfnClusterPropsMixin.PrometheusProperty
extends software.amazon.jsii.JsiiSerializable
Prometheus settings for open monitoring.
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.msk.*;
PrometheusProperty prometheusProperty = PrometheusProperty.builder()
.jmxExporter(JmxExporterProperty.builder()
.enabledInBroker(false)
.build())
.nodeExporter(NodeExporterProperty.builder()
.enabledInBroker(false)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClusterPropsMixin.PrometheusPropertystatic final classAn implementation forCfnClusterPropsMixin.PrometheusProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getJmxExporter
Indicates whether you want to enable or disable the JMX Exporter.Returns union: either
IResolvableorCfnClusterPropsMixin.JmxExporterProperty- See Also:
-
getNodeExporter
Indicates whether you want to enable or disable the Node Exporter.Returns union: either
IResolvableorCfnClusterPropsMixin.NodeExporterProperty- See Also:
-
builder
-