Interface RegistrationTypeDefinition.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RegistrationTypeDefinition.Builder,RegistrationTypeDefinition>,SdkBuilder<RegistrationTypeDefinition.Builder,RegistrationTypeDefinition>,SdkPojo
- Enclosing class:
- RegistrationTypeDefinition
public static interface RegistrationTypeDefinition.Builder extends SdkPojo, CopyableBuilder<RegistrationTypeDefinition.Builder,RegistrationTypeDefinition>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default RegistrationTypeDefinition.BuilderdisplayHints(Consumer<RegistrationTypeDisplayHints.Builder> displayHints)Provides help information on the registration.RegistrationTypeDefinition.BuilderdisplayHints(RegistrationTypeDisplayHints displayHints)Provides help information on the registration.RegistrationTypeDefinition.BuilderregistrationType(String registrationType)The type of registration form.RegistrationTypeDefinition.BuildersupportedAssociations(Collection<SupportedAssociation> supportedAssociations)The supported association behavior for the registration type.RegistrationTypeDefinition.BuildersupportedAssociations(Consumer<SupportedAssociation.Builder>... supportedAssociations)The supported association behavior for the registration type.RegistrationTypeDefinition.BuildersupportedAssociations(SupportedAssociation... supportedAssociations)The supported association behavior for the registration type.-
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
-
registrationType
RegistrationTypeDefinition.Builder registrationType(String registrationType)
The type of registration form. The list of RegistrationTypes can be found using the DescribeRegistrationTypeDefinitions action.
- Parameters:
registrationType- The type of registration form. The list of RegistrationTypes can be found using the DescribeRegistrationTypeDefinitions action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
supportedAssociations
RegistrationTypeDefinition.Builder supportedAssociations(Collection<SupportedAssociation> supportedAssociations)
The supported association behavior for the registration type.
- Parameters:
supportedAssociations- The supported association behavior for the registration type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
supportedAssociations
RegistrationTypeDefinition.Builder supportedAssociations(SupportedAssociation... supportedAssociations)
The supported association behavior for the registration type.
- Parameters:
supportedAssociations- The supported association behavior for the registration type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
supportedAssociations
RegistrationTypeDefinition.Builder supportedAssociations(Consumer<SupportedAssociation.Builder>... supportedAssociations)
The supported association behavior for the registration type.
This is a convenience method that creates an instance of theSupportedAssociation.Builderavoiding the need to create one manually viaSupportedAssociation.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#supportedAssociations(List.) - Parameters:
supportedAssociations- a consumer that will call methods onSupportedAssociation.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#supportedAssociations(java.util.Collection)
-
displayHints
RegistrationTypeDefinition.Builder displayHints(RegistrationTypeDisplayHints displayHints)
Provides help information on the registration.
- Parameters:
displayHints- Provides help information on the registration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
displayHints
default RegistrationTypeDefinition.Builder displayHints(Consumer<RegistrationTypeDisplayHints.Builder> displayHints)
Provides help information on the registration.
This is a convenience method that creates an instance of theRegistrationTypeDisplayHints.Builderavoiding the need to create one manually viaRegistrationTypeDisplayHints.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todisplayHints(RegistrationTypeDisplayHints).- Parameters:
displayHints- a consumer that will call methods onRegistrationTypeDisplayHints.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
displayHints(RegistrationTypeDisplayHints)
-
-