interface StarburstParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSource.StarburstParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSource_StarburstParametersProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSource.StarburstParametersProperty |
Python | aws_cdk.aws_quicksight.CfnDataSource.StarburstParametersProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSource » StarburstParametersProperty |
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const starburstParametersProperty: quicksight.CfnDataSource.StarburstParametersProperty = {
catalog: 'catalog',
host: 'host',
port: 123,
// the properties below are optional
authenticationType: 'authenticationType',
databaseAccessControlRole: 'databaseAccessControlRole',
oAuthParameters: {
tokenProviderUrl: 'tokenProviderUrl',
// the properties below are optional
identityProviderResourceUri: 'identityProviderResourceUri',
identityProviderVpcConnectionProperties: {
vpcConnectionArn: 'vpcConnectionArn',
},
oAuthScope: 'oAuthScope',
},
productType: 'productType',
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog | string | The catalog name for the Starburst data source. |
| host | string | The host name of the Starburst data source. |
| port | number | The port for the Starburst data source. |
| authentication | string | The authentication type that you want to use for your connection. |
| database | string | The database access control role. |
| o | IResolvable | OAuth | An object that contains information needed to create a data source connection between an Quick Sight account and Starburst. |
| product | string | The product type for the Starburst data source. |
catalog
Type:
string
The catalog name for the Starburst data source.
host
Type:
string
The host name of the Starburst data source.
port
Type:
number
The port for the Starburst data source.
authenticationType?
Type:
string
(optional)
The authentication type that you want to use for your connection.
This parameter accepts OAuth and non-OAuth authentication types.
databaseAccessControlRole?
Type:
string
(optional)
The database access control role.
oAuthParameters?
Type:
IResolvable | OAuth
(optional)
An object that contains information needed to create a data source connection between an Quick Sight account and Starburst.
productType?
Type:
string
(optional)
The product type for the Starburst data source.

.NET
Go
Java
Python
TypeScript