Class: Aws::Lambda::Types::GetFunctionResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Lambda::Types::GetFunctionResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lambda/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #code  ⇒ Types::FunctionCodeLocation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The deployment package of the function or version.
 - 
  
    
      #concurrency  ⇒ Types::Concurrency 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The function’s [reserved concurrency].
 - 
  
    
      #configuration  ⇒ Types::FunctionConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The configuration of the function or version.
 - 
  
    
      #tags  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The function’s [tags].
 - 
  
    
      #tags_error  ⇒ Types::TagsError 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An object that contains details about an error related to retrieving tags.
 
Instance Attribute Details
#code ⇒ Types::FunctionCodeLocation
The deployment package of the function or version.
      2949 2950 2951 2952 2953 2954 2955 2956 2957  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 2949 class GetFunctionResponse < Struct.new( :configuration, :code, :tags, :tags_error, :concurrency) SENSITIVE = [] include Aws::Structure end  | 
  
#concurrency ⇒ Types::Concurrency
The function’s [reserved concurrency].
[1]: docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html
      2949 2950 2951 2952 2953 2954 2955 2956 2957  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 2949 class GetFunctionResponse < Struct.new( :configuration, :code, :tags, :tags_error, :concurrency) SENSITIVE = [] include Aws::Structure end  | 
  
#configuration ⇒ Types::FunctionConfiguration
The configuration of the function or version.
      2949 2950 2951 2952 2953 2954 2955 2956 2957  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 2949 class GetFunctionResponse < Struct.new( :configuration, :code, :tags, :tags_error, :concurrency) SENSITIVE = [] include Aws::Structure end  | 
  
#tags ⇒ Hash<String,String>
The function’s [tags]. Lambda returns tag data only if you have explicit allow permissions for [lambda:ListTags].
[1]: docs.aws.amazon.com/lambda/latest/dg/tagging.html [2]: docs.aws.amazon.com/https:/docs.aws.amazon.com/lambda/latest/api/API_ListTags.html
      2949 2950 2951 2952 2953 2954 2955 2956 2957  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 2949 class GetFunctionResponse < Struct.new( :configuration, :code, :tags, :tags_error, :concurrency) SENSITIVE = [] include Aws::Structure end  | 
  
#tags_error ⇒ Types::TagsError
An object that contains details about an error related to retrieving tags.
      2949 2950 2951 2952 2953 2954 2955 2956 2957  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 2949 class GetFunctionResponse < Struct.new( :configuration, :code, :tags, :tags_error, :concurrency) SENSITIVE = [] include Aws::Structure end  |