Interface TableIdentifier.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableIdentifier.Builder,TableIdentifier>,SdkBuilder<TableIdentifier.Builder,TableIdentifier>,SdkPojo
- Enclosing class:
- TableIdentifier
public static interface TableIdentifier.Builder extends SdkPojo, CopyableBuilder<TableIdentifier.Builder,TableIdentifier>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableIdentifier.BuildercatalogId(String catalogId)The ID of the Data Catalog in which the table resides.TableIdentifier.BuilderdatabaseName(String databaseName)The name of the catalog database that contains the target table.TableIdentifier.Buildername(String name)The name of the target table.TableIdentifier.Builderregion(String region)Region of the target 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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
catalogId
TableIdentifier.Builder catalogId(String catalogId)
The ID of the Data Catalog in which the table resides.
- Parameters:
catalogId- The ID of the Data Catalog in which the table resides.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
databaseName
TableIdentifier.Builder databaseName(String databaseName)
The name of the catalog database that contains the target table.
- Parameters:
databaseName- The name of the catalog database that contains the target table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
TableIdentifier.Builder name(String name)
The name of the target table.
- Parameters:
name- The name of the target table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
region
TableIdentifier.Builder region(String region)
Region of the target table.
- Parameters:
region- Region of the target table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-