interface MetricGroupProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnModelCardPropsMixin.MetricGroupProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnModelCardPropsMixin_MetricGroupProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnModelCardPropsMixin.MetricGroupProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelCardPropsMixin.MetricGroupProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnModelCardPropsMixin » MetricGroupProperty |
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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
declare const value: any;
const metricGroupProperty: sagemaker.CfnModelCardPropsMixin.MetricGroupProperty = {
metricData: [{
name: 'name',
notes: 'notes',
type: 'type',
value: value,
xAxisName: ['xAxisName'],
yAxisName: ['yAxisName'],
}],
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| metric | IResolvable | (IResolvable | Metric)[] | A list of metric objects. The MetricDataItems list can have one of the following values:. |
| name? | string | The metric group name. |
metricData?
Type:
IResolvable | (IResolvable | Metric)[]
(optional)
A list of metric objects. The MetricDataItems list 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 .
name?
Type:
string
(optional)
The metric group name.

.NET
Go
Java
Python
TypeScript