Class CfnDataSourcePropsMixin.DatabricksParametersProperty
The required parameters that are needed to connect to a Databricks data source.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDataSourcePropsMixin.DatabricksParametersProperty : CfnDataSourcePropsMixin.IDatabricksParametersProperty
Syntax (vb)
Public Class CfnDataSourcePropsMixin.DatabricksParametersProperty Implements CfnDataSourcePropsMixin.IDatabricksParametersProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins;
var databricksParametersProperty = new DatabricksParametersProperty {
Host = "host",
Port = 123,
SqlEndpointPath = "sqlEndpointPath"
};
Synopsis
Constructors
| DatabricksParametersProperty() | The required parameters that are needed to connect to a Databricks data source. |
Properties
| Host | The host name of the Databricks data source. |
| Port | The port for the Databricks data source. |
| SqlEndpointPath | The HTTP path of the Databricks data source. |
Constructors
DatabricksParametersProperty()
The required parameters that are needed to connect to a Databricks data source.
public DatabricksParametersProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins;
var databricksParametersProperty = new DatabricksParametersProperty {
Host = "host",
Port = 123,
SqlEndpointPath = "sqlEndpointPath"
};
Properties
Host
The host name of the Databricks data source.
public string? Host { get; set; }
Property Value
Remarks
Port
The port for the Databricks data source.
public double? Port { get; set; }
Property Value
Remarks
SqlEndpointPath
The HTTP path of the Databricks data source.
public string? SqlEndpointPath { get; set; }