Interface ColumnSchema.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ColumnSchema.Builder,ColumnSchema>
,SdkBuilder<ColumnSchema.Builder,ColumnSchema>
,SdkPojo
- Enclosing class:
- ColumnSchema
public static interface ColumnSchema.Builder extends SdkPojo, CopyableBuilder<ColumnSchema.Builder,ColumnSchema>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ColumnSchema.Builder
dataType(String dataType)
The data type of the column schema.ColumnSchema.Builder
geographicRole(String geographicRole)
The geographic role of the column schema.ColumnSchema.Builder
name(String name)
The name of the column schema.-
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
ColumnSchema.Builder name(String name)
The name of the column schema.
- Parameters:
name
- The name of the column schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataType
ColumnSchema.Builder dataType(String dataType)
The data type of the column schema.
- Parameters:
dataType
- The data type of the column schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
geographicRole
ColumnSchema.Builder geographicRole(String geographicRole)
The geographic role of the column schema.
- Parameters:
geographicRole
- The geographic role of the column schema.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-