interface ContainerProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnModelCardPropsMixin.ContainerProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnModelCardPropsMixin_ContainerProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnModelCardPropsMixin.ContainerProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelCardPropsMixin.ContainerProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnModelCardPropsMixin » 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/cfn-property-mixins';
const containerProperty: sagemaker.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