Interface SnowflakeTableSchema.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SnowflakeTableSchema.Builder,SnowflakeTableSchema>,SdkBuilder<SnowflakeTableSchema.Builder,SnowflakeTableSchema>,SdkPojo
- Enclosing class:
- SnowflakeTableSchema
public static interface SnowflakeTableSchema.Builder extends SdkPojo, CopyableBuilder<SnowflakeTableSchema.Builder,SnowflakeTableSchema>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SnowflakeTableSchema.Builderv1(Collection<SnowflakeTableSchemaV1> v1)The schema of a Snowflake table.SnowflakeTableSchema.Builderv1(Consumer<SnowflakeTableSchemaV1.Builder>... v1)The schema of a Snowflake table.SnowflakeTableSchema.Builderv1(SnowflakeTableSchemaV1... v1)The schema of a Snowflake 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
-
v1
SnowflakeTableSchema.Builder v1(Collection<SnowflakeTableSchemaV1> v1)
The schema of a Snowflake table.
- Parameters:
v1- The schema of a Snowflake table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
v1
SnowflakeTableSchema.Builder v1(SnowflakeTableSchemaV1... v1)
The schema of a Snowflake table.
- Parameters:
v1- The schema of a Snowflake table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
v1
SnowflakeTableSchema.Builder v1(Consumer<SnowflakeTableSchemaV1.Builder>... v1)
The schema of a Snowflake table.
This is a convenience method that creates an instance of theSnowflakeTableSchemaV1.Builderavoiding the need to create one manually viaSnowflakeTableSchemaV1.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#v1(List.) - Parameters:
v1- a consumer that will call methods onSnowflakeTableSchemaV1.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#v1(java.util.Collection)
-
-