interface PostgresEngineFeatures
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.RDS.PostgresEngineFeatures |
Java | software.amazon.awscdk.services.rds.PostgresEngineFeatures |
Python | aws_cdk.aws_rds.PostgresEngineFeatures |
TypeScript (source) | @aws-cdk/aws-rds » PostgresEngineFeatures |
Features supported by the Postgres database engine.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as rds from '@aws-cdk/aws-rds';
const postgresEngineFeatures: rds.PostgresEngineFeatures = {
s3Export: false,
s3Import: false,
};
Properties
Name | Type | Description |
---|---|---|
s3 | boolean | Whether this version of the Postgres engine supports the S3 data export feature. |
s3 | boolean | Whether this version of the Postgres engine supports the S3 data import feature. |
s3Export?
Type:
boolean
(optional, default: false)
Whether this version of the Postgres engine supports the S3 data export feature.
s3Import?
Type:
boolean
(optional, default: false)
Whether this version of the Postgres engine supports the S3 data import feature.