Class: Aws::Lambda::Types::UpdateAliasRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::UpdateAliasRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass UpdateAliasRequest data as a hash:
{
function_name: "FunctionName", # required
name: "Alias", # required
function_version: "Version",
description: "Description",
}
Instance Attribute Summary collapse
-
#description ⇒ String
You can change the description of the alias using this parameter.
-
#function_name ⇒ String
The function name for which the alias is created.
-
#function_version ⇒ String
Using this parameter you can change the Lambda function version to which the alias points.
-
#name ⇒ String
The alias name.
Instance Attribute Details
#description ⇒ String
You can change the description of the alias using this parameter.
1859 1860 1861 1862 1863 1864 1865 |
# File 'lib/aws-sdk-lambda/types.rb', line 1859 class UpdateAliasRequest < Struct.new( :function_name, :name, :function_version, :description) include Aws::Structure end |
#function_name ⇒ String
The function name for which the alias is created. Note that the length constraint applies only to the ARN. If you specify only the function name, it is limited to 64 characters in length.
1859 1860 1861 1862 1863 1864 1865 |
# File 'lib/aws-sdk-lambda/types.rb', line 1859 class UpdateAliasRequest < Struct.new( :function_name, :name, :function_version, :description) include Aws::Structure end |
#function_version ⇒ String
Using this parameter you can change the Lambda function version to which the alias points.
1859 1860 1861 1862 1863 1864 1865 |
# File 'lib/aws-sdk-lambda/types.rb', line 1859 class UpdateAliasRequest < Struct.new( :function_name, :name, :function_version, :description) include Aws::Structure end |
#name ⇒ String
The alias name.
1859 1860 1861 1862 1863 1864 1865 |
# File 'lib/aws-sdk-lambda/types.rb', line 1859 class UpdateAliasRequest < Struct.new( :function_name, :name, :function_version, :description) include Aws::Structure end |