interface DatabricksParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSourcePropsMixin.DatabricksParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSourcePropsMixin_DatabricksParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSourcePropsMixin.DatabricksParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSourcePropsMixin.DatabricksParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSourcePropsMixin » DatabricksParametersProperty |
The required parameters that are needed to connect to a Databricks 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/cfn-property-mixins';
const databricksParametersProperty: quicksight.CfnDataSourcePropsMixin.DatabricksParametersProperty = {
host: 'host',
port: 123,
sqlEndpointPath: 'sqlEndpointPath',
};
Properties
| Name | Type | Description |
|---|---|---|
| host? | string | The host name of the Databricks data source. |
| port? | number | The port for the Databricks data source. |
| sql | string | The HTTP path of the Databricks data source. |
host?
Type:
string
(optional)
The host name of the Databricks data source.
port?
Type:
number
(optional, default: 0)
The port for the Databricks data source.
sqlEndpointPath?
Type:
string
(optional)
The HTTP path of the Databricks data source.

.NET
Go
Java
Python
TypeScript