Class: Aws::Greengrass::Types::Function
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Greengrass::Types::Function
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-greengrass/types.rb
 
Overview
Information about a Lambda function.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #function_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of the Lambda function.
 - 
  
    
      #function_configuration  ⇒ Types::FunctionConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The configuration of the Lambda function.
 - 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A descriptive or arbitrary ID for the function.
 
Instance Attribute Details
#function_arn ⇒ String
The ARN of the Lambda function.
      1645 1646 1647 1648 1649 1650 1651  | 
    
      # File 'lib/aws-sdk-greengrass/types.rb', line 1645 class Function < Struct.new( :function_arn, :function_configuration, :id) SENSITIVE = [] include Aws::Structure end  | 
  
#function_configuration ⇒ Types::FunctionConfiguration
The configuration of the Lambda function.
      1645 1646 1647 1648 1649 1650 1651  | 
    
      # File 'lib/aws-sdk-greengrass/types.rb', line 1645 class Function < Struct.new( :function_arn, :function_configuration, :id) SENSITIVE = [] include Aws::Structure end  | 
  
#id ⇒ String
A descriptive or arbitrary ID for the function. This value must be unique within the function definition version. Max length is 128 characters with pattern ”[a-zA-Z0-9:_-]+”.
      1645 1646 1647 1648 1649 1650 1651  | 
    
      # File 'lib/aws-sdk-greengrass/types.rb', line 1645 class Function < Struct.new( :function_arn, :function_configuration, :id) SENSITIVE = [] include Aws::Structure end  |