Frage

I can create an EC2 instance using java sdk using some image. Currently I am creating it like this

 private static void createInstance()
            throws AmazonServiceException, AmazonClientException, InterruptedException
    {
        RunInstancesRequest runInstancesRequest = new RunInstancesRequest()
        .withInstanceType("m1.small")
        .withImageId("ami-e565ba8c")
        .withMinCount(1)
        .withMaxCount(1)
        .withKeyName("mykey")
        ;
        RunInstancesResult runInstances = ec2.runInstances(runInstancesRequest);


    }

Can someone please guide me that how can I create ec2 instance using snapshot of image instead of image itself?

War es hilfreich?

Lösung

You will have to create image from the snapshot first. Then you can launch instance from that image.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top