Class: Aws::Lambda::Types::CreateAliasRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::CreateAliasRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass CreateAliasRequest data as a hash:
{
function_name: "FunctionName", # required
name: "Alias", # required
function_version: "Version", # required
description: "Description",
}
Instance Attribute Summary collapse
-
#description ⇒ String
Description of the alias.
-
#function_name ⇒ String
Name of the Lambda function for which you want to create an alias.
-
#function_version ⇒ String
Lambda function version for which you are creating the alias.
-
#name ⇒ String
Name for the alias you are creating.
Instance Attribute Details
#description ⇒ String
Description of the alias.
260 261 262 263 264 265 266 |
# File 'lib/aws-sdk-lambda/types.rb', line 260 class CreateAliasRequest < Struct.new( :function_name, :name, :function_version, :description) include Aws::Structure end |
#function_name ⇒ String
Name of the Lambda function for which you want to create an alias. 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.
260 261 262 263 264 265 266 |
# File 'lib/aws-sdk-lambda/types.rb', line 260 class CreateAliasRequest < Struct.new( :function_name, :name, :function_version, :description) include Aws::Structure end |
#function_version ⇒ String
Lambda function version for which you are creating the alias.
260 261 262 263 264 265 266 |
# File 'lib/aws-sdk-lambda/types.rb', line 260 class CreateAliasRequest < Struct.new( :function_name, :name, :function_version, :description) include Aws::Structure end |
#name ⇒ String
Name for the alias you are creating.
260 261 262 263 264 265 266 |
# File 'lib/aws-sdk-lambda/types.rb', line 260 class CreateAliasRequest < Struct.new( :function_name, :name, :function_version, :description) include Aws::Structure end |