Interface CfnModelCardPropsMixin.MetricDataItemsProperty

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

@Stability(Stable) public static interface CfnModelCardPropsMixin.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.cfnpropertymixins.services.sagemaker.*;
 Object value;
 MetricDataItemsProperty metricDataItemsProperty = MetricDataItemsProperty.builder()
         .name("name")
         .notes("notes")
         .type("type")
         .value(value)
         .xAxisName(List.of("xAxisName"))
         .yAxisName(List.of("yAxisName"))
         .build();
 

See Also: