Interface DataCatalogConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<DataCatalogConfig.Builder,DataCatalogConfig>
,SdkBuilder<DataCatalogConfig.Builder,DataCatalogConfig>
,SdkPojo
- Enclosing class:
- DataCatalogConfig
public static interface DataCatalogConfig.Builder extends SdkPojo, CopyableBuilder<DataCatalogConfig.Builder,DataCatalogConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataCatalogConfig.Builder
catalog(String catalog)
The name of the Glue table catalog.DataCatalogConfig.Builder
database(String database)
The name of the Glue table database.DataCatalogConfig.Builder
tableName(String tableName)
The name of the Glue table.-
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
-
tableName
DataCatalogConfig.Builder tableName(String tableName)
The name of the Glue table.
- Parameters:
tableName
- The name of the Glue table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
catalog
DataCatalogConfig.Builder catalog(String catalog)
The name of the Glue table catalog.
- Parameters:
catalog
- The name of the Glue table catalog.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
database
DataCatalogConfig.Builder database(String database)
The name of the Glue table database.
- Parameters:
database
- The name of the Glue table database.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-