interface SnowflakeParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSource.SnowflakeParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSource_SnowflakeParametersProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSource.SnowflakeParametersProperty |
Python | aws_cdk.aws_quicksight.CfnDataSource.SnowflakeParametersProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSource » SnowflakeParametersProperty |
The parameters for Snowflake.
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 snowflakeParametersProperty: quicksight.CfnDataSource.SnowflakeParametersProperty = {
database: 'database',
host: 'host',
warehouse: 'warehouse',
// the properties below are optional
authenticationType: 'authenticationType',
databaseAccessControlRole: 'databaseAccessControlRole',
oAuthParameters: {
tokenProviderUrl: 'tokenProviderUrl',
// the properties below are optional
identityProviderResourceUri: 'identityProviderResourceUri',
identityProviderVpcConnectionProperties: {
vpcConnectionArn: 'vpcConnectionArn',
},
oAuthScope: 'oAuthScope',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | Database. |
| host | string | Host. |
| warehouse | string | Warehouse. |
| 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 Snowflake. |
database
Type:
string
Database.
host
Type:
string
Host.
warehouse
Type:
string
Warehouse.
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 Snowflake.

.NET
Go
Java
Python
TypeScript