Class: Aws::GlueDataBrew::Types::DatabaseTableOutputOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::DatabaseTableOutputOptions
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass DatabaseTableOutputOptions data as a hash:
{
temp_directory: {
bucket: "Bucket", # required
key: "Key",
bucket_owner: "BucketOwner",
},
table_name: "DatabaseTableName", # required
}
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.
1318 1319 1320 1321 1322 1323 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1318 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.
1318 1319 1320 1321 1322 1323 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1318 class DatabaseTableOutputOptions < Struct.new( :temp_directory, :table_name) SENSITIVE = [] include Aws::Structure end |