Interface TableMember.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TableMember.Builder,TableMember>,SdkBuilder<TableMember.Builder,TableMember>,SdkPojo
- Enclosing class:
- TableMember
public static interface TableMember.Builder extends SdkPojo, CopyableBuilder<TableMember.Builder,TableMember>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TableMember.Buildername(String name)The name of the table.TableMember.Builderschema(String schema)The schema containing the table.TableMember.Buildertype(String type)The type of the 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
-
name
TableMember.Builder name(String name)
The name of the table.
- Parameters:
name- The name of the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schema
TableMember.Builder schema(String schema)
The schema containing the table.
- Parameters:
schema- The schema containing the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
TableMember.Builder type(String type)
The type of the table. Possible values include TABLE, VIEW, SYSTEM TABLE, GLOBAL TEMPORARY, LOCAL TEMPORARY, ALIAS, and SYNONYM.
- Parameters:
type- The type of the table. Possible values include TABLE, VIEW, SYSTEM TABLE, GLOBAL TEMPORARY, LOCAL TEMPORARY, ALIAS, and SYNONYM.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-