interface DatabricksParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSourcePropsMixin.DatabricksParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSourcePropsMixin_DatabricksParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSourcePropsMixin.DatabricksParametersProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSourcePropsMixin.DatabricksParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const databricksParametersProperty: quicksight_mixins.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