interface TrinoParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSourcePropsMixin.TrinoParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSourcePropsMixin_TrinoParametersProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSourcePropsMixin.TrinoParametersProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSourcePropsMixin.TrinoParametersProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSourcePropsMixin » TrinoParametersProperty |
The parameters that are required to connect to a Trino 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 trinoParametersProperty: quicksight_mixins.CfnDataSourcePropsMixin.TrinoParametersProperty = {
catalog: 'catalog',
host: 'host',
port: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog? | string | The catalog name for the Trino data source. |
| host? | string | The host name of the Trino data source. |
| port? | number | The port for the Trino data source. |
catalog?
Type:
string
(optional)
The catalog name for the Trino data source.
host?
Type:
string
(optional)
The host name of the Trino data source.
port?
Type:
number
(optional, default: 0)
The port for the Trino data source.

.NET
Go
Java
Python
TypeScript