Interface AttachedFileError.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AttachedFileError.Builder,AttachedFileError>,SdkBuilder<AttachedFileError.Builder,AttachedFileError>,SdkPojo
- Enclosing class:
- AttachedFileError
public static interface AttachedFileError.Builder extends SdkPojo, CopyableBuilder<AttachedFileError.Builder,AttachedFileError>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttachedFileError.BuildererrorCode(String errorCode)Status code describing the failure.AttachedFileError.BuildererrorMessage(String errorMessage)Why the attached file couldn't be retrieved.AttachedFileError.BuilderfileId(String fileId)The unique identifier of the attached file resource.-
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
AttachedFileError.Builder errorCode(String errorCode)
Status code describing the failure.
- Parameters:
errorCode- Status code describing the failure.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorMessage
AttachedFileError.Builder errorMessage(String errorMessage)
Why the attached file couldn't be retrieved.
- Parameters:
errorMessage- Why the attached file couldn't be retrieved.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
fileId
AttachedFileError.Builder fileId(String fileId)
The unique identifier of the attached file resource.
- Parameters:
fileId- The unique identifier of the attached file resource.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-