Reputation: 2325
Which class/method to use to start/stop a List of amazon EC2 instances with java API? I only know the List<Instance>
Upvotes: 0
Views: 148
Reputation: 42627
startInstances takes a StartInstancesRequest, which has a method .setInstanceIds that allows you to attach a list of instance IDs.
Upvotes: 1