Class: Aws::Lambda::Types::GetRuntimeManagementConfigResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Lambda::Types::GetRuntimeManagementConfigResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lambda/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #function_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of your function.
 - 
  
    
      #runtime_version_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of the runtime the function is configured to use.
 - 
  
    
      #update_runtime_on  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The current runtime update mode of the function.
 
Instance Attribute Details
#function_arn ⇒ String
The Amazon Resource Name (ARN) of your function.
      3365 3366 3367 3368 3369 3370 3371  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 3365 class GetRuntimeManagementConfigResponse < Struct.new( :update_runtime_on, :runtime_version_arn, :function_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#runtime_version_arn ⇒ String
The ARN of the runtime the function is configured to use. If the runtime update mode is Manual, the ARN is returned, otherwise ‘null` is returned.
      3365 3366 3367 3368 3369 3370 3371  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 3365 class GetRuntimeManagementConfigResponse < Struct.new( :update_runtime_on, :runtime_version_arn, :function_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#update_runtime_on ⇒ String
The current runtime update mode of the function.
      3365 3366 3367 3368 3369 3370 3371  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 3365 class GetRuntimeManagementConfigResponse < Struct.new( :update_runtime_on, :runtime_version_arn, :function_arn) SENSITIVE = [] include Aws::Structure end  |