Interface RenewalTerm.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RenewalTerm.Builder,RenewalTerm>,SdkBuilder<RenewalTerm.Builder,RenewalTerm>,SdkPojo
- Enclosing class:
- RenewalTerm
public static interface RenewalTerm.Builder extends SdkPojo, CopyableBuilder<RenewalTerm.Builder,RenewalTerm>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default RenewalTerm.Builderconfiguration(Consumer<RenewalTermConfiguration.Builder> configuration)Additional parameters specified by the acceptor while accepting the term.RenewalTerm.Builderconfiguration(RenewalTermConfiguration configuration)Additional parameters specified by the acceptor while accepting the term.RenewalTerm.Buildertype(String type)Category of the term being updated.-
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
-
configuration
RenewalTerm.Builder configuration(RenewalTermConfiguration configuration)
Additional parameters specified by the acceptor while accepting the term.
- Parameters:
configuration- Additional parameters specified by the acceptor while accepting the term.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
configuration
default RenewalTerm.Builder configuration(Consumer<RenewalTermConfiguration.Builder> configuration)
Additional parameters specified by the acceptor while accepting the term.
This is a convenience method that creates an instance of theRenewalTermConfiguration.Builderavoiding the need to create one manually viaRenewalTermConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toconfiguration(RenewalTermConfiguration).- Parameters:
configuration- a consumer that will call methods onRenewalTermConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
configuration(RenewalTermConfiguration)
-
type
RenewalTerm.Builder type(String type)
Category of the term being updated.
- Parameters:
type- Category of the term being updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-