Interface TaxExemptionDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TaxExemptionDetails.Builder,TaxExemptionDetails>,SdkBuilder<TaxExemptionDetails.Builder,TaxExemptionDetails>,SdkPojo
- Enclosing class:
- TaxExemptionDetails
public static interface TaxExemptionDetails.Builder extends SdkPojo, CopyableBuilder<TaxExemptionDetails.Builder,TaxExemptionDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TaxExemptionDetails.BuilderheritageObtainedDetails(Boolean heritageObtainedDetails)The indicator if the tax exemption is inherited from the consolidated billing family management account.TaxExemptionDetails.BuilderheritageObtainedParentEntity(String heritageObtainedParentEntity)The consolidated billing family management account the tax exemption inherited from.TaxExemptionDetails.BuilderheritageObtainedReason(String heritageObtainedReason)The reason of the heritage inheritance.TaxExemptionDetails.BuildertaxExemptions(Collection<TaxExemption> taxExemptions)Tax exemptions.TaxExemptionDetails.BuildertaxExemptions(Consumer<TaxExemption.Builder>... taxExemptions)Tax exemptions.TaxExemptionDetails.BuildertaxExemptions(TaxExemption... taxExemptions)Tax exemptions.-
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
-
-
-
-
Method Detail
-
heritageObtainedDetails
TaxExemptionDetails.Builder heritageObtainedDetails(Boolean heritageObtainedDetails)
The indicator if the tax exemption is inherited from the consolidated billing family management account.
- Parameters:
heritageObtainedDetails- The indicator if the tax exemption is inherited from the consolidated billing family management account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
heritageObtainedParentEntity
TaxExemptionDetails.Builder heritageObtainedParentEntity(String heritageObtainedParentEntity)
The consolidated billing family management account the tax exemption inherited from.
- Parameters:
heritageObtainedParentEntity- The consolidated billing family management account the tax exemption inherited from.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
heritageObtainedReason
TaxExemptionDetails.Builder heritageObtainedReason(String heritageObtainedReason)
The reason of the heritage inheritance.
- Parameters:
heritageObtainedReason- The reason of the heritage inheritance.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
taxExemptions
TaxExemptionDetails.Builder taxExemptions(Collection<TaxExemption> taxExemptions)
Tax exemptions.
- Parameters:
taxExemptions- Tax exemptions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
taxExemptions
TaxExemptionDetails.Builder taxExemptions(TaxExemption... taxExemptions)
Tax exemptions.
- Parameters:
taxExemptions- Tax exemptions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
taxExemptions
TaxExemptionDetails.Builder taxExemptions(Consumer<TaxExemption.Builder>... taxExemptions)
Tax exemptions.
This is a convenience method that creates an instance of theTaxExemption.Builderavoiding the need to create one manually viaTaxExemption.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#taxExemptions(List.) - Parameters:
taxExemptions- a consumer that will call methods onTaxExemption.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#taxExemptions(java.util.Collection)
-
-