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:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelCard.ModelOverviewPropertystatic final classAn implementation forCfnModelCard.ModelOverviewProperty
- 
Method SummaryModifier and TypeMethodDescriptionbuilder()default StringThe algorithm used to solve the problem.default ObjectAn overview about model inference.The location of the model artifact.default StringThe creator of the model.default StringA description of the model.default StringThe SageMaker AI Model ARN or non- SageMaker AI Model ID.default StringThe name of the model.default StringThe owner of the model.default NumberThe version of the model.default StringThe problem being solved with the model.Methods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getAlgorithmTypeThe algorithm used to solve the problem.- See Also:
 
- 
getInferenceEnvironmentAn overview about model inference.Returns union: either IResolvableorCfnModelCard.InferenceEnvironmentProperty- See Also:
 
- 
getModelArtifactThe location of the model artifact.- See Also:
 
- 
getModelCreatorThe creator of the model.- See Also:
 
- 
getModelDescriptionA description of the model.- See Also:
 
- 
getModelIdThe SageMaker AI Model ARN or non- SageMaker AI Model ID.- See Also:
 
- 
getModelNameThe name of the model.- See Also:
 
- 
getModelOwnerThe owner of the model.- See Also:
 
- 
getModelVersionThe version of the model.- See Also:
 
- 
getProblemTypeThe problem being solved with the model.- See Also:
 
- 
builder
 
-