Class: Aws::SageMaker::Types::ModelPackageContainerDefinition

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Note:

When making an API call, you may pass ModelPackageContainerDefinition data as a hash:

{
  container_hostname: "ContainerHostname",
  image: "Image", # required
  image_digest: "ImageDigest",
  model_data_url: "Url",
  product_id: "ProductId",
}

Describes the Docker container for the model package.

Instance Attribute Summary collapse

Instance Attribute Details

#container_hostnameString

The DNS host name for the Docker container.

Returns:

  • (String)


14408
14409
14410
14411
14412
14413
14414
14415
# File 'lib/aws-sdk-sagemaker/types.rb', line 14408

class ModelPackageContainerDefinition < Struct.new(
  :container_hostname,
  :image,
  :image_digest,
  :model_data_url,
  :product_id)
  include Aws::Structure
end

#imageString

The Amazon EC2 Container Registry (Amazon ECR) path where inference code is stored.

If you are using your own custom algorithm instead of an algorithm provided by Amazon SageMaker, the inference code must meet Amazon SageMaker requirements. Amazon SageMaker supports both ‘registry/repository` and `registry/repository` image path formats. For more information, see [Using Your Own Algorithms with Amazon SageMaker].

[1]: docs.aws.amazon.com/sagemaker/latest/dg/your-algorithms.html

Returns:

  • (String)


14408
14409
14410
14411
14412
14413
14414
14415
# File 'lib/aws-sdk-sagemaker/types.rb', line 14408

class ModelPackageContainerDefinition < Struct.new(
  :container_hostname,
  :image,
  :image_digest,
  :model_data_url,
  :product_id)
  include Aws::Structure
end

#image_digestString

An MD5 hash of the training algorithm that identifies the Docker image used for training.

Returns:

  • (String)


14408
14409
14410
14411
14412
14413
14414
14415
# File 'lib/aws-sdk-sagemaker/types.rb', line 14408

class ModelPackageContainerDefinition < Struct.new(
  :container_hostname,
  :image,
  :image_digest,
  :model_data_url,
  :product_id)
  include Aws::Structure
end

#model_data_urlString

The Amazon S3 path where the model artifacts, which result from model training, are stored. This path must point to a single ‘gzip` compressed tar archive (`.tar.gz` suffix).

Returns:

  • (String)


14408
14409
14410
14411
14412
14413
14414
14415
# File 'lib/aws-sdk-sagemaker/types.rb', line 14408

class ModelPackageContainerDefinition < Struct.new(
  :container_hostname,
  :image,
  :image_digest,
  :model_data_url,
  :product_id)
  include Aws::Structure
end

#product_idString

The AWS Marketplace product ID of the model package.

Returns:

  • (String)


14408
14409
14410
14411
14412
14413
14414
14415
# File 'lib/aws-sdk-sagemaker/types.rb', line 14408

class ModelPackageContainerDefinition < Struct.new(
  :container_hostname,
  :image,
  :image_digest,
  :model_data_url,
  :product_id)
  include Aws::Structure
end