Interface DetectTextRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<DetectTextRequest.Builder,DetectTextRequest>,RekognitionRequest.Builder,SdkBuilder<DetectTextRequest.Builder,DetectTextRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- DetectTextRequest
public static interface DetectTextRequest.Builder extends RekognitionRequest.Builder, SdkPojo, CopyableBuilder<DetectTextRequest.Builder,DetectTextRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default DetectTextRequest.Builderfilters(Consumer<DetectTextFilters.Builder> filters)Optional parameters that let you set the criteria that the text must meet to be included in your response.DetectTextRequest.Builderfilters(DetectTextFilters filters)Optional parameters that let you set the criteria that the text must meet to be included in your response.default DetectTextRequest.Builderimage(Consumer<Image.Builder> image)The input image as base64-encoded bytes or an Amazon S3 object.DetectTextRequest.Builderimage(Image image)The input image as base64-encoded bytes or an Amazon S3 object.DetectTextRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)DetectTextRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.rekognition.model.RekognitionRequest.Builder
build
-
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
-
image
DetectTextRequest.Builder image(Image image)
The input image as base64-encoded bytes or an Amazon S3 object. If you use the AWS CLI to call Amazon Rekognition operations, you can't pass image bytes.
If you are using an AWS SDK to call Amazon Rekognition, you might not need to base64-encode image bytes passed using the
Bytesfield. For more information, see Images in the Amazon Rekognition developer guide.- Parameters:
image- The input image as base64-encoded bytes or an Amazon S3 object. If you use the AWS CLI to call Amazon Rekognition operations, you can't pass image bytes.If you are using an AWS SDK to call Amazon Rekognition, you might not need to base64-encode image bytes passed using the
Bytesfield. For more information, see Images in the Amazon Rekognition developer guide.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
image
default DetectTextRequest.Builder image(Consumer<Image.Builder> image)
The input image as base64-encoded bytes or an Amazon S3 object. If you use the AWS CLI to call Amazon Rekognition operations, you can't pass image bytes.
If you are using an AWS SDK to call Amazon Rekognition, you might not need to base64-encode image bytes passed using the
This is a convenience method that creates an instance of theBytesfield. For more information, see Images in the Amazon Rekognition developer guide.Image.Builderavoiding the need to create one manually viaImage.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toimage(Image).- Parameters:
image- a consumer that will call methods onImage.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
image(Image)
-
filters
DetectTextRequest.Builder filters(DetectTextFilters filters)
Optional parameters that let you set the criteria that the text must meet to be included in your response.
- Parameters:
filters- Optional parameters that let you set the criteria that the text must meet to be included in your response.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
filters
default DetectTextRequest.Builder filters(Consumer<DetectTextFilters.Builder> filters)
Optional parameters that let you set the criteria that the text must meet to be included in your response.
This is a convenience method that creates an instance of theDetectTextFilters.Builderavoiding the need to create one manually viaDetectTextFilters.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofilters(DetectTextFilters).- Parameters:
filters- a consumer that will call methods onDetectTextFilters.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
filters(DetectTextFilters)
-
overrideConfiguration
DetectTextRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
DetectTextRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-