Class: Aws::GlueDataBrew::Types::DatabaseTableOutputOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::DatabaseTableOutputOptions
- Includes:
- Structure
- Defined in:
- 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
-
#table_name ⇒ String
A prefix for the name of a table DataBrew will create in the database.
-
#temp_directory ⇒ Types::S3Location
Represents an Amazon S3 location (bucket name and object key) where DataBrew can store intermediate results.
Instance Attribute Details
#table_name ⇒ String
A prefix for the name of a table DataBrew will create in the database.
831 832 833 834 835 836 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 831 class DatabaseTableOutputOptions < Struct.new( :temp_directory, :table_name) SENSITIVE = [] include Aws::Structure end |
#temp_directory ⇒ Types::S3Location
Represents an Amazon S3 location (bucket name and object key) where DataBrew can store intermediate results.
831 832 833 834 835 836 |
# File 'lib/aws-sdk-gluedatabrew/types.rb', line 831 class DatabaseTableOutputOptions < Struct.new( :temp_directory, :table_name) SENSITIVE = [] include Aws::Structure end |