Interface PricingDetail.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<PricingDetail.Builder,PricingDetail>
,SdkBuilder<PricingDetail.Builder,PricingDetail>
,SdkPojo
- Enclosing class:
- PricingDetail
public static interface PricingDetail.Builder extends SdkPojo, CopyableBuilder<PricingDetail.Builder,PricingDetail>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PricingDetail.Builder
count(Integer count)
The number of reservations available for the price.PricingDetail.Builder
price(Double price)
The price per instance.-
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, sdkFields
-
-
-
-
Method Detail
-
count
PricingDetail.Builder count(Integer count)
The number of reservations available for the price.
- Parameters:
count
- The number of reservations available for the price.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
price
PricingDetail.Builder price(Double price)
The price per instance.
- Parameters:
price
- The price per instance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-