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