aws-cdk-lib.aws_rds.AuroraPostgresEngineFeatures

interface AuroraPostgresEngineFeatures

LanguageType name
.NETAmazon.CDK.AWS.RDS.AuroraPostgresEngineFeatures
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrds#AuroraPostgresEngineFeatures
Javasoftware.amazon.awscdk.services.rds.AuroraPostgresEngineFeatures
Pythonaws_cdk.aws_rds.AuroraPostgresEngineFeatures
TypeScript (source)aws-cdk-lib » aws_rds » AuroraPostgresEngineFeatures

Features supported by this version of the Aurora Postgres cluster 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 auroraPostgresEngineFeatures: rds.AuroraPostgresEngineFeatures = {
  s3Export: false,
  s3Import: false,
};

Properties

NameTypeDescription
s3Export?booleanWhether this version of the Aurora Postgres cluster engine supports the S3 data export feature.
s3Import?booleanWhether this version of the Aurora Postgres cluster engine supports the S3 data import feature.

s3Export?

Type: boolean (optional, default: false)

Whether this version of the Aurora Postgres cluster engine supports the S3 data export feature.


s3Import?

Type: boolean (optional, default: false)

Whether this version of the Aurora Postgres cluster engine supports the S3 data import feature.