Interface RegistrationSectionDefinition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RegistrationSectionDefinition.Builder,RegistrationSectionDefinition>,SdkBuilder<RegistrationSectionDefinition.Builder,RegistrationSectionDefinition>,SdkPojo
- Enclosing class:
- RegistrationSectionDefinition
public static interface RegistrationSectionDefinition.Builder extends SdkPojo, CopyableBuilder<RegistrationSectionDefinition.Builder,RegistrationSectionDefinition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default RegistrationSectionDefinition.BuilderdisplayHints(Consumer<RegistrationSectionDisplayHints.Builder> displayHints)The path to the section of the registration.RegistrationSectionDefinition.BuilderdisplayHints(RegistrationSectionDisplayHints displayHints)The path to the section of the registration.RegistrationSectionDefinition.BuildersectionPath(String sectionPath)The path to the section of the registration.-
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
-
sectionPath
RegistrationSectionDefinition.Builder sectionPath(String sectionPath)
The path to the section of the registration.
- Parameters:
sectionPath- The path to the section of the registration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayHints
RegistrationSectionDefinition.Builder displayHints(RegistrationSectionDisplayHints displayHints)
The path to the section of the registration.
- Parameters:
displayHints- The path to the section of the registration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayHints
default RegistrationSectionDefinition.Builder displayHints(Consumer<RegistrationSectionDisplayHints.Builder> displayHints)
The path to the section of the registration.
This is a convenience method that creates an instance of theRegistrationSectionDisplayHints.Builderavoiding the need to create one manually viaRegistrationSectionDisplayHints.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todisplayHints(RegistrationSectionDisplayHints).- Parameters:
displayHints- a consumer that will call methods onRegistrationSectionDisplayHints.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
displayHints(RegistrationSectionDisplayHints)
-
-