interface TrinoParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSourcePropsMixin.TrinoParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSourcePropsMixin_TrinoParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSourcePropsMixin.TrinoParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSourcePropsMixin.TrinoParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » 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 { aws_quicksight as quicksight } from '@aws-cdk/cfn-property-mixins';
const trinoParametersProperty: quicksight.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