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?
paramsobject that includes aInstanceIdsstring array specifying which instances to start. – Joe Dec 28 '12 at 18:44