Question

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?

Était-ce utile?

La solution

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

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top