Interface DescribeSpotPriceHistoryResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<DescribeSpotPriceHistoryResponse.Builder,DescribeSpotPriceHistoryResponse>,Ec2Response.Builder,SdkBuilder<DescribeSpotPriceHistoryResponse.Builder,DescribeSpotPriceHistoryResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeSpotPriceHistoryResponse
public static interface DescribeSpotPriceHistoryResponse.Builder extends Ec2Response.Builder, SdkPojo, CopyableBuilder<DescribeSpotPriceHistoryResponse.Builder,DescribeSpotPriceHistoryResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeSpotPriceHistoryResponse.BuildernextToken(String nextToken)The token to include in another request to get the next page of items.DescribeSpotPriceHistoryResponse.BuilderspotPriceHistory(Collection<SpotPrice> spotPriceHistory)The historical Spot prices.DescribeSpotPriceHistoryResponse.BuilderspotPriceHistory(Consumer<SpotPrice.Builder>... spotPriceHistory)The historical Spot prices.DescribeSpotPriceHistoryResponse.BuilderspotPriceHistory(SpotPrice... spotPriceHistory)The historical Spot prices.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.ec2.model.Ec2Response.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
DescribeSpotPriceHistoryResponse.Builder nextToken(String nextToken)
The token to include in another request to get the next page of items. This value is an empty string (
"") ornullwhen there are no more items to return.- Parameters:
nextToken- The token to include in another request to get the next page of items. This value is an empty string ("") ornullwhen there are no more items to return.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
spotPriceHistory
DescribeSpotPriceHistoryResponse.Builder spotPriceHistory(Collection<SpotPrice> spotPriceHistory)
The historical Spot prices.
- Parameters:
spotPriceHistory- The historical Spot prices.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
spotPriceHistory
DescribeSpotPriceHistoryResponse.Builder spotPriceHistory(SpotPrice... spotPriceHistory)
The historical Spot prices.
- Parameters:
spotPriceHistory- The historical Spot prices.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
spotPriceHistory
DescribeSpotPriceHistoryResponse.Builder spotPriceHistory(Consumer<SpotPrice.Builder>... spotPriceHistory)
The historical Spot prices.
This is a convenience method that creates an instance of theSpotPrice.Builderavoiding the need to create one manually viaSpotPrice.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#spotPriceHistory(List.) - Parameters:
spotPriceHistory- a consumer that will call methods onSpotPrice.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#spotPriceHistory(java.util.Collection)
-
-