23

I am using free tier on Amazon. I had one micro instance, which I terminated. If I create another one (micro) instance, will Amazon start charging me? I can still see my terminated instance in the instances list, but I cannot start or reboot it. Can I somehow delete it from the list?

4

3 に答える 3

48

You cannot perform any operations on the terminated instance. It is displayed in the list until one hour after deletion. After that time it will be removed from the list.

于 2012-10-22T09:56:54.363 に答える
26

AWSは、実行中のインスタンスに対してのみ課金します。一度に1つしか実行していない限り、課金されません。また、終了したインスタンスに対して操作を実行することはできません。インスタンスは、終了してから1時間後に消えます。

更新:価格が変更されました 。無料枠で、12か月間750時間/月の「マイクロインスタンス」を利用できるようになりました。750時間以上または1年後、無料ではありません。そして、これらの投稿が古くなるにつれて、おそらくここで自分で調べるのが最善でしょう:http: //aws.amazon.com/ec2/pricing/

于 2012-10-21T20:21:03.587 に答える
0

try this...

  var terminateInstancesRequest = new TerminateInstancesRequest();
    terminateInstancesRequest.InstanceIds = new List<string>() { InstanceId };
    bool isError = true;
    while (isError)
    {
     try
     {
         amazonEc2client.TerminateInstances(terminateInstancesRequest);
         isError = false;
     }
     catch (Exception ex)
     {
         Console.WriteLine(ex.Message + "\n" + ex.StackTrace);
         isError = true;
     }
    }
于 2016-02-12T08:47:10.023 に答える