Class: Aws::GlueDataBrew::Types::DatabaseTableOutputOptions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb

Overview

Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#table_nameString

A prefix for the name of a table DataBrew will create in the database.

Returns:

  • (String)


831
832
833
834
835
836
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 831

class DatabaseTableOutputOptions < Struct.new(
  :temp_directory,
  :table_name)
  SENSITIVE = []
  include Aws::Structure
end

#temp_directoryTypes::S3Location

Represents an Amazon S3 location (bucket name and object key) where DataBrew can store intermediate results.

Returns:



831
832
833
834
835
836
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 831

class DatabaseTableOutputOptions < Struct.new(
  :temp_directory,
  :table_name)
  SENSITIVE = []
  include Aws::Structure
end