Interface CfnEndpointConfigPropsMixin.MetricsConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEndpointConfigPropsMixin.MetricsConfigProperty.Jsii$Proxy
Enclosing class:
CfnEndpointConfigPropsMixin

@Stability(Stable) public static interface CfnEndpointConfigPropsMixin.MetricsConfigProperty extends software.amazon.jsii.JsiiSerializable
Specifies the metrics that the endpoint publishes to Amazon CloudWatch, the frequency of publication, and whether to enable enhanced or detailed observability metrics.

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.sagemaker.*;
 MetricsConfigProperty metricsConfigProperty = MetricsConfigProperty.builder()
         .enableDetailedObservability(false)
         .enableEnhancedMetrics(false)
         .metricPublishFrequencyInSeconds(123)
         .build();
 

See Also: