Interface SelectColumn.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<SelectColumn.Builder,
,SelectColumn> SdkBuilder<SelectColumn.Builder,
,SelectColumn> SdkPojo
- Enclosing class:
SelectColumn
public static interface SelectColumn.Builder
extends SdkPojo, CopyableBuilder<SelectColumn.Builder,SelectColumn>
-
Method Summary
Modifier and TypeMethodDescriptionTrue, if the column name was aliased by the query.databaseName
(String databaseName) Database that has this column.Name of the column.Table within the database that has this column.default SelectColumn.Builder
type
(Consumer<Type.Builder> type) Sets the value of the Type property for this object.Sets the value of the Type property for this object.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 Details
-
name
Name of the column.
- Parameters:
name
- Name of the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
Sets the value of the Type property for this object.- Parameters:
type
- The new value for the Type property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
Sets the value of the Type property for this object. This is a convenience method that creates an instance of theType.Builder
avoiding the need to create one manually viaType.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totype(Type)
.- Parameters:
type
- a consumer that will call methods onType.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
databaseName
Database that has this column.
- Parameters:
databaseName
- Database that has this column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableName
Table within the database that has this column.
- Parameters:
tableName
- Table within the database that has this column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
aliased
True, if the column name was aliased by the query. False otherwise.
- Parameters:
aliased
- True, if the column name was aliased by the query. False otherwise.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-