Lambda pricing for Starting and Stopping Ec2 instances

0

Hi Team,

Please let me know how to calculate the lambda pricing for starting and stopping EC2 instances.

Regards, Rajesh B

3回答
0

Lambda has 2 cost dimensions: Number of invocations and GB-s. I assume you will invoke the function once to launch the EC2 instance and once to stop it. This means 2 invocations. For GB-s you should probably use a function with a small amount of memory. The function will run for a short period as the Start instance and Stop instance are asynchronous. If you want to wait until the instance is actually running or stopped, you will need to run a loop to check the status. In that case, I would recommend to use Step Functions instead of a Lambda function.

profile pictureAWS
エキスパート
Uri
回答済み 1年前
0

Dear Rajesh,

Try using AWS pricing calculator . I don't think it will cost that much if you are going execute lambda 4-6 times a day.

  1. https://calculator.aws/#/addService ,2. https://s3.amazonaws.com/lambda-tools/pricing-calculator.html

Best Regards, Vikas

profile picture
Vikas
回答済み 1年前
0
profile pictureAWS
エキスパート
kentrad
回答済み 1年前
profile picture
エキスパート
レビュー済み 1年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ