amazonka-glue-2.0: Amazon Glue SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.Glue.Types.JDBCConnectorSource

Description

 
Synopsis

Documentation

data JDBCConnectorSource Source #

Specifies a connector to a JDBC data source.

See: newJDBCConnectorSource smart constructor.

Constructors

JDBCConnectorSource' 

Fields

Instances

Instances details
FromJSON JDBCConnectorSource Source # 
Instance details

Defined in Amazonka.Glue.Types.JDBCConnectorSource

ToJSON JDBCConnectorSource Source # 
Instance details

Defined in Amazonka.Glue.Types.JDBCConnectorSource

Generic JDBCConnectorSource Source # 
Instance details

Defined in Amazonka.Glue.Types.JDBCConnectorSource

Associated Types

type Rep JDBCConnectorSource :: Type -> Type #

Read JDBCConnectorSource Source # 
Instance details

Defined in Amazonka.Glue.Types.JDBCConnectorSource

Show JDBCConnectorSource Source # 
Instance details

Defined in Amazonka.Glue.Types.JDBCConnectorSource

NFData JDBCConnectorSource Source # 
Instance details

Defined in Amazonka.Glue.Types.JDBCConnectorSource

Methods

rnf :: JDBCConnectorSource -> () #

Eq JDBCConnectorSource Source # 
Instance details

Defined in Amazonka.Glue.Types.JDBCConnectorSource

Hashable JDBCConnectorSource Source # 
Instance details

Defined in Amazonka.Glue.Types.JDBCConnectorSource

type Rep JDBCConnectorSource Source # 
Instance details

Defined in Amazonka.Glue.Types.JDBCConnectorSource

newJDBCConnectorSource Source #

Create a value of JDBCConnectorSource with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:additionalOptions:JDBCConnectorSource', jDBCConnectorSource_additionalOptions - Additional connection options for the connector.

$sel:connectionTable:JDBCConnectorSource', jDBCConnectorSource_connectionTable - The name of the table in the data source.

$sel:outputSchemas:JDBCConnectorSource', jDBCConnectorSource_outputSchemas - Specifies the data schema for the custom JDBC source.

$sel:query:JDBCConnectorSource', jDBCConnectorSource_query - The table or SQL query to get the data from. You can specify either ConnectionTable or query, but not both.

$sel:name:JDBCConnectorSource', jDBCConnectorSource_name - The name of the data source.

$sel:connectionName:JDBCConnectorSource', jDBCConnectorSource_connectionName - The name of the connection that is associated with the connector.

$sel:connectorName:JDBCConnectorSource', jDBCConnectorSource_connectorName - The name of a connector that assists with accessing the data store in Glue Studio.

$sel:connectionType:JDBCConnectorSource', jDBCConnectorSource_connectionType - The type of connection, such as marketplace.jdbc or custom.jdbc, designating a connection to a JDBC data store.

jDBCConnectorSource_connectionTable :: Lens' JDBCConnectorSource (Maybe Text) Source #

The name of the table in the data source.

jDBCConnectorSource_outputSchemas :: Lens' JDBCConnectorSource (Maybe [GlueSchema]) Source #

Specifies the data schema for the custom JDBC source.

jDBCConnectorSource_query :: Lens' JDBCConnectorSource (Maybe Text) Source #

The table or SQL query to get the data from. You can specify either ConnectionTable or query, but not both.

jDBCConnectorSource_connectionName :: Lens' JDBCConnectorSource Text Source #

The name of the connection that is associated with the connector.

jDBCConnectorSource_connectorName :: Lens' JDBCConnectorSource Text Source #

The name of a connector that assists with accessing the data store in Glue Studio.

jDBCConnectorSource_connectionType :: Lens' JDBCConnectorSource Text Source #

The type of connection, such as marketplace.jdbc or custom.jdbc, designating a connection to a JDBC data store.