Interface RegistrationFieldValueInformation.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RegistrationFieldValueInformation.Builder,RegistrationFieldValueInformation>,SdkBuilder<RegistrationFieldValueInformation.Builder,RegistrationFieldValueInformation>,SdkPojo
- Enclosing class:
- RegistrationFieldValueInformation
public static interface RegistrationFieldValueInformation.Builder extends SdkPojo, CopyableBuilder<RegistrationFieldValueInformation.Builder,RegistrationFieldValueInformation>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RegistrationFieldValueInformation.BuilderdeniedReason(String deniedReason)A description of why the registration was denied.RegistrationFieldValueInformation.BuilderfieldPath(String fieldPath)The path to the registration form field.RegistrationFieldValueInformation.BuilderregistrationAttachmentId(String registrationAttachmentId)The unique identifier for the registration attachment.RegistrationFieldValueInformation.BuilderselectChoices(String... selectChoices)An array of values for the form field.RegistrationFieldValueInformation.BuilderselectChoices(Collection<String> selectChoices)An array of values for the form field.RegistrationFieldValueInformation.BuildertextValue(String textValue)The text data for a free form field.-
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
-
fieldPath
RegistrationFieldValueInformation.Builder fieldPath(String fieldPath)
The path to the registration form field. You can use DescribeRegistrationFieldDefinitions for a list of FieldPaths.
- Parameters:
fieldPath- The path to the registration form field. You can use DescribeRegistrationFieldDefinitions for a list of FieldPaths.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
selectChoices
RegistrationFieldValueInformation.Builder selectChoices(Collection<String> selectChoices)
An array of values for the form field.
- Parameters:
selectChoices- An array of values for the form field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
selectChoices
RegistrationFieldValueInformation.Builder selectChoices(String... selectChoices)
An array of values for the form field.
- Parameters:
selectChoices- An array of values for the form field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
textValue
RegistrationFieldValueInformation.Builder textValue(String textValue)
The text data for a free form field.
- Parameters:
textValue- The text data for a free form field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
registrationAttachmentId
RegistrationFieldValueInformation.Builder registrationAttachmentId(String registrationAttachmentId)
The unique identifier for the registration attachment.
- Parameters:
registrationAttachmentId- The unique identifier for the registration attachment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deniedReason
RegistrationFieldValueInformation.Builder deniedReason(String deniedReason)
A description of why the registration was denied.
- Parameters:
deniedReason- A description of why the registration was denied.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-