Interface SnowflakeParameters.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SnowflakeParameters.Builder,SnowflakeParameters>,SdkBuilder<SnowflakeParameters.Builder,SnowflakeParameters>,SdkPojo
- Enclosing class:
- SnowflakeParameters
@Mutable @NotThreadSafe public static interface SnowflakeParameters.Builder extends SdkPojo, CopyableBuilder<SnowflakeParameters.Builder,SnowflakeParameters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description SnowflakeParameters.BuilderauthenticationType(String authenticationType)The authentication type that you want to use for your connection.SnowflakeParameters.BuilderauthenticationType(AuthenticationType authenticationType)The authentication type that you want to use for your connection.SnowflakeParameters.Builderdatabase(String database)Database.SnowflakeParameters.BuilderdatabaseAccessControlRole(String databaseAccessControlRole)The database access control role.SnowflakeParameters.Builderhost(String host)Host.default SnowflakeParameters.BuilderoAuthParameters(Consumer<OAuthParameters.Builder> oAuthParameters)An object that contains information needed to create a data source connection between an QuickSight account and Snowflake.SnowflakeParameters.BuilderoAuthParameters(OAuthParameters oAuthParameters)An object that contains information needed to create a data source connection between an QuickSight account and Snowflake.SnowflakeParameters.Builderwarehouse(String warehouse)Warehouse.-
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
-
host
SnowflakeParameters.Builder host(String host)
Host.
- Parameters:
host- Host.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
database
SnowflakeParameters.Builder database(String database)
Database.
- Parameters:
database- Database.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
warehouse
SnowflakeParameters.Builder warehouse(String warehouse)
Warehouse.
- Parameters:
warehouse- Warehouse.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authenticationType
SnowflakeParameters.Builder authenticationType(String authenticationType)
The authentication type that you want to use for your connection. This parameter accepts OAuth and non-OAuth authentication types.
- Parameters:
authenticationType- The authentication type that you want to use for your connection. This parameter accepts OAuth and non-OAuth authentication types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AuthenticationType,AuthenticationType
-
authenticationType
SnowflakeParameters.Builder authenticationType(AuthenticationType authenticationType)
The authentication type that you want to use for your connection. This parameter accepts OAuth and non-OAuth authentication types.
- Parameters:
authenticationType- The authentication type that you want to use for your connection. This parameter accepts OAuth and non-OAuth authentication types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AuthenticationType,AuthenticationType
-
databaseAccessControlRole
SnowflakeParameters.Builder databaseAccessControlRole(String databaseAccessControlRole)
The database access control role.
- Parameters:
databaseAccessControlRole- The database access control role.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
oAuthParameters
SnowflakeParameters.Builder oAuthParameters(OAuthParameters oAuthParameters)
An object that contains information needed to create a data source connection between an QuickSight account and Snowflake.
- Parameters:
oAuthParameters- An object that contains information needed to create a data source connection between an QuickSight account and Snowflake.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
oAuthParameters
default SnowflakeParameters.Builder oAuthParameters(Consumer<OAuthParameters.Builder> oAuthParameters)
An object that contains information needed to create a data source connection between an QuickSight account and Snowflake.
This is a convenience method that creates an instance of theOAuthParameters.Builderavoiding the need to create one manually viaOAuthParameters.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooAuthParameters(OAuthParameters).- Parameters:
oAuthParameters- a consumer that will call methods onOAuthParameters.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
oAuthParameters(OAuthParameters)
-
-