Class: Aws::Greengrass::Types::FunctionDefinitionVersion
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Greengrass::Types::FunctionDefinitionVersion
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-greengrass/types.rb
 
Overview
Information about a function definition version.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #default_config  ⇒ Types::FunctionDefaultConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The default configuration that applies to all Lambda functions in this function definition version.
 - 
  
    
      #functions  ⇒ Array<Types::Function> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of Lambda functions in this function definition version.
 
Instance Attribute Details
#default_config ⇒ Types::FunctionDefaultConfig
The default configuration that applies to all Lambda functions in this function definition version. Individual Lambda functions can override these settings.
      1803 1804 1805 1806 1807 1808  | 
    
      # File 'lib/aws-sdk-greengrass/types.rb', line 1803 class FunctionDefinitionVersion < Struct.new( :default_config, :functions) SENSITIVE = [] include Aws::Structure end  | 
  
#functions ⇒ Array<Types::Function>
A list of Lambda functions in this function definition version.
      1803 1804 1805 1806 1807 1808  | 
    
      # File 'lib/aws-sdk-greengrass/types.rb', line 1803 class FunctionDefinitionVersion < Struct.new( :default_config, :functions) SENSITIVE = [] include Aws::Structure end  |