Interface ListBillEstimatesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,BcmPricingCalculatorResponse.Builder,Buildable,CopyableBuilder<ListBillEstimatesResponse.Builder,ListBillEstimatesResponse>,SdkBuilder<ListBillEstimatesResponse.Builder,ListBillEstimatesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListBillEstimatesResponse
public static interface ListBillEstimatesResponse.Builder extends BcmPricingCalculatorResponse.Builder, SdkPojo, CopyableBuilder<ListBillEstimatesResponse.Builder,ListBillEstimatesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListBillEstimatesResponse.Builderitems(Collection<BillEstimateSummary> items)The list of bill estimates for the account.ListBillEstimatesResponse.Builderitems(Consumer<BillEstimateSummary.Builder>... items)The list of bill estimates for the account.ListBillEstimatesResponse.Builderitems(BillEstimateSummary... items)The list of bill estimates for the account.ListBillEstimatesResponse.BuildernextToken(String nextToken)A token to retrieve the next page of results, if any.-
Methods inherited from interface software.amazon.awssdk.services.bcmpricingcalculator.model.BcmPricingCalculatorResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
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
-
items
ListBillEstimatesResponse.Builder items(Collection<BillEstimateSummary> items)
The list of bill estimates for the account.
- Parameters:
items- The list of bill estimates for the account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListBillEstimatesResponse.Builder items(BillEstimateSummary... items)
The list of bill estimates for the account.
- Parameters:
items- The list of bill estimates for the account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
items
ListBillEstimatesResponse.Builder items(Consumer<BillEstimateSummary.Builder>... items)
The list of bill estimates for the account.
This is a convenience method that creates an instance of theBillEstimateSummary.Builderavoiding the need to create one manually viaBillEstimateSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#items(List.) - Parameters:
items- a consumer that will call methods onBillEstimateSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#items(java.util.Collection)
-
nextToken
ListBillEstimatesResponse.Builder nextToken(String nextToken)
A token to retrieve the next page of results, if any.
- Parameters:
nextToken- A token to retrieve the next page of results, if any.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-