Interface CfnModelCard.ModelOverviewProperty

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

@Stability(Stable) public static interface CfnModelCard.ModelOverviewProperty extends software.amazon.jsii.JsiiSerializable
An overview about the model.

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.*;
 ModelOverviewProperty modelOverviewProperty = ModelOverviewProperty.builder()
         .algorithmType("algorithmType")
         .inferenceEnvironment(InferenceEnvironmentProperty.builder()
                 .containerImage(List.of("containerImage"))
                 .build())
         .modelArtifact(List.of("modelArtifact"))
         .modelCreator("modelCreator")
         .modelDescription("modelDescription")
         .modelId("modelId")
         .modelName("modelName")
         .modelOwner("modelOwner")
         .modelVersion(123)
         .problemType("problemType")
         .build();
 

See Also: