Class: Aws::SageMaker::Types::InferenceComponentContainerSpecification

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

Overview

Defines a container that provides the runtime environment for a model that you deploy with an inference component.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#artifact_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)


22895
22896
22897
22898
22899
22900
22901
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 22895

class InferenceComponentContainerSpecification < Struct.new(
  :image,
  :artifact_url,
  :environment)
  SENSITIVE = []
  include Aws::Structure
end

#environmentHash<String,String>

The environment variables to set in the Docker container. Each key and value in the Environment string-to-string map can have length of up to 1024. We support up to 16 entries in the map.

Returns:

  • (Hash<String,String>)


22895
22896
22897
22898
22899
22900
22901
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 22895

class InferenceComponentContainerSpecification < Struct.new(
  :image,
  :artifact_url,
  :environment)
  SENSITIVE = []
  include Aws::Structure
end

#imageString

The Amazon Elastic Container Registry (Amazon ECR) path where the Docker image for the model is stored.

Returns:

  • (String)


22895
22896
22897
22898
22899
22900
22901
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 22895

class InferenceComponentContainerSpecification < Struct.new(
  :image,
  :artifact_url,
  :environment)
  SENSITIVE = []
  include Aws::Structure
end