interface DeployedImageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnInferenceComponentPropsMixin.DeployedImageProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnInferenceComponentPropsMixin_DeployedImageProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnInferenceComponentPropsMixin.DeployedImageProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnInferenceComponentPropsMixin.DeployedImageProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnInferenceComponentPropsMixin » DeployedImageProperty |
Gets the Amazon EC2 Container Registry path of the docker image of the model that is hosted in this ProductionVariant .
If you used the registry/repository[:tag] form to specify the image path of the primary container when you created the model hosted in this ProductionVariant , the path resolves to a path of the form registry/repository[@digest] . A digest is a hash value that identifies a specific version of an image. For information about Amazon ECR paths, see Pulling an Image in the Amazon ECR User Guide .
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 deployedImageProperty: sagemaker_mixins.CfnInferenceComponentPropsMixin.DeployedImageProperty = {
resolutionTime: 'resolutionTime',
resolvedImage: 'resolvedImage',
specifiedImage: 'specifiedImage',
};
Properties
| Name | Type | Description |
|---|---|---|
| resolution | string | The date and time when the image path for the model resolved to the ResolvedImage. |
| resolved | string | The specific digest path of the image hosted in this ProductionVariant . |
| specified | string | The image path you specified when you created the model. |
resolutionTime?
Type:
string
(optional)
The date and time when the image path for the model resolved to the ResolvedImage.
resolvedImage?
Type:
string
(optional)
The specific digest path of the image hosted in this ProductionVariant .
specifiedImage?
Type:
string
(optional)
The image path you specified when you created the model.

.NET
Go
Java
Python
TypeScript