user20160519
user20160519

Reputation: 49

AWS Java API for Spot automated bidding maximum price and allocation strategy

I just realized that AWS has new Spot instance launch wizard and adding some new options like Maximum Price and Allocation Strategy options.

Spot instance launch wizard

I'm developing an application that uses Java API, mainly RequestSpotInstancesRequest to launch spot request. However, I can't find any documents or any reference API (including aws cli docs too) that I could use to set those mentioned options. I'm using AWS SDK version 1.11.77. Any suggestion or information how to use these options through API is appreciated.

Upvotes: 1

Views: 160

Answers (1)

Michael - sqlbot
Michael - sqlbot

Reputation: 179314

It's not the same API. This one is called spot fleet.

aws request-spot-fleet ...

API Reference

Note also that a fleet can be a "fleet" of just one, of course.

Upvotes: 1

Related Questions