Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I haven't found an answer for this yet, and I've tried putting the instance ID I want to turn off/on:

ec2 = aws.createEC2Client(yourAccessKeyId, yourSecretAccessKey);

ec2.call("StartInstances", {}, function(err, result) {
console.log(result);
})

Where in that script do I need to define the instance I want to start?

share|improve this question
Which AWS wrapper for Node are you using? docs.amazonwebservices.com/AWSJavaScriptSDK/latest/AWS/EC2/… clearly describes that .startInstances takes a params object that includes a InstanceIds string array specifying which instances to start. – Joe Dec 28 '12 at 18:44
1  
Joe, that did it. I was calling instanceIds, not InstanceIds...thanks!!! – Node Programmer Dec 28 '12 at 19:01

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.