Class: Aws::SageMaker::Types::InferenceComponentContainerSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::InferenceComponentContainerSpecification
- Includes:
- Aws::Structure
- Defined in:
- 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
-
#artifact_url ⇒ String
The Amazon S3 path where the model artifacts, which result from model training, are stored.
-
#environment ⇒ Hash<String,String>
The environment variables to set in the Docker container.
-
#image ⇒ String
The Amazon Elastic Container Registry (Amazon ECR) path where the Docker image for the model is stored.
Instance Attribute Details
#artifact_url ⇒ String
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).
25353 25354 25355 25356 25357 25358 25359 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 25353 class InferenceComponentContainerSpecification < Struct.new( :image, :artifact_url, :environment) SENSITIVE = [] include Aws::Structure end |
#environment ⇒ Hash<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.
25353 25354 25355 25356 25357 25358 25359 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 25353 class InferenceComponentContainerSpecification < Struct.new( :image, :artifact_url, :environment) SENSITIVE = [] include Aws::Structure end |
#image ⇒ String
The Amazon Elastic Container Registry (Amazon ECR) path where the Docker image for the model is stored.
25353 25354 25355 25356 25357 25358 25359 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 25353 class InferenceComponentContainerSpecification < Struct.new( :image, :artifact_url, :environment) SENSITIVE = [] include Aws::Structure end |