how to delete lamda services in cli?

0

i have installed cli how to select regions and delete the services. it's being so complicated

asked 2 years ago196 views
1 Answer
1

To delete a lambda function in the CLI on a specific region, you can use the command:

aws lambda delete-function \
   --function-name <your function> \
   --region <your region> 

For more information, please see: https://docs.aws.amazon.com/cli/latest/reference/lambda/delete-function.html

profile pictureAWS
EXPERT
Chris_G
answered 2 years ago
profile pictureAWS
EXPERT
reviewed 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions