Class: Aws::Textract::Types::OutputConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-textract/types.rb

Overview

Note:

When making an API call, you may pass OutputConfig data as a hash:

{
  s3_bucket: "S3Bucket", # required
  s3_prefix: "S3ObjectName",
}

Sets whether or not your output will go to a user created bucket. Used to set the name of the bucket, and the prefix on the output file.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#s3_bucketString

The name of the bucket your output will go to.

Returns:

  • (String)


925
926
927
928
929
930
# File 'lib/aws-sdk-textract/types.rb', line 925

class OutputConfig < Struct.new(
  :s3_bucket,
  :s3_prefix)
  SENSITIVE = []
  include Aws::Structure
end

#s3_prefixString

The prefix of the object key that the output will be saved to. When not enabled, the prefix will be “textract_output“.

Returns:

  • (String)


925
926
927
928
929
930
# File 'lib/aws-sdk-textract/types.rb', line 925

class OutputConfig < Struct.new(
  :s3_bucket,
  :s3_prefix)
  SENSITIVE = []
  include Aws::Structure
end