interface ContainerProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModelCard.ContainerProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModelCard.ContainerProperty |
Python | aws_cdk.aws_sagemaker.CfnModelCard.ContainerProperty |
TypeScript | @aws-cdk/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 * as sagemaker from '@aws-cdk/aws-sagemaker';
const containerProperty: sagemaker.CfnModelCard.ContainerProperty = {
image: 'image',
// the properties below are optional
modelDataUrl: 'modelDataUrl',
nearestModelName: 'nearestModelName',
};
Properties
| Name | Type | Description |
|---|---|---|
| image | string | CfnModelCard.ContainerProperty.Image. |
| model | string | CfnModelCard.ContainerProperty.ModelDataUrl. |
| nearest | string | CfnModelCard.ContainerProperty.NearestModelName. |
image
Type:
string
CfnModelCard.ContainerProperty.Image.
modelDataUrl?
Type:
string
(optional)
CfnModelCard.ContainerProperty.ModelDataUrl.
nearestModelName?
Type:
string
(optional)
CfnModelCard.ContainerProperty.NearestModelName.

.NET
Java
Python
TypeScript