Interface CfnModelCard.ObjectiveFunctionProperty

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

@Stability(Stable) public static interface CfnModelCard.ObjectiveFunctionProperty extends software.amazon.jsii.JsiiSerializable
The function that is optimized during model training.

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.sagemaker.*;
 ObjectiveFunctionProperty objectiveFunctionProperty = ObjectiveFunctionProperty.builder()
         .function(FunctionProperty.builder()
                 .condition("condition")
                 .facet("facet")
                 .function("function")
                 .build())
         .notes("notes")
         .build();
 

See Also: