interface ContainerProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelCardPropsMixin.ContainerProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelCardPropsMixin_ContainerProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelCardPropsMixin.ContainerProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelCardPropsMixin.ContainerProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelCardPropsMixin » ContainerProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const containerProperty: sagemaker_mixins.CfnModelCardPropsMixin.ContainerProperty = {
image: 'image',
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
(optional)
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.

.NET
Go
Java
Python
TypeScript