Class: Aws::SageMaker::Types::AutoMLContainerDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AutoMLContainerDefinition
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
A list of container definitions that describe the different containers that make up one AutoML candidate. Refer to ContainerDefinition for more details.
Instance Attribute Summary collapse
-
#environment ⇒ Hash<String,String>
Environment variables to set in the container.
-
#image ⇒ String
The ECR path of the container.
-
#model_data_url ⇒ String
The location of the model artifacts.
Instance Attribute Details
#environment ⇒ Hash<String,String>
Environment variables to set in the container. Refer to ContainerDefinition for more details.
1001 1002 1003 1004 1005 1006 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1001 class AutoMLContainerDefinition < Struct.new( :image, :model_data_url, :environment) include Aws::Structure end |
#image ⇒ String
The ECR path of the container. Refer to ContainerDefinition for more details.
1001 1002 1003 1004 1005 1006 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1001 class AutoMLContainerDefinition < Struct.new( :image, :model_data_url, :environment) include Aws::Structure end |
#model_data_url ⇒ String
The location of the model artifacts. Refer to ContainerDefinition for more details.
1001 1002 1003 1004 1005 1006 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 1001 class AutoMLContainerDefinition < Struct.new( :image, :model_data_url, :environment) include Aws::Structure end |