Interface FieldError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FieldError.Builder,FieldError>,SdkBuilder<FieldError.Builder,FieldError>,SdkPojo
- Enclosing class:
- FieldError
public static interface FieldError.Builder extends SdkPojo, CopyableBuilder<FieldError.Builder,FieldError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FieldError.BuildererrorCode(String errorCode)The error code from getting a field.FieldError.Builderid(String id)The field identifier that caused the error.FieldError.Buildermessage(String message)The error message from getting a 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
-
errorCode
FieldError.Builder errorCode(String errorCode)
The error code from getting a field.
- Parameters:
errorCode- The error code from getting a field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
id
FieldError.Builder id(String id)
The field identifier that caused the error.
- Parameters:
id- The field identifier that caused the error.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
message
FieldError.Builder message(String message)
The error message from getting a field.
- Parameters:
message- The error message from getting a field.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-