aws-cdk-lib.aws_quicksight.CfnDataSource.RedshiftParametersProperty

interface RedshiftParametersProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDataSource.RedshiftParametersProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSource_RedshiftParametersProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDataSource.RedshiftParametersProperty
Pythonaws_cdk.aws_quicksight.CfnDataSource.RedshiftParametersProperty
TypeScript aws-cdk-lib » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const redshiftParametersProperty: quicksight.CfnDataSource.RedshiftParametersProperty = {
  database: 'database',

  // the properties below are optional
  clusterId: 'clusterId',
  host: 'host',
  port: 123,
};

Properties

NameTypeDescription
databasestringDatabase.
clusterId?stringCluster ID.
host?stringHost.
port?numberPort.

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.