Class: Aws::Rekognition::Types::DetectTextRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::DetectTextRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rekognition/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Types::DetectTextFilters
Optional parameters that let you set the criteria that the text must meet to be included in your response.
-
#image ⇒ Types::Image
The input image as base64-encoded bytes or an Amazon S3 object.
Instance Attribute Details
#filters ⇒ Types::DetectTextFilters
Optional parameters that let you set the criteria that the text must meet to be included in your response.
2529 2530 2531 2532 2533 2534 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2529 class DetectTextRequest < Struct.new( :image, :filters) SENSITIVE = [] include Aws::Structure end |
#image ⇒ Types::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 ‘Bytes` field. For more information, see Images in the Amazon Rekognition developer guide.
2529 2530 2531 2532 2533 2534 |
# File 'lib/aws-sdk-rekognition/types.rb', line 2529 class DetectTextRequest < Struct.new( :image, :filters) SENSITIVE = [] include Aws::Structure end |