Interface CfnInferenceComponent.DeployedImageProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnInferenceComponent.DeployedImageProperty.Jsii$Proxy
Enclosing class:
CfnInferenceComponent

@Stability(Stable) public static interface CfnInferenceComponent.DeployedImageProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
 DeployedImageProperty deployedImageProperty = DeployedImageProperty.builder()
         .resolutionTime("resolutionTime")
         .resolvedImage("resolvedImage")
         .specifiedImage("specifiedImage")
         .build();
 

See Also: