Interface StarburstParameters.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StarburstParameters.Builder,StarburstParameters>,SdkBuilder<StarburstParameters.Builder,StarburstParameters>,SdkPojo
- Enclosing class:
- StarburstParameters
@Mutable @NotThreadSafe public static interface StarburstParameters.Builder extends SdkPojo, CopyableBuilder<StarburstParameters.Builder,StarburstParameters>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description StarburstParameters.BuilderauthenticationType(String authenticationType)The authentication type that you want to use for your connection.StarburstParameters.BuilderauthenticationType(AuthenticationType authenticationType)The authentication type that you want to use for your connection.StarburstParameters.Buildercatalog(String catalog)The catalog name for the Starburst data source.StarburstParameters.BuilderdatabaseAccessControlRole(String databaseAccessControlRole)The database access control role.StarburstParameters.Builderhost(String host)The host name of the Starburst data source.default StarburstParameters.BuilderoAuthParameters(Consumer<OAuthParameters.Builder> oAuthParameters)An object that contains information needed to create a data source connection between an QuickSight account and Starburst.StarburstParameters.BuilderoAuthParameters(OAuthParameters oAuthParameters)An object that contains information needed to create a data source connection between an QuickSight account and Starburst.StarburstParameters.Builderport(Integer port)The port for the Starburst data source.StarburstParameters.BuilderproductType(String productType)The product type for the Starburst data source.StarburstParameters.BuilderproductType(StarburstProductType productType)The product type for the Starburst data source.-
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
StarburstParameters.Builder host(String host)
The host name of the Starburst data source.
- Parameters:
host- The host name of the Starburst data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
port
StarburstParameters.Builder port(Integer port)
The port for the Starburst data source.
- Parameters:
port- The port for the Starburst data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
catalog
StarburstParameters.Builder catalog(String catalog)
The catalog name for the Starburst data source.
- Parameters:
catalog- The catalog name for the Starburst data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
productType
StarburstParameters.Builder productType(String productType)
The product type for the Starburst data source.
- Parameters:
productType- The product type for the Starburst data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StarburstProductType,StarburstProductType
-
productType
StarburstParameters.Builder productType(StarburstProductType productType)
The product type for the Starburst data source.
- Parameters:
productType- The product type for the Starburst data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
StarburstProductType,StarburstProductType
-
databaseAccessControlRole
StarburstParameters.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.
-
authenticationType
StarburstParameters.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
StarburstParameters.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
-
oAuthParameters
StarburstParameters.Builder oAuthParameters(OAuthParameters oAuthParameters)
An object that contains information needed to create a data source connection between an QuickSight account and Starburst.
- Parameters:
oAuthParameters- An object that contains information needed to create a data source connection between an QuickSight account and Starburst.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
oAuthParameters
default StarburstParameters.Builder oAuthParameters(Consumer<OAuthParameters.Builder> oAuthParameters)
An object that contains information needed to create a data source connection between an QuickSight account and Starburst.
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)
-
-