interface MetricsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CustomerProfiles.CfnRecommender.MetricsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscustomerprofiles#CfnRecommender_MetricsProperty |
Java | software.amazon.awscdk.services.customerprofiles.CfnRecommender.MetricsProperty |
Python | aws_cdk.aws_customerprofiles.CfnRecommender.MetricsProperty |
TypeScript | aws-cdk-lib » aws_customerprofiles » CfnRecommender » MetricsProperty |
Training metrics by type.
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 metricsProperty: customerprofiles.CfnRecommender.MetricsProperty = {
coverage: 123,
freshness: 123,
hit: 123,
popularity: 123,
recall: 123,
similarity: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| coverage? | number | |
| freshness? | number | |
| hit? | number | |
| popularity? | number | |
| recall? | number | |
| similarity? | number |
coverage?
Type:
number
(optional)
freshness?
Type:
number
(optional)
hit?
Type:
number
(optional)
popularity?
Type:
number
(optional)
recall?
Type:
number
(optional)
similarity?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript