interface MetricGroupProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelCardPropsMixin.MetricGroupProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelCardPropsMixin_MetricGroupProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelCardPropsMixin.MetricGroupProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelCardPropsMixin.MetricGroupProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
declare const value: any;
const metricGroupProperty: sagemaker_mixins.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