Interface CfnModelCard.MetricDataItemsProperty

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

@Stability(Stable) public static interface CfnModelCard.MetricDataItemsProperty extends software.amazon.jsii.JsiiSerializable
Metric data.

The type determines the data types that you specify for value , XAxisName and YAxisName . For information about specifying values for metrics, see model card JSON schema .

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.*;
 Object value;
 MetricDataItemsProperty metricDataItemsProperty = MetricDataItemsProperty.builder()
         .name("name")
         .type("type")
         .value(value)
         // the properties below are optional
         .notes("notes")
         .xAxisName(List.of("xAxisName"))
         .yAxisName(List.of("yAxisName"))
         .build();
 

See Also: