interface AuroraPostgreSqlParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDataSourcePropsMixin.AuroraPostgreSqlParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDataSourcePropsMixin_AuroraPostgreSqlParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDataSourcePropsMixin.AuroraPostgreSqlParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDataSourcePropsMixin.AuroraPostgreSqlParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDataSourcePropsMixin » AuroraPostgreSqlParametersProperty |
Parameters for Amazon Aurora PostgreSQL-Compatible Edition.
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 auroraPostgreSqlParametersProperty: quicksight.CfnDataSourcePropsMixin.AuroraPostgreSqlParametersProperty = {
database: 'database',
host: 'host',
port: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| database? | string | The Amazon Aurora PostgreSQL database to connect to. |
| host? | string | The Amazon Aurora PostgreSQL-Compatible host to connect to. |
| port? | number | The port that Amazon Aurora PostgreSQL is listening on. |
database?
Type:
string
(optional)
The Amazon Aurora PostgreSQL database to connect to.
host?
Type:
string
(optional)
The Amazon Aurora PostgreSQL-Compatible host to connect to.
port?
Type:
number
(optional, default: 0)
The port that Amazon Aurora PostgreSQL is listening on.

.NET
Go
Java
Python
TypeScript