Interface CfnRecommender.TrainingMetricsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRecommender.TrainingMetricsProperty.Jsii$Proxy
Enclosing class:
CfnRecommender

@Stability(Stable) public static interface CfnRecommender.TrainingMetricsProperty extends software.amazon.jsii.JsiiSerializable
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.customerprofiles.*;
 TrainingMetricsProperty trainingMetricsProperty = TrainingMetricsProperty.builder()
         .metrics(MetricsProperty.builder()
                 .coverage(123)
                 .freshness(123)
                 .hit(123)
                 .popularity(123)
                 .recall(123)
                 .similarity(123)
                 .build())
         .time("time")
         .build();
 

See Also: