Class: Aws::SageMaker::Types::AppSpecification
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::AppSpecification
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Configuration to run a processing job in a specified container image.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #container_arguments  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The arguments for a container used to run a processing job.
 - 
  
    
      #container_entrypoint  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The entrypoint for a container used to run a processing job.
 - 
  
    
      #image_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The container image to be run by the processing job.
 
Instance Attribute Details
#container_arguments ⇒ Array<String>
The arguments for a container used to run a processing job.
      1451 1452 1453 1454 1455 1456 1457  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 1451 class AppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments) SENSITIVE = [] include Aws::Structure end  | 
  
#container_entrypoint ⇒ Array<String>
The entrypoint for a container used to run a processing job.
      1451 1452 1453 1454 1455 1456 1457  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 1451 class AppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments) SENSITIVE = [] include Aws::Structure end  | 
  
#image_uri ⇒ String
The container image to be run by the processing job.
      1451 1452 1453 1454 1455 1456 1457  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 1451 class AppSpecification < Struct.new( :image_uri, :container_entrypoint, :container_arguments) SENSITIVE = [] include Aws::Structure end  |