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

.NET
Go
Java
Python
TypeScript