Interface QueryGenerationTable.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QueryGenerationTable.Builder,QueryGenerationTable>,SdkBuilder<QueryGenerationTable.Builder,QueryGenerationTable>,SdkPojo
- Enclosing class:
- QueryGenerationTable
@Mutable @NotThreadSafe public static interface QueryGenerationTable.Builder extends SdkPojo, CopyableBuilder<QueryGenerationTable.Builder,QueryGenerationTable>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueryGenerationTable.Buildercolumns(Collection<QueryGenerationColumn> columns)An array of objects, each of which defines information about a column in the table.QueryGenerationTable.Buildercolumns(Consumer<QueryGenerationColumn.Builder>... columns)An array of objects, each of which defines information about a column in the table.QueryGenerationTable.Buildercolumns(QueryGenerationColumn... columns)An array of objects, each of which defines information about a column in the table.QueryGenerationTable.Builderdescription(String description)A description of the table that helps the query engine understand the contents of the table.QueryGenerationTable.Builderinclusion(String inclusion)Specifies whether to include or exclude the table during query generation.QueryGenerationTable.Builderinclusion(IncludeExclude inclusion)Specifies whether to include or exclude the table during query generation.QueryGenerationTable.Buildername(String name)The name of the table for which the other fields in this object apply.-
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
-
name
QueryGenerationTable.Builder name(String name)
The name of the table for which the other fields in this object apply.
- Parameters:
name- The name of the table for which the other fields in this object apply.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
QueryGenerationTable.Builder description(String description)
A description of the table that helps the query engine understand the contents of the table.
- Parameters:
description- A description of the table that helps the query engine understand the contents of the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inclusion
QueryGenerationTable.Builder inclusion(String inclusion)
Specifies whether to include or exclude the table during query generation. If you specify
EXCLUDE, the table will be ignored. If you specifyINCLUDE, all other tables will be ignored.- Parameters:
inclusion- Specifies whether to include or exclude the table during query generation. If you specifyEXCLUDE, the table will be ignored. If you specifyINCLUDE, all other tables will be ignored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IncludeExclude,IncludeExclude
-
inclusion
QueryGenerationTable.Builder inclusion(IncludeExclude inclusion)
Specifies whether to include or exclude the table during query generation. If you specify
EXCLUDE, the table will be ignored. If you specifyINCLUDE, all other tables will be ignored.- Parameters:
inclusion- Specifies whether to include or exclude the table during query generation. If you specifyEXCLUDE, the table will be ignored. If you specifyINCLUDE, all other tables will be ignored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IncludeExclude,IncludeExclude
-
columns
QueryGenerationTable.Builder columns(Collection<QueryGenerationColumn> columns)
An array of objects, each of which defines information about a column in the table.
- Parameters:
columns- An array of objects, each of which defines information about a column in the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columns
QueryGenerationTable.Builder columns(QueryGenerationColumn... columns)
An array of objects, each of which defines information about a column in the table.
- Parameters:
columns- An array of objects, each of which defines information about a column in the table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columns
QueryGenerationTable.Builder columns(Consumer<QueryGenerationColumn.Builder>... columns)
An array of objects, each of which defines information about a column in the table.
This is a convenience method that creates an instance of theQueryGenerationColumn.Builderavoiding the need to create one manually viaQueryGenerationColumn.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#columns(List.) - Parameters:
columns- a consumer that will call methods onQueryGenerationColumn.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#columns(java.util.Collection)
-
-