interface ContainerProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnModelCard.ContainerProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelCard_ContainerProperty |
![]() | software.amazon.awscdk.services.sagemaker.CfnModelCard.ContainerProperty |
![]() | aws_cdk.aws_sagemaker.CfnModelCard.ContainerProperty |
![]() | aws-cdk-lib » aws_sagemaker » CfnModelCard » ContainerProperty |
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 containerProperty: sagemaker.CfnModelCard.ContainerProperty = {
image: 'image',
// the properties below are optional
modelDataUrl: 'modelDataUrl',
nearestModelName: 'nearestModelName',
};
Properties
Name | Type | Description |
---|---|---|
image | string | Inference environment path. |
model | string | The Amazon S3 path where the model artifacts, which result from model training, are stored. |
nearest | string | The name of a pre-trained machine learning benchmarked by Amazon SageMaker Inference Recommender model that matches your model. |
image
Type:
string
Inference environment path.
The Amazon EC2 Container Registry (Amazon ECR) path where inference code is stored.
modelDataUrl?
Type:
string
(optional)
The Amazon S3 path where the model artifacts, which result from model training, are stored.
nearestModelName?
Type:
string
(optional)
The name of a pre-trained machine learning benchmarked by Amazon SageMaker Inference Recommender model that matches your model.