Interface SnowflakeParameters.Builder

  • Method Details

    • 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

      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:
    • 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 Amazon QuickSight account and Snowflake.

      Parameters:
      oAuthParameters - An object that contains information needed to create a data source connection between an Amazon 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 Amazon QuickSight account and Snowflake.

      This is a convenience method that creates an instance of the OAuthParameters.Builder avoiding the need to create one manually via OAuthParameters.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to oAuthParameters(OAuthParameters).

      Parameters:
      oAuthParameters - a consumer that will call methods on OAuthParameters.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: