Interface ValidationExceptionField.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ValidationExceptionField.Builder,ValidationExceptionField>,SdkBuilder<ValidationExceptionField.Builder,ValidationExceptionField>,SdkPojo
- Enclosing class:
- ValidationExceptionField
public static interface ValidationExceptionField.Builder extends SdkPojo, CopyableBuilder<ValidationExceptionField.Builder,ValidationExceptionField>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ValidationExceptionField.Buildermessage(String message)Explanation of the reason for the validation error.ValidationExceptionField.Buildername(String name)Name of the field which failed validation.-
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
-
name
ValidationExceptionField.Builder name(String name)
Name of the field which failed validation.
- Parameters:
name- Name of the field which failed validation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
message
ValidationExceptionField.Builder message(String message)
Explanation of the reason for the validation error.
- Parameters:
message- Explanation of the reason for the validation error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-