Interface CfnModelCard.MetricGroupProperty

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

@Stability(Stable) public static interface CfnModelCard.MetricGroupProperty extends software.amazon.jsii.JsiiSerializable
A group of metric data that you use to initialize a metric group object.

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

See Also: