Interface TransposedTableOption.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TransposedTableOption.Builder,TransposedTableOption>,SdkBuilder<TransposedTableOption.Builder,TransposedTableOption>,SdkPojo
- Enclosing class:
- TransposedTableOption
@Mutable @NotThreadSafe public static interface TransposedTableOption.Builder extends SdkPojo, CopyableBuilder<TransposedTableOption.Builder,TransposedTableOption>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TransposedTableOption.BuildercolumnIndex(Integer columnIndex)The index of a columns in a transposed table.TransposedTableOption.BuildercolumnType(String columnType)The column type of the column in a transposed table.TransposedTableOption.BuildercolumnType(TransposedColumnType columnType)The column type of the column in a transposed table.TransposedTableOption.BuildercolumnWidth(String columnWidth)The width of a column in a transposed 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
-
columnIndex
TransposedTableOption.Builder columnIndex(Integer columnIndex)
The index of a columns in a transposed table. The index range is 0-9999.
- Parameters:
columnIndex- The index of a columns in a transposed table. The index range is 0-9999.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columnWidth
TransposedTableOption.Builder columnWidth(String columnWidth)
The width of a column in a transposed table.
- Parameters:
columnWidth- The width of a column in a transposed table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columnType
TransposedTableOption.Builder columnType(String columnType)
The column type of the column in a transposed table. Choose one of the following options:
-
ROW_HEADER_COLUMN: Refers to the leftmost column of the row header in the transposed table. -
VALUE_COLUMN: Refers to all value columns in the transposed table.
- Parameters:
columnType- The column type of the column in a transposed table. Choose one of the following options:-
ROW_HEADER_COLUMN: Refers to the leftmost column of the row header in the transposed table. -
VALUE_COLUMN: Refers to all value columns in the transposed table.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TransposedColumnType,TransposedColumnType
-
-
columnType
TransposedTableOption.Builder columnType(TransposedColumnType columnType)
The column type of the column in a transposed table. Choose one of the following options:
-
ROW_HEADER_COLUMN: Refers to the leftmost column of the row header in the transposed table. -
VALUE_COLUMN: Refers to all value columns in the transposed table.
- Parameters:
columnType- The column type of the column in a transposed table. Choose one of the following options:-
ROW_HEADER_COLUMN: Refers to the leftmost column of the row header in the transposed table. -
VALUE_COLUMN: Refers to all value columns in the transposed table.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
TransposedColumnType,TransposedColumnType
-
-
-