Interface MySQLCatalogTarget.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MySQLCatalogTarget.Builder,MySQLCatalogTarget>,SdkBuilder<MySQLCatalogTarget.Builder,MySQLCatalogTarget>,SdkPojo
- Enclosing class:
- MySQLCatalogTarget
public static interface MySQLCatalogTarget.Builder extends SdkPojo, CopyableBuilder<MySQLCatalogTarget.Builder,MySQLCatalogTarget>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MySQLCatalogTarget.Builderdatabase(String database)The name of the database to write to.MySQLCatalogTarget.Builderinputs(String... inputs)The nodes that are inputs to the data target.MySQLCatalogTarget.Builderinputs(Collection<String> inputs)The nodes that are inputs to the data target.MySQLCatalogTarget.Buildername(String name)The name of the data target.MySQLCatalogTarget.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, sdkFields
-
-
-
-
Method Detail
-
name
MySQLCatalogTarget.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
MySQLCatalogTarget.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
MySQLCatalogTarget.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
MySQLCatalogTarget.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
MySQLCatalogTarget.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.
-
-