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
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.
779 780 781 782 783 784 785 786 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 779 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.
779 780 781 782 783 784 785 786 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 779 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.
779 780 781 782 783 784 785 786 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 779 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.
779 780 781 782 783 784 785 786 |
# File 'gems/aws-sdk-gluedatabrew/lib/aws-sdk-gluedatabrew/types.rb', line 779 class DatabaseInputDefinition < Struct.new( :glue_connection_name, :database_table_name, :temp_directory, :query_string) SENSITIVE = [] include Aws::Structure end |