Class: Aws::Rekognition::Types::DetectTextRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::DetectTextRequest
- Defined in:
- gems/aws-sdk-rekognition/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.
2099 2100 2101 2102 2103 2104 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2099 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.
2099 2100 2101 2102 2103 2104 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 2099 class DetectTextRequest < Struct.new( :image, :filters) SENSITIVE = [] include Aws::Structure end |