Class: Aws::SageMaker::Types::InferenceComponentContainerSpecification
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::InferenceComponentContainerSpecification
- 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
-
#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).
24294 24295 24296 24297 24298 24299 24300 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 24294 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.
24294 24295 24296 24297 24298 24299 24300 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 24294 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.
24294 24295 24296 24297 24298 24299 24300 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 24294 class InferenceComponentContainerSpecification < Struct.new( :image, :artifact_url, :environment) SENSITIVE = [] include Aws::Structure end |