Interface SnowflakeTableReference.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SnowflakeTableReference.Builder,SnowflakeTableReference>,SdkBuilder<SnowflakeTableReference.Builder,SnowflakeTableReference>,SdkPojo
- Enclosing class:
- SnowflakeTableReference
public static interface SnowflakeTableReference.Builder extends SdkPojo, CopyableBuilder<SnowflakeTableReference.Builder,SnowflakeTableReference>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description SnowflakeTableReference.BuilderaccountIdentifier(String accountIdentifier)The account identifier for the Snowflake table reference.SnowflakeTableReference.BuilderdatabaseName(String databaseName)The name of the database the Snowflake table belongs to.SnowflakeTableReference.BuilderschemaName(String schemaName)The schema name of the Snowflake table reference.SnowflakeTableReference.BuildersecretArn(String secretArn)The secret ARN of the Snowflake table reference.SnowflakeTableReference.BuildertableName(String tableName)The name of the Snowflake table.default SnowflakeTableReference.BuildertableSchema(Consumer<SnowflakeTableSchema.Builder> tableSchema)The schema of the Snowflake table.SnowflakeTableReference.BuildertableSchema(SnowflakeTableSchema tableSchema)The schema of the 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
-
secretArn
SnowflakeTableReference.Builder secretArn(String secretArn)
The secret ARN of the Snowflake table reference.
- Parameters:
secretArn- The secret ARN of the Snowflake table reference.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accountIdentifier
SnowflakeTableReference.Builder accountIdentifier(String accountIdentifier)
The account identifier for the Snowflake table reference.
- Parameters:
accountIdentifier- The account identifier for the Snowflake table reference.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
databaseName
SnowflakeTableReference.Builder databaseName(String databaseName)
The name of the database the Snowflake table belongs to.
- Parameters:
databaseName- The name of the database the Snowflake table belongs to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableName
SnowflakeTableReference.Builder tableName(String tableName)
The name of the Snowflake table.
- Parameters:
tableName- The name of the Snowflake table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
schemaName
SnowflakeTableReference.Builder schemaName(String schemaName)
The schema name of the Snowflake table reference.
- Parameters:
schemaName- The schema name of the Snowflake table reference.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableSchema
SnowflakeTableReference.Builder tableSchema(SnowflakeTableSchema tableSchema)
The schema of the Snowflake table.
- Parameters:
tableSchema- The schema of the Snowflake table.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tableSchema
default SnowflakeTableReference.Builder tableSchema(Consumer<SnowflakeTableSchema.Builder> tableSchema)
The schema of the Snowflake table.
This is a convenience method that creates an instance of theSnowflakeTableSchema.Builderavoiding the need to create one manually viaSnowflakeTableSchema.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totableSchema(SnowflakeTableSchema).- Parameters:
tableSchema- a consumer that will call methods onSnowflakeTableSchema.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
tableSchema(SnowflakeTableSchema)
-
-