Class: Aws::Lambda::Types::PutRuntimeManagementConfigResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Lambda::Types::PutRuntimeManagementConfigResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lambda/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #function_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of the function.
 - 
  
    
      #runtime_version_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of the runtime the function is configured to use.
 - 
  
    
      #update_runtime_on  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The runtime update mode.
 
Instance Attribute Details
#function_arn ⇒ String
The ARN of the function
      5541 5542 5543 5544 5545 5546 5547  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 5541 class PutRuntimeManagementConfigResponse < Struct.new( :update_runtime_on, :function_arn, :runtime_version_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.
      5541 5542 5543 5544 5545 5546 5547  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 5541 class PutRuntimeManagementConfigResponse < Struct.new( :update_runtime_on, :function_arn, :runtime_version_arn) SENSITIVE = [] include Aws::Structure end  | 
  
#update_runtime_on ⇒ String
The runtime update mode.
      5541 5542 5543 5544 5545 5546 5547  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 5541 class PutRuntimeManagementConfigResponse < Struct.new( :update_runtime_on, :function_arn, :runtime_version_arn) SENSITIVE = [] include Aws::Structure end  |