interface PrestoParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSourcePropsMixin.PrestoParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSourcePropsMixin_PrestoParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSourcePropsMixin.PrestoParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSourcePropsMixin.PrestoParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSourcePropsMixin » PrestoParametersProperty |
The parameters for Presto.
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 prestoParametersProperty: quicksight.CfnDataSourcePropsMixin.PrestoParametersProperty = {
catalog: 'catalog',
host: 'host',
port: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| catalog? | string | Catalog. |
| host? | string | Host. |
| port? | number | Port. |
catalog?
Type:
string
(optional)
Catalog.
host?
Type:
string
(optional)
Host.
port?
Type:
number
(optional, default: 0)
Port.

.NET
Go
Java
Python
TypeScript