Interface TaxExemptionType.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TaxExemptionType.Builder,TaxExemptionType>,SdkBuilder<TaxExemptionType.Builder,TaxExemptionType>,SdkPojo
- Enclosing class:
- TaxExemptionType
public static interface TaxExemptionType.Builder extends SdkPojo, CopyableBuilder<TaxExemptionType.Builder,TaxExemptionType>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TaxExemptionType.BuilderapplicableJurisdictions(Collection<Authority> applicableJurisdictions)The tax exemption's applicable jurisdictions.TaxExemptionType.BuilderapplicableJurisdictions(Consumer<Authority.Builder>... applicableJurisdictions)The tax exemption's applicable jurisdictions.TaxExemptionType.BuilderapplicableJurisdictions(Authority... applicableJurisdictions)The tax exemption's applicable jurisdictions.TaxExemptionType.Builderdescription(String description)The tax exemption's type description.TaxExemptionType.BuilderdisplayName(String displayName)The tax exemption's type display name.-
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
-
applicableJurisdictions
TaxExemptionType.Builder applicableJurisdictions(Collection<Authority> applicableJurisdictions)
The tax exemption's applicable jurisdictions.
- Parameters:
applicableJurisdictions- The tax exemption's applicable jurisdictions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicableJurisdictions
TaxExemptionType.Builder applicableJurisdictions(Authority... applicableJurisdictions)
The tax exemption's applicable jurisdictions.
- Parameters:
applicableJurisdictions- The tax exemption's applicable jurisdictions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicableJurisdictions
TaxExemptionType.Builder applicableJurisdictions(Consumer<Authority.Builder>... applicableJurisdictions)
The tax exemption's applicable jurisdictions.
This is a convenience method that creates an instance of theAuthority.Builderavoiding the need to create one manually viaAuthority.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#applicableJurisdictions(List.) - Parameters:
applicableJurisdictions- a consumer that will call methods onAuthority.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#applicableJurisdictions(java.util.Collection)
-
description
TaxExemptionType.Builder description(String description)
The tax exemption's type description.
- Parameters:
description- The tax exemption's type description.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayName
TaxExemptionType.Builder displayName(String displayName)
The tax exemption's type display name.
- Parameters:
displayName- The tax exemption's type display name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-