Interface CfnDataSource.StarburstParametersProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSource.StarburstParametersProperty.Jsii$Proxy
Enclosing class:
CfnDataSource

@Stability(Stable) public static interface CfnDataSource.StarburstParametersProperty extends software.amazon.jsii.JsiiSerializable
The parameters that are required to connect to a Starburst data source.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.quicksight.*;
 StarburstParametersProperty starburstParametersProperty = StarburstParametersProperty.builder()
         .catalog("catalog")
         .host("host")
         .port(123)
         // the properties below are optional
         .authenticationType("authenticationType")
         .databaseAccessControlRole("databaseAccessControlRole")
         .oAuthParameters(OAuthParametersProperty.builder()
                 .tokenProviderUrl("tokenProviderUrl")
                 // the properties below are optional
                 .identityProviderResourceUri("identityProviderResourceUri")
                 .identityProviderVpcConnectionProperties(VpcConnectionPropertiesProperty.builder()
                         .vpcConnectionArn("vpcConnectionArn")
                         .build())
                 .oAuthScope("oAuthScope")
                 .build())
         .productType("productType")
         .build();
 

See Also: