Interface CfnDataSource.SnowflakeParametersProperty

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

@Stability(Stable) public static interface CfnDataSource.SnowflakeParametersProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.quicksight.*;
 SnowflakeParametersProperty snowflakeParametersProperty = SnowflakeParametersProperty.builder()
         .database("database")
         .host("host")
         .warehouse("warehouse")
         // 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())
         .build();
 

See Also: