Use DeleteAlias with a CLI - AWS SDK Code Examples

There are more AWS SDK examples available in the AWS Doc SDK Examples GitHub repo.

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.

  • For API details, see DeleteAlias in AWS 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 AWS Tools for PowerShell Cmdlet Reference.