Services or capabilities described in AWS documentation might vary by Region. To see the differences applicable to the AWS European Sovereign Cloud Region, see the AWS European Sovereign Cloud User Guide.Use DeleteAlias with a CLI
The following code examples show how to use DeleteAlias.
- CLI
-
- AWS CLI
-
To delete an alias of a Lambda function
The following delete-alias example deletes the alias named LIVE from the my-function Lambda function.
aws lambda delete-alias \
--function-name my-function \
--name LIVE
This command produces no output.
For more information, see Configuring AWS Lambda Function Aliases in the AWS Lambda Developer Guide.
- PowerShell
-
- Tools for PowerShell V4
-
Example 1: This example deletes the Lambda function Alias mentioned in the command.
Remove-LMAlias -FunctionName "MylambdaFunction123" -Name "NewAlias"
- Tools for PowerShell V5
-
Example 1: This example deletes the Lambda function Alias mentioned in the command.
Remove-LMAlias -FunctionName "MylambdaFunction123" -Name "NewAlias"
For a complete list of AWS SDK developer guides and code examples, see
Using Lambda with an AWS SDK.
This topic also includes information about getting started and details about previous SDK versions.