Interface CfnInferenceComponent.MetricsEndpointProperty

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

@Stability(Stable) public static interface CfnInferenceComponent.MetricsEndpointProperty extends software.amazon.jsii.JsiiSerializable
A metrics endpoint exposed by the container.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.sagemaker.*;
 MetricsEndpointProperty metricsEndpointProperty = MetricsEndpointProperty.builder()
         .metricsEndpointPath("metricsEndpointPath")
         // the properties below are optional
         .metricPublishFrequencyInSeconds(123)
         .build();
 

See Also: