interface DeployedImageProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnInferenceComponent.DeployedImageProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnInferenceComponent_DeployedImageProperty |
![]() | software.amazon.awscdk.services.sagemaker.CfnInferenceComponent.DeployedImageProperty |
![]() | aws_cdk.aws_sagemaker.CfnInferenceComponent.DeployedImageProperty |
![]() | aws-cdk-lib » aws_sagemaker » CfnInferenceComponent » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const deployedImageProperty: sagemaker.CfnInferenceComponent.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.