Interface JDBCConnectorSource.Builder

    • Method Detail

      • name

        JDBCConnectorSource.Builder name​(String name)

        The name of the data source.

        Parameters:
        name - The name of the data source.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • connectionName

        JDBCConnectorSource.Builder connectionName​(String connectionName)

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

        Parameters:
        connectionName - The name of the connection that is associated with the connector.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • connectorName

        JDBCConnectorSource.Builder connectorName​(String connectorName)

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

        Parameters:
        connectorName - The name of a connector that assists with accessing the data store in Glue Studio.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • connectionType

        JDBCConnectorSource.Builder connectionType​(String connectionType)

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

        Parameters:
        connectionType - The type of connection, such as marketplace.jdbc or custom.jdbc, designating a connection to a JDBC data store.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • additionalOptions

        JDBCConnectorSource.Builder additionalOptions​(JDBCConnectorOptions additionalOptions)

        Additional connection options for the connector.

        Parameters:
        additionalOptions - Additional connection options for the connector.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • connectionTable

        JDBCConnectorSource.Builder connectionTable​(String connectionTable)

        The name of the table in the data source.

        Parameters:
        connectionTable - The name of the table in the data source.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • query

        JDBCConnectorSource.Builder query​(String query)

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

        Parameters:
        query - The table or SQL query to get the data from. You can specify either ConnectionTable or query, but not both.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • outputSchemas

        JDBCConnectorSource.Builder outputSchemas​(Collection<GlueSchema> outputSchemas)

        Specifies the data schema for the custom JDBC source.

        Parameters:
        outputSchemas - Specifies the data schema for the custom JDBC source.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • outputSchemas

        JDBCConnectorSource.Builder outputSchemas​(GlueSchema... outputSchemas)

        Specifies the data schema for the custom JDBC source.

        Parameters:
        outputSchemas - Specifies the data schema for the custom JDBC source.
        Returns:
        Returns a reference to this object so that method calls can be chained together.