Interface S3CatalogTarget.Builder

All Superinterfaces:
Buildable, CopyableBuilder<S3CatalogTarget.Builder,S3CatalogTarget>, SdkBuilder<S3CatalogTarget.Builder,S3CatalogTarget>, SdkPojo
Enclosing class:
S3CatalogTarget

public static interface S3CatalogTarget.Builder extends SdkPojo, CopyableBuilder<S3CatalogTarget.Builder,S3CatalogTarget>
  • Method Details

    • name

      The name of the data target.

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

      The nodes that are inputs to the data target.

      Parameters:
      inputs - The nodes that are inputs to the data target.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • inputs

      S3CatalogTarget.Builder inputs(String... inputs)

      The nodes that are inputs to the data target.

      Parameters:
      inputs - The nodes that are inputs to the data target.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • partitionKeys

      S3CatalogTarget.Builder partitionKeys(Collection<? extends Collection<String>> partitionKeys)

      Specifies native partitioning using a sequence of keys.

      Parameters:
      partitionKeys - Specifies native partitioning using a sequence of keys.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • partitionKeys

      S3CatalogTarget.Builder partitionKeys(Collection<String>... partitionKeys)

      Specifies native partitioning using a sequence of keys.

      Parameters:
      partitionKeys - Specifies native partitioning using a sequence of keys.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • table

      The name of the table in the database to write to.

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

      S3CatalogTarget.Builder database(String database)

      The name of the database to write to.

      Parameters:
      database - The name of the database to write to.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • schemaChangePolicy

      S3CatalogTarget.Builder schemaChangePolicy(CatalogSchemaChangePolicy schemaChangePolicy)

      A policy that specifies update behavior for the crawler.

      Parameters:
      schemaChangePolicy - A policy that specifies update behavior for the crawler.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • schemaChangePolicy

      default S3CatalogTarget.Builder schemaChangePolicy(Consumer<CatalogSchemaChangePolicy.Builder> schemaChangePolicy)

      A policy that specifies update behavior for the crawler.

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

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to schemaChangePolicy(CatalogSchemaChangePolicy).

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