interface TrainingMetricsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnRecommender.TrainingMetricsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnRecommender_TrainingMetricsProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnRecommender.TrainingMetricsProperty |
Python | aws_cdk.aws_customerprofiles.CfnRecommender.TrainingMetricsProperty |
TypeScript | aws-cdk-lib » aws_customerprofiles » CfnRecommender » TrainingMetricsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_customerprofiles as customerprofiles } from 'aws-cdk-lib';
const trainingMetricsProperty: customerprofiles.CfnRecommender.TrainingMetricsProperty = {
metrics: {
coverage: 123,
freshness: 123,
hit: 123,
popularity: 123,
recall: 123,
similarity: 123,
},
time: 'time',
};
Properties
| Name | Type | Description |
|---|---|---|
| metrics? | IResolvable | Metrics | Training metrics by type. |
| time? | string | Timestamp of the training metrics. |
metrics?
Type:
IResolvable | Metrics
(optional)
Training metrics by type.
time?
Type:
string
(optional)
Timestamp of the training metrics.

.NET
Go
Java
Python
TypeScript