Class: Aws::Lambda::Types::DeleteAliasRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::DeleteAliasRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass DeleteAliasRequest data as a hash:
{
function_name: "FunctionName", # required
name: "Alias", # required
}
Instance Attribute Summary collapse
-
#function_name ⇒ String
The Lambda function name for which the alias is created.
-
#name ⇒ String
Name of the alias to delete.
Instance Attribute Details
#function_name ⇒ String
The Lambda function name for which the alias is created. Deleting an alias does not delete the function version to which it is pointing. 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.
672 673 674 675 676 |
# File 'lib/aws-sdk-lambda/types.rb', line 672 class DeleteAliasRequest < Struct.new( :function_name, :name) include Aws::Structure end |
#name ⇒ String
Name of the alias to delete.
672 673 674 675 676 |
# File 'lib/aws-sdk-lambda/types.rb', line 672 class DeleteAliasRequest < Struct.new( :function_name, :name) include Aws::Structure end |