Class: Aws::Textract::Types::S3Object
- Inherits:
-
Struct
- Object
- Struct
- Aws::Textract::Types::S3Object
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-textract/types.rb
Overview
When making an API call, you may pass S3Object data as a hash:
{
bucket: "S3Bucket",
name: "S3ObjectName",
version: "S3ObjectVersion",
}
The S3 bucket name and file name that identifies the document.
The AWS Region for the S3 bucket that contains the document must match the Region that you use for Amazon Textract operations.
For Amazon Textract to process a file in an S3 bucket, the user must have permission to access the S3 bucket and file.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the S3 bucket.
-
#name ⇒ String
The file name of the input document.
-
#version ⇒ String
If the bucket has versioning enabled, you can specify the object version.
Instance Attribute Details
#bucket ⇒ String
The name of the S3 bucket. Note that the # character is not valid in the file name.
1354 1355 1356 1357 1358 1359 1360 |
# File 'lib/aws-sdk-textract/types.rb', line 1354 class S3Object < Struct.new( :bucket, :name, :version) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The file name of the input document. Synchronous operations can use image files that are in JPEG or PNG format. Asynchronous operations also support PDF and TIFF format files.
1354 1355 1356 1357 1358 1359 1360 |
# File 'lib/aws-sdk-textract/types.rb', line 1354 class S3Object < Struct.new( :bucket, :name, :version) SENSITIVE = [] include Aws::Structure end |