Class: Aws::GlueDataBrew::Types::DatabaseInputDefinition
- Inherits:
-
Struct
- Object
- Struct
- Aws::GlueDataBrew::Types::DatabaseInputDefinition
- Defined in:
- gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb
Overview
When making an API call, you may pass DatabaseInputDefinition data as a hash:
{
glue_connection_name: "GlueConnectionName", # required
database_table_name: "DatabaseTableName",
temp_directory: {
bucket: "Bucket", # required
key: "Key",
bucket_owner: "BucketOwner",
},
query_string: "QueryString",
}
Connection information for dataset input files stored in a database.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#database_table_name ⇒ String
The table within the target database.
-
#glue_connection_name ⇒ String
The Glue Connection that stores the connection information for the target database.
-
#query_string ⇒ String
Custom SQL to run against the provided Glue connection.
-
#temp_directory ⇒ Types::S3Location
Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read input data, or write output from a job.
Instance Attribute Details
#database_table_name ⇒ String
The table within the target database.
1238 1239 1240 1241 1242 1243 1244 1245 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1238 class DatabaseInputDefinition < Struct.new( :glue_connection_name, :database_table_name, :temp_directory, :query_string) SENSITIVE = [] include Aws::Structure end |
#glue_connection_name ⇒ String
The Glue Connection that stores the connection information for the target database.
1238 1239 1240 1241 1242 1243 1244 1245 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1238 class DatabaseInputDefinition < Struct.new( :glue_connection_name, :database_table_name, :temp_directory, :query_string) SENSITIVE = [] include Aws::Structure end |
#query_string ⇒ String
Custom SQL to run against the provided Glue connection. This SQL will be used as the input for DataBrew projects and jobs.
1238 1239 1240 1241 1242 1243 1244 1245 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1238 class DatabaseInputDefinition < Struct.new( :glue_connection_name, :database_table_name, :temp_directory, :query_string) SENSITIVE = [] include Aws::Structure end |
#temp_directory ⇒ Types::S3Location
Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read input data, or write output from a job.
1238 1239 1240 1241 1242 1243 1244 1245 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 1238 class DatabaseInputDefinition < Struct.new( :glue_connection_name, :database_table_name, :temp_directory, :query_string) SENSITIVE = [] include Aws::Structure end |