Class: Aws::GlueDataBrew::Types::DatabaseOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::DatabaseOutput
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
Note:
When making an API call, you may pass DatabaseOutput data as a hash:
{
glue_connection_name: "GlueConnectionName", # required
database_options: { # required
temp_directory: {
bucket: "Bucket", # required
key: "Key",
bucket_owner: "BucketOwner",
},
table_name: "DatabaseTableName", # required
},
database_output_mode: "NEW_TABLE", # accepts NEW_TABLE
}
Represents a JDBC database output object which defines the output destination for a DataBrew recipe job to write into.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#database_options ⇒ Types::DatabaseTableOutputOptions
Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.
-
#database_output_mode ⇒ String
The output mode to write into the database.
-
#glue_connection_name ⇒ String
The Glue connection that stores the connection information for the target database.
Instance Attribute Details
#database_options ⇒ Types::DatabaseTableOutputOptions
Represents options that specify how and where DataBrew writes the database output generated by recipe jobs.
1283 1284 1285 1286 1287 1288 1289 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1283 class DatabaseOutput < Struct.new( :glue_connection_name, :database_options, :database_output_mode) SENSITIVE = [] include Aws::Structure end |
#database_output_mode ⇒ String
The output mode to write into the database. Currently supported option: NEW_TABLE.
1283 1284 1285 1286 1287 1288 1289 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1283 class DatabaseOutput < Struct.new( :glue_connection_name, :database_options, :database_output_mode) SENSITIVE = [] include Aws::Structure end |
#glue_connection_name ⇒ String
The Glue connection that stores the connection information for the target database.
1283 1284 1285 1286 1287 1288 1289 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1283 class DatabaseOutput < Struct.new( :glue_connection_name, :database_options, :database_output_mode) SENSITIVE = [] include Aws::Structure end |