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 version alias.
Instance Attribute Summary collapse
-
#alias_arn ⇒ String
Lambda function ARN that is qualified using the alias name as the suffix.
-
#description ⇒ String
Alias description.
-
#function_version ⇒ String
Function version to which the alias points.
-
#name ⇒ String
Alias name.
Instance Attribute Details
#alias_arn ⇒ String
Lambda function ARN that is qualified using the alias name as the suffix. For example, if you create an alias called ‘BETA` that points to a helloworld function version, the ARN is `arn:aws:lambda:aws-regions:acct-id:function:helloworld:BETA`.
221 222 223 224 225 226 227 |
# File 'lib/aws-sdk-lambda/types.rb', line 221 class AliasConfiguration < Struct.new( :alias_arn, :name, :function_version, :description) include Aws::Structure end |
#description ⇒ String
Alias description.
221 222 223 224 225 226 227 |
# File 'lib/aws-sdk-lambda/types.rb', line 221 class AliasConfiguration < Struct.new( :alias_arn, :name, :function_version, :description) include Aws::Structure end |
#function_version ⇒ String
Function version to which the alias points.
221 222 223 224 225 226 227 |
# File 'lib/aws-sdk-lambda/types.rb', line 221 class AliasConfiguration < Struct.new( :alias_arn, :name, :function_version, :description) include Aws::Structure end |
#name ⇒ String
Alias name.
221 222 223 224 225 226 227 |
# File 'lib/aws-sdk-lambda/types.rb', line 221 class AliasConfiguration < Struct.new( :alias_arn, :name, :function_version, :description) include Aws::Structure end |