Show / Hide Table of Contents

Class CfnInferenceComponentPropsMixin.DeployedImageProperty

Gets the Amazon EC2 Container Registry path of the docker image of the model that is hosted in this ProductionVariant .

Inheritance
object
CfnInferenceComponentPropsMixin.DeployedImageProperty
Implements
CfnInferenceComponentPropsMixin.IDeployedImageProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-deployedimage.html

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.

ResolvedImage

The specific digest path of the image hosted in this ProductionVariant .

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 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-deployedimage.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-deployedimage.html#cfn-sagemaker-inferencecomponent-deployedimage-resolutiontime

ResolvedImage

The specific digest path of the image hosted in this ProductionVariant .

public string? ResolvedImage { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-deployedimage.html#cfn-sagemaker-inferencecomponent-deployedimage-resolvedimage

SpecifiedImage

The image path you specified when you created the model.

public string? SpecifiedImage { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-inferencecomponent-deployedimage.html#cfn-sagemaker-inferencecomponent-deployedimage-specifiedimage

Implements

CfnInferenceComponentPropsMixin.IDeployedImageProperty
Back to top Generated by DocFX