Interface ProblemDetails.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProblemDetails.Builder,ProblemDetails>,SdkBuilder<ProblemDetails.Builder,ProblemDetails>,SdkPojo
- Enclosing class:
- ProblemDetails
public static interface ProblemDetails.Builder extends SdkPojo, CopyableBuilder<ProblemDetails.Builder,ProblemDetails>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ProblemDetails.Builderdetail(String detail)A human-readable explanation specific to this occurrence of the problem.ProblemDetails.Buildertitle(String title)A human-readable title of the problem 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
-
detail
ProblemDetails.Builder detail(String detail)
A human-readable explanation specific to this occurrence of the problem.
- Parameters:
detail- A human-readable explanation specific to this occurrence of the problem.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
title
ProblemDetails.Builder title(String title)
A human-readable title of the problem type.
- Parameters:
title- A human-readable title of the problem type.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-