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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelCard.MetricDataItemsPropertystatic final classAn implementation forCfnModelCard.MetricDataItemsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
- See Also:
-
getType
- See Also:
-
getValue
- See Also:
-
getNotes
- See Also:
-
getXAxisName
- See Also:
-
getYAxisName
- See Also:
-
builder
-