Interface RecordColumn.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RecordColumn.Builder,RecordColumn>,SdkBuilder<RecordColumn.Builder,RecordColumn>,SdkPojo
- Enclosing class:
- RecordColumn
public static interface RecordColumn.Builder extends SdkPojo, CopyableBuilder<RecordColumn.Builder,RecordColumn>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RecordColumn.Buildermapping(String mapping)A reference to the data element in the streaming input or the reference data source.RecordColumn.Buildername(String name)The name of the column that is created in the in-application input stream or reference table.RecordColumn.BuildersqlType(String sqlType)The type of column created in the in-application input stream or reference 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
RecordColumn.Builder name(String name)
The name of the column that is created in the in-application input stream or reference table.
- Parameters:
name- The name of the column that is created in the in-application input stream or reference table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mapping
RecordColumn.Builder mapping(String mapping)
A reference to the data element in the streaming input or the reference data source.
- Parameters:
mapping- A reference to the data element in the streaming input or the reference data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sqlType
RecordColumn.Builder sqlType(String sqlType)
The type of column created in the in-application input stream or reference table.
- Parameters:
sqlType- The type of column created in the in-application input stream or reference table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-