Use DeleteAlias with an Amazon SDK or CLI - Amazon Lambda
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Use DeleteAlias with an Amazon SDK or CLI

The following code examples show how to use DeleteAlias.

CLI
Amazon 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 Amazon Lambda Function Aliases in the Amazon Lambda Developer Guide.

  • For API details, see DeleteAlias in Amazon CLI Command Reference.

PowerShell
Tools for PowerShell

Example 1: This example deletes the Lambda function Alias mentioned in the command.

Remove-LMAlias -FunctionName "MylambdaFunction123" -Name "NewAlias"
  • For API details, see DeleteAlias in Amazon Tools for PowerShell Cmdlet Reference.

For a complete list of Amazon SDK developer guides and code examples, see Using Lambda with an Amazon SDK. This topic also includes information about getting started and details about previous SDK versions.