interface RedshiftParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSource.RedshiftParametersProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSource.RedshiftParametersProperty |
Python | aws_cdk.aws_quicksight.CfnDataSource.RedshiftParametersProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnDataSource » RedshiftParametersProperty |
The parameters for Amazon Redshift.
The ClusterId field can be blank if Host and Port are both set. The Host and Port fields can be blank if the ClusterId field is set.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const redshiftParametersProperty: quicksight.CfnDataSource.RedshiftParametersProperty = {
database: 'database',
// the properties below are optional
clusterId: 'clusterId',
host: 'host',
port: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| database | string | Database. |
| cluster | string | Cluster ID. |
| host? | string | Host. |
| port? | number | Port. |
database
Type:
string
Database.
clusterId?
Type:
string
(optional)
Cluster ID.
This field can be blank if the Host and Port are provided.
host?
Type:
string
(optional)
Host.
This field can be blank if ClusterId is provided.
port?
Type:
number
(optional)
Port.
This field can be blank if the ClusterId is provided.

.NET
Java
Python
TypeScript