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

.NET
Go
Java
Python
TypeScript