Class CfnInferenceComponentPropsMixin.DeployedImageProperty
Gets the Amazon EC2 Container Registry path of the docker image of the model that is hosted in this ProductionVariant .
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnInferenceComponentPropsMixin.DeployedImageProperty : CfnInferenceComponentPropsMixin.IDeployedImageProperty
Syntax (vb)
Public Class CfnInferenceComponentPropsMixin.DeployedImageProperty Implements CfnInferenceComponentPropsMixin.IDeployedImageProperty
Remarks
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 .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var deployedImageProperty = new DeployedImageProperty {
ResolutionTime = "resolutionTime",
ResolvedImage = "resolvedImage",
SpecifiedImage = "specifiedImage"
};
Synopsis
Constructors
| DeployedImageProperty() | Gets the Amazon EC2 Container Registry path of the docker image of the model that is hosted in this ProductionVariant . |
Properties
| ResolutionTime | The date and time when the image path for the model resolved to the |
| ResolvedImage | The specific digest path of the image hosted in this |
| SpecifiedImage | The image path you specified when you created the model. |
Constructors
DeployedImageProperty()
Gets the Amazon EC2 Container Registry path of the docker image of the model that is hosted in this ProductionVariant .
public DeployedImageProperty()
Remarks
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 .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins;
var deployedImageProperty = new DeployedImageProperty {
ResolutionTime = "resolutionTime",
ResolvedImage = "resolvedImage",
SpecifiedImage = "specifiedImage"
};
Properties
ResolutionTime
The date and time when the image path for the model resolved to the ResolvedImage.
public string? ResolutionTime { get; set; }
Property Value
Remarks
ResolvedImage
The specific digest path of the image hosted in this ProductionVariant .
public string? ResolvedImage { get; set; }
Property Value
Remarks
SpecifiedImage
The image path you specified when you created the model.
public string? SpecifiedImage { get; set; }