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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnModelCard.ModelOverviewProperty
static final class
An implementation forCfnModelCard.ModelOverviewProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The algorithm used to solve the problem.default Object
An overview about model inference.The location of the model artifact.default String
The creator of the model.default String
A description of the model.default String
The SageMaker Model ARN or non- SageMaker Model ID.default String
The name of the model.default String
The owner of the model.default Number
The version of the model.default String
The problem being solved with the model.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAlgorithmType
The algorithm used to solve the problem. -
getInferenceEnvironment
An overview about model inference. -
getModelArtifact
The location of the model artifact. -
getModelCreator
The creator of the model. -
getModelDescription
A description of the model. -
getModelId
The SageMaker Model ARN or non- SageMaker Model ID. -
getModelName
The name of the model. -
getModelOwner
The owner of the model. -
getModelVersion
The version of the model. -
getProblemType
The problem being solved with the model. -
builder
-