Interface LendingDetection.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<LendingDetection.Builder,LendingDetection>
,SdkBuilder<LendingDetection.Builder,LendingDetection>
,SdkPojo
- Enclosing class:
- LendingDetection
public static interface LendingDetection.Builder extends SdkPojo, CopyableBuilder<LendingDetection.Builder,LendingDetection>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description LendingDetection.Builder
confidence(Float confidence)
The confidence level for the text of a detected value in a lending document.default LendingDetection.Builder
geometry(Consumer<Geometry.Builder> geometry)
Sets the value of the Geometry property for this object.LendingDetection.Builder
geometry(Geometry geometry)
Sets the value of the Geometry property for this object.LendingDetection.Builder
selectionStatus(String selectionStatus)
The selection status of a selection element, such as an option button or check box.LendingDetection.Builder
selectionStatus(SelectionStatus selectionStatus)
The selection status of a selection element, such as an option button or check box.LendingDetection.Builder
text(String text)
The text extracted for a detected value in a lending document.-
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
-
text
LendingDetection.Builder text(String text)
The text extracted for a detected value in a lending document.
- Parameters:
text
- The text extracted for a detected value in a lending document.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
selectionStatus
LendingDetection.Builder selectionStatus(String selectionStatus)
The selection status of a selection element, such as an option button or check box.
- Parameters:
selectionStatus
- The selection status of a selection element, such as an option button or check box.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SelectionStatus
,SelectionStatus
-
selectionStatus
LendingDetection.Builder selectionStatus(SelectionStatus selectionStatus)
The selection status of a selection element, such as an option button or check box.
- Parameters:
selectionStatus
- The selection status of a selection element, such as an option button or check box.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SelectionStatus
,SelectionStatus
-
geometry
LendingDetection.Builder geometry(Geometry geometry)
Sets the value of the Geometry property for this object.- Parameters:
geometry
- The new value for the Geometry property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
geometry
default LendingDetection.Builder geometry(Consumer<Geometry.Builder> geometry)
Sets the value of the Geometry property for this object. This is a convenience method that creates an instance of theGeometry.Builder
avoiding the need to create one manually viaGeometry.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed togeometry(Geometry)
.- Parameters:
geometry
- a consumer that will call methods onGeometry.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
geometry(Geometry)
-
confidence
LendingDetection.Builder confidence(Float confidence)
The confidence level for the text of a detected value in a lending document.
- Parameters:
confidence
- The confidence level for the text of a detected value in a lending document.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-