Interface PostgreSQLCatalogTarget.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<PostgreSQLCatalogTarget.Builder,PostgreSQLCatalogTarget>,SdkBuilder<PostgreSQLCatalogTarget.Builder,PostgreSQLCatalogTarget>,SdkPojo
- Enclosing class:
- PostgreSQLCatalogTarget
public static interface PostgreSQLCatalogTarget.Builder extends SdkPojo, CopyableBuilder<PostgreSQLCatalogTarget.Builder,PostgreSQLCatalogTarget>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PostgreSQLCatalogTarget.Builderdatabase(String database)The name of the database to write to.PostgreSQLCatalogTarget.Builderinputs(String... inputs)The nodes that are inputs to the data target.PostgreSQLCatalogTarget.Builderinputs(Collection<String> inputs)The nodes that are inputs to the data target.PostgreSQLCatalogTarget.Buildername(String name)The name of the data target.PostgreSQLCatalogTarget.Buildertable(String table)The name of the table in the database to write to.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
name
PostgreSQLCatalogTarget.Builder name(String 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
PostgreSQLCatalogTarget.Builder inputs(Collection<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.
-
inputs
PostgreSQLCatalogTarget.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.
-
database
PostgreSQLCatalogTarget.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.
-
table
PostgreSQLCatalogTarget.Builder table(String 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.
-
-