Interface ResponseConfiguration.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ResponseConfiguration.Builder,ResponseConfiguration>,SdkBuilder<ResponseConfiguration.Builder,ResponseConfiguration>,SdkPojo
- Enclosing class:
- ResponseConfiguration
@Mutable @NotThreadSafe public static interface ResponseConfiguration.Builder extends SdkPojo, CopyableBuilder<ResponseConfiguration.Builder,ResponseConfiguration>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResponseConfiguration.BuildererrorPath(String errorPath)The JSON path expression that identifies where error information is located within API responses when requests fail.ResponseConfiguration.BuilderresultPath(String resultPath)The JSON path expression that identifies where the actual result data is located within the API response.-
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
-
resultPath
ResponseConfiguration.Builder resultPath(String resultPath)
The JSON path expression that identifies where the actual result data is located within the API response.
- Parameters:
resultPath- The JSON path expression that identifies where the actual result data is located within the API response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
errorPath
ResponseConfiguration.Builder errorPath(String errorPath)
The JSON path expression that identifies where error information is located within API responses when requests fail.
- Parameters:
errorPath- The JSON path expression that identifies where error information is located within API responses when requests fail.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-