Hi I am developing the code to start an instance of an EC2 image on Amazon Web Services, there are 2 steps
1) start the instance 2) allocate our Elastic IP address to the started instance
Is there a way to carry out both of these in a single command?
I will be running a .bat file to start the instance, and then when the instance is running I will use the REST query API to call AssociateAddress. I'm not sure yet how best to determine when the started instance changes from pending to running other than making periodic calls to it. Am I able to associate an IP address to a pending instance?
Stephen