Interface CfnModelCardPropsMixin.MetricGroupProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelCardPropsMixin.MetricGroupProperty.Jsii$Proxy
- Enclosing class:
CfnModelCardPropsMixin
@Stability(Stable)
public static interface CfnModelCardPropsMixin.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.cfnpropertymixins.services.sagemaker.*;
Object value;
MetricGroupProperty metricGroupProperty = MetricGroupProperty.builder()
.metricData(List.of(MetricDataItemsProperty.builder()
.name("name")
.notes("notes")
.type("type")
.value(value)
.xAxisName(List.of("xAxisName"))
.yAxisName(List.of("yAxisName"))
.build()))
.name("name")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelCardPropsMixin.MetricGroupPropertystatic final classAn implementation forCfnModelCardPropsMixin.MetricGroupProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMetricData
A list of metric objects. TheMetricDataItemslist can have one of the following values:.bar_chart_metricmatrix_metricsimple_metriclinear_graph_metric
For more information about the metric schema, see the definition section of the model card JSON schema .
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnModelCardPropsMixin.MetricDataItemsProperty>- See Also:
-
getName
The metric group name.- See Also:
-
builder
-