Interface QueryGenerationTable.Builder

  • Method Details

    • columns

      An array of objects, each of which defines information about a column in the table.

      Parameters:
      columns - An array of objects, each of which defines information about a column in the table.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • columns

      An array of objects, each of which defines information about a column in the table.

      Parameters:
      columns - An array of objects, each of which defines information about a column in the table.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • columns

      An array of objects, each of which defines information about a column in the table.

      This is a convenience method that creates an instance of the QueryGenerationColumn.Builder avoiding the need to create one manually via QueryGenerationColumn.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to columns(List<QueryGenerationColumn>).

      Parameters:
      columns - a consumer that will call methods on QueryGenerationColumn.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • description

      QueryGenerationTable.Builder description(String description)

      A description of the table that helps the query engine understand the contents of the table.

      Parameters:
      description - A description of the table that helps the query engine understand the contents of the table.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • inclusion

      QueryGenerationTable.Builder inclusion(String inclusion)

      Specifies whether to include or exclude the table during query generation. If you specify EXCLUDE, the table will be ignored. If you specify INCLUDE, all other tables will be ignored.

      Parameters:
      inclusion - Specifies whether to include or exclude the table during query generation. If you specify EXCLUDE, the table will be ignored. If you specify INCLUDE, all other tables will be ignored.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • inclusion

      Specifies whether to include or exclude the table during query generation. If you specify EXCLUDE, the table will be ignored. If you specify INCLUDE, all other tables will be ignored.

      Parameters:
      inclusion - Specifies whether to include or exclude the table during query generation. If you specify EXCLUDE, the table will be ignored. If you specify INCLUDE, all other tables will be ignored.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • name

      The name of the table for which the other fields in this object apply.

      Parameters:
      name - The name of the table for which the other fields in this object apply.
      Returns:
      Returns a reference to this object so that method calls can be chained together.