Class: Aws::Lambda::Types::ImageConfig
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Lambda::Types::ImageConfig
 
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Configuration values that override the container image Dockerfile settings. For more information, see Container image settings.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #command  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies parameters that you want to pass in with ENTRYPOINT. 
- 
  
    
      #entry_point  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the entry point to their application, which is typically the location of the runtime executable. 
- 
  
    
      #working_directory  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the working directory. 
Instance Attribute Details
#command ⇒ Array<String>
Specifies parameters that you want to pass in with ENTRYPOINT.
| 3542 3543 3544 3545 3546 3547 3548 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3542 class ImageConfig < Struct.new( :entry_point, :command, :working_directory) SENSITIVE = [] include Aws::Structure end | 
#entry_point ⇒ Array<String>
Specifies the entry point to their application, which is typically the location of the runtime executable.
| 3542 3543 3544 3545 3546 3547 3548 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3542 class ImageConfig < Struct.new( :entry_point, :command, :working_directory) SENSITIVE = [] include Aws::Structure end | 
#working_directory ⇒ String
Specifies the working directory.
| 3542 3543 3544 3545 3546 3547 3548 | # File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3542 class ImageConfig < Struct.new( :entry_point, :command, :working_directory) SENSITIVE = [] include Aws::Structure end |