Class: Aws::Lambda::Types::AliasConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Lambda::Types::AliasConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-lambda/types.rb
 
Overview
Provides configuration information about a Lambda function [alias].
[1]: docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #alias_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Resource Name (ARN) of the alias.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A description of the alias.
 - 
  
    
      #function_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The function version that the alias invokes.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the alias.
 - 
  
    
      #revision_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A unique identifier that changes when you update the alias.
 - 
  
    
      #routing_config  ⇒ Types::AliasRoutingConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The [routing configuration] of the alias.
 
Instance Attribute Details
#alias_arn ⇒ String
The Amazon Resource Name (ARN) of the alias.
      293 294 295 296 297 298 299 300 301 302  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 293 class AliasConfiguration < Struct.new( :alias_arn, :name, :function_version, :description, :routing_config, :revision_id) SENSITIVE = [] include Aws::Structure end  | 
  
#description ⇒ String
A description of the alias.
      293 294 295 296 297 298 299 300 301 302  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 293 class AliasConfiguration < Struct.new( :alias_arn, :name, :function_version, :description, :routing_config, :revision_id) SENSITIVE = [] include Aws::Structure end  | 
  
#function_version ⇒ String
The function version that the alias invokes.
      293 294 295 296 297 298 299 300 301 302  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 293 class AliasConfiguration < Struct.new( :alias_arn, :name, :function_version, :description, :routing_config, :revision_id) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The name of the alias.
      293 294 295 296 297 298 299 300 301 302  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 293 class AliasConfiguration < Struct.new( :alias_arn, :name, :function_version, :description, :routing_config, :revision_id) SENSITIVE = [] include Aws::Structure end  | 
  
#revision_id ⇒ String
A unique identifier that changes when you update the alias.
      293 294 295 296 297 298 299 300 301 302  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 293 class AliasConfiguration < Struct.new( :alias_arn, :name, :function_version, :description, :routing_config, :revision_id) SENSITIVE = [] include Aws::Structure end  | 
  
#routing_config ⇒ Types::AliasRoutingConfiguration
The [routing configuration] of the alias.
[1]: docs.aws.amazon.com/lambda/latest/dg/lambda-traffic-shifting-using-aliases.html
      293 294 295 296 297 298 299 300 301 302  | 
    
      # File 'lib/aws-sdk-lambda/types.rb', line 293 class AliasConfiguration < Struct.new( :alias_arn, :name, :function_version, :description, :routing_config, :revision_id) SENSITIVE = [] include Aws::Structure end  |