Interface QueryGenerationColumn.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<QueryGenerationColumn.Builder,QueryGenerationColumn>,SdkBuilder<QueryGenerationColumn.Builder,QueryGenerationColumn>,SdkPojo
- Enclosing class:
- QueryGenerationColumn
@Mutable @NotThreadSafe public static interface QueryGenerationColumn.Builder extends SdkPojo, CopyableBuilder<QueryGenerationColumn.Builder,QueryGenerationColumn>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description QueryGenerationColumn.Builderdescription(String description)A description of the column that helps the query engine understand the contents of the column.QueryGenerationColumn.Builderinclusion(String inclusion)Specifies whether to include or exclude the column during query generation.QueryGenerationColumn.Builderinclusion(IncludeExclude inclusion)Specifies whether to include or exclude the column during query generation.QueryGenerationColumn.Buildername(String name)The name of the column 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
QueryGenerationColumn.Builder name(String name)
The name of the column for which the other fields in this object apply.
- Parameters:
name- The name of the column 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
QueryGenerationColumn.Builder description(String description)
A description of the column that helps the query engine understand the contents of the column.
- Parameters:
description- A description of the column that helps the query engine understand the contents of the column.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
inclusion
QueryGenerationColumn.Builder inclusion(String inclusion)
Specifies whether to include or exclude the column during query generation. If you specify
EXCLUDE, the column will be ignored. If you specifyINCLUDE, all other columns in the table will be ignored.- Parameters:
inclusion- Specifies whether to include or exclude the column during query generation. If you specifyEXCLUDE, the column will be ignored. If you specifyINCLUDE, all other columns in the table will be ignored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IncludeExclude,IncludeExclude
-
inclusion
QueryGenerationColumn.Builder inclusion(IncludeExclude inclusion)
Specifies whether to include or exclude the column during query generation. If you specify
EXCLUDE, the column will be ignored. If you specifyINCLUDE, all other columns in the table will be ignored.- Parameters:
inclusion- Specifies whether to include or exclude the column during query generation. If you specifyEXCLUDE, the column will be ignored. If you specifyINCLUDE, all other columns in the table will be ignored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
IncludeExclude,IncludeExclude
-
-