From 4c4b5d24b267908d6108a809c9af6d7647535e43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Durand?= Date: Sat, 15 Jun 2024 22:17:13 +0200 Subject: [PATCH] Add details for enabling S3Import/S3Export --- packages/aws-cdk-lib/aws-rds/lib/cluster.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/packages/aws-cdk-lib/aws-rds/lib/cluster.ts b/packages/aws-cdk-lib/aws-rds/lib/cluster.ts index ba04763f22fd6..e372930c4352d 100644 --- a/packages/aws-cdk-lib/aws-rds/lib/cluster.ts +++ b/packages/aws-cdk-lib/aws-rds/lib/cluster.ts @@ -253,12 +253,11 @@ interface DatabaseClusterBaseProps { * This feature is only supported by the Aurora database engine. * * This property must not be used if `s3ImportBuckets` is used. - * + * Note for PostgreSQL : This feature needs to be enabled when creating the DatabaseClusterEngine * For MySQL: * @see https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Integrating.LoadFromS3.html * * For PostgreSQL: - * This feature needs to be enabled when creating the DatabaseClusterEngine * @see https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraPostgreSQL.Migrating.html * * @default - New role is created if `s3ImportBuckets` is set, no role is defined otherwise @@ -285,12 +284,11 @@ interface DatabaseClusterBaseProps { * This feature is only supported by the Aurora database engine. * * This property must not be used if `s3ExportBuckets` is used. - * + * Note for PostgreSQL : This feature needs to be enabled when creating the DatabaseClusterEngine * For MySQL: * @see https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Integrating.SaveIntoS3.html * * For PostgreSQL: - * This feature needs to be enabled when creating the DatabaseClusterEngine * @see https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/postgresql-s3-export.html * * @default - New role is created if `s3ExportBuckets` is set, no role is defined otherwise