aws-cdk-lib.aws_rds.PostgresEngineFeatures

interface PostgresEngineFeatures

LanguageType name
.NETAmazon.CDK.AWS.RDS.PostgresEngineFeatures
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrds#PostgresEngineFeatures
Javasoftware.amazon.awscdk.services.rds.PostgresEngineFeatures
Pythonaws_cdk.aws_rds.PostgresEngineFeatures
TypeScript (source)aws-cdk-lib » 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 { aws_rds as rds } from 'aws-cdk-lib';
const postgresEngineFeatures: rds.PostgresEngineFeatures = {
  s3Export: false,
  s3Import: false,
};

Properties

NameTypeDescription
s3Export?booleanWhether this version of the Postgres engine supports the S3 data export feature.
s3Import?booleanWhether 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.