Interface SignatureDetection.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SignatureDetection.Builder,SignatureDetection>,SdkBuilder<SignatureDetection.Builder,SignatureDetection>,SdkPojo
- Enclosing class:
- SignatureDetection
public static interface SignatureDetection.Builder extends SdkPojo, CopyableBuilder<SignatureDetection.Builder,SignatureDetection>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description SignatureDetection.Builderconfidence(Float confidence)The confidence, from 0 to 100, in the predicted values for a detected signature.default SignatureDetection.Buildergeometry(Consumer<Geometry.Builder> geometry)Sets the value of the Geometry property for this object.SignatureDetection.Buildergeometry(Geometry geometry)Sets the value of the Geometry property for this object.-
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
-
confidence
SignatureDetection.Builder confidence(Float confidence)
The confidence, from 0 to 100, in the predicted values for a detected signature.
- Parameters:
confidence- The confidence, from 0 to 100, in the predicted values for a detected signature.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
geometry
SignatureDetection.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 SignatureDetection.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.Builderavoiding the need to create one manually viaGeometry.builder().When the
Consumercompletes,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)
-
-