public class DescribeSpotPriceHistoryResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Contains the output of DescribeSpotPriceHistory.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
nextToken
The token required to retrieve the next set of results.
|
private SdkInternalList<SpotPrice> |
spotPriceHistory
The historical Spot prices.
|
Constructor and Description |
---|
DescribeSpotPriceHistoryResult() |
Modifier and Type | Method and Description |
---|---|
DescribeSpotPriceHistoryResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getNextToken()
The token required to retrieve the next set of results.
|
java.util.List<SpotPrice> |
getSpotPriceHistory()
The historical Spot prices.
|
int |
hashCode() |
void |
setNextToken(java.lang.String nextToken)
The token required to retrieve the next set of results.
|
void |
setSpotPriceHistory(java.util.Collection<SpotPrice> spotPriceHistory)
The historical Spot prices.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
DescribeSpotPriceHistoryResult |
withNextToken(java.lang.String nextToken)
The token required to retrieve the next set of results.
|
DescribeSpotPriceHistoryResult |
withSpotPriceHistory(java.util.Collection<SpotPrice> spotPriceHistory)
The historical Spot prices.
|
DescribeSpotPriceHistoryResult |
withSpotPriceHistory(SpotPrice... spotPriceHistory)
The historical Spot prices.
|
private SdkInternalList<SpotPrice> spotPriceHistory
The historical Spot prices.
private java.lang.String nextToken
The token required to retrieve the next set of results. This value is
null
when there are no more results to return.
public java.util.List<SpotPrice> getSpotPriceHistory()
The historical Spot prices.
public void setSpotPriceHistory(java.util.Collection<SpotPrice> spotPriceHistory)
The historical Spot prices.
spotPriceHistory
- The historical Spot prices.public DescribeSpotPriceHistoryResult withSpotPriceHistory(SpotPrice... spotPriceHistory)
The historical Spot prices.
NOTE: This method appends the values to the existing list (if
any). Use setSpotPriceHistory(java.util.Collection)
or
withSpotPriceHistory(java.util.Collection)
if you want to
override the existing values.
spotPriceHistory
- The historical Spot prices.public DescribeSpotPriceHistoryResult withSpotPriceHistory(java.util.Collection<SpotPrice> spotPriceHistory)
The historical Spot prices.
spotPriceHistory
- The historical Spot prices.public void setNextToken(java.lang.String nextToken)
The token required to retrieve the next set of results. This value is
null
when there are no more results to return.
nextToken
- The token required to retrieve the next set of results. This value
is null
when there are no more results to return.public java.lang.String getNextToken()
The token required to retrieve the next set of results. This value is
null
when there are no more results to return.
null
when there are no more results to
return.public DescribeSpotPriceHistoryResult withNextToken(java.lang.String nextToken)
The token required to retrieve the next set of results. This value is
null
when there are no more results to return.
nextToken
- The token required to retrieve the next set of results. This value
is null
when there are no more results to return.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public DescribeSpotPriceHistoryResult clone()
clone
in class java.lang.Object