aws-cdk-lib.aws_sagemaker.CfnModelCard.ModelOverviewProperty

interface ModelOverviewProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnModelCard.ModelOverviewProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelCard_ModelOverviewProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnModelCard.ModelOverviewProperty
Pythonaws_cdk.aws_sagemaker.CfnModelCard.ModelOverviewProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnModelCard » ModelOverviewProperty

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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const modelOverviewProperty: sagemaker.CfnModelCard.ModelOverviewProperty = {
  algorithmType: 'algorithmType',
  inferenceEnvironment: {
    containerImage: ['containerImage'],
  },
  modelArtifact: ['modelArtifact'],
  modelCreator: 'modelCreator',
  modelDescription: 'modelDescription',
  modelId: 'modelId',
  modelName: 'modelName',
  modelOwner: 'modelOwner',
  modelVersion: 123,
  problemType: 'problemType',
};

Properties

NameTypeDescription
algorithmType?stringThe algorithm used to solve the problem.
inferenceEnvironment?IResolvable | InferenceEnvironmentPropertyAn overview about model inference.
modelArtifact?string[]The location of the model artifact.
modelCreator?stringThe creator of the model.
modelDescription?stringA description of the model.
modelId?stringThe SageMaker Model ARN or non- SageMaker Model ID.
modelName?stringThe name of the model.
modelOwner?stringThe owner of the model.
modelVersion?numberThe version of the model.
problemType?stringThe problem being solved with the model.

algorithmType?

Type: string (optional)

The algorithm used to solve the problem.


inferenceEnvironment?

Type: IResolvable | InferenceEnvironmentProperty (optional)

An overview about model inference.


modelArtifact?

Type: string[] (optional)

The location of the model artifact.


modelCreator?

Type: string (optional)

The creator of the model.


modelDescription?

Type: string (optional)

A description of the model.


modelId?

Type: string (optional)

The SageMaker Model ARN or non- SageMaker Model ID.


modelName?

Type: string (optional)

The name of the model.


modelOwner?

Type: string (optional)

The owner of the model.


modelVersion?

Type: number (optional)

The version of the model.


problemType?

Type: string (optional)

The problem being solved with the model.