Interface CfnInferenceComponentPropsMixin.ContainerMetricsConfigProperty

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

@Stability(Stable) public static interface CfnInferenceComponentPropsMixin.ContainerMetricsConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration for container metrics scraping.

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.*;
 ContainerMetricsConfigProperty containerMetricsConfigProperty = ContainerMetricsConfigProperty.builder()
         .metricsEndpoints(List.of(MetricsEndpointProperty.builder()
                 .metricPublishFrequencyInSeconds(123)
                 .metricsEndpointPath("metricsEndpointPath")
                 .build()))
         .build();
 

See Also: