Interface DataSetSchema.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataSetSchema.Builder,DataSetSchema>,SdkBuilder<DataSetSchema.Builder,DataSetSchema>,SdkPojo
- Enclosing class:
- DataSetSchema
@Mutable @NotThreadSafe public static interface DataSetSchema.Builder extends SdkPojo, CopyableBuilder<DataSetSchema.Builder,DataSetSchema>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DataSetSchema.BuildercolumnSchemaList(Collection<ColumnSchema> columnSchemaList)A structure containing the list of column schemas.DataSetSchema.BuildercolumnSchemaList(Consumer<ColumnSchema.Builder>... columnSchemaList)A structure containing the list of column schemas.DataSetSchema.BuildercolumnSchemaList(ColumnSchema... columnSchemaList)A structure containing the list of column schemas.-
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
-
columnSchemaList
DataSetSchema.Builder columnSchemaList(Collection<ColumnSchema> columnSchemaList)
A structure containing the list of column schemas.
- Parameters:
columnSchemaList- A structure containing the list of column schemas.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columnSchemaList
DataSetSchema.Builder columnSchemaList(ColumnSchema... columnSchemaList)
A structure containing the list of column schemas.
- Parameters:
columnSchemaList- A structure containing the list of column schemas.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
columnSchemaList
DataSetSchema.Builder columnSchemaList(Consumer<ColumnSchema.Builder>... columnSchemaList)
A structure containing the list of column schemas.
This is a convenience method that creates an instance of theColumnSchema.Builderavoiding the need to create one manually viaColumnSchema.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#columnSchemaList(List.) - Parameters:
columnSchemaList- a consumer that will call methods onColumnSchema.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#columnSchemaList(java.util.Collection)
-
-