Class: Aws::SageMaker::Types::ContainerConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::ContainerConfig
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
The configuration used to run the application image container.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #container_arguments  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The arguments for the container when you’re running the application.
 - 
  
    
      #container_entrypoint  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The entrypoint used to run the application in the container.
 - 
  
    
      #container_environment_variables  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The environment variables to set in the container.
 
Instance Attribute Details
#container_arguments ⇒ Array<String>
The arguments for the container when you’re running the application.
      5226 5227 5228 5229 5230 5231 5232  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 5226 class ContainerConfig < Struct.new( :container_arguments, :container_entrypoint, :container_environment_variables) SENSITIVE = [] include Aws::Structure end  | 
  
#container_entrypoint ⇒ Array<String>
The entrypoint used to run the application in the container.
      5226 5227 5228 5229 5230 5231 5232  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 5226 class ContainerConfig < Struct.new( :container_arguments, :container_entrypoint, :container_environment_variables) SENSITIVE = [] include Aws::Structure end  | 
  
#container_environment_variables ⇒ Hash<String,String>
The environment variables to set in the container
      5226 5227 5228 5229 5230 5231 5232  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 5226 class ContainerConfig < Struct.new( :container_arguments, :container_entrypoint, :container_environment_variables) SENSITIVE = [] include Aws::Structure end  |