Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(rds): the unversioned Cluster engine constants are no longer deprecated #10605

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions packages/@aws-cdk/aws-rds/lib/cluster-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -554,23 +554,26 @@ export class DatabaseClusterEngine {
/**
* The unversioned 'aurora' cluster engine.
*
* @deprecated using unversioned engines is an availability risk.
* **Note**: we do not recommend using unversioned engines for non-serverless Clusters,
* as that can pose an availability risk.
* We recommend using versioned engines created using the {@link aurora()} method
*/
public static readonly AURORA: IClusterEngine = new AuroraClusterEngine();

/**
* The unversioned 'aurora-msql' cluster engine.
*
* @deprecated using unversioned engines is an availability risk.
* **Note**: we do not recommend using unversioned engines for non-serverless Clusters,
* as that can pose an availability risk.
* We recommend using versioned engines created using the {@link auroraMysql()} method
*/
public static readonly AURORA_MYSQL: IClusterEngine = new AuroraMysqlClusterEngine();

/**
* The unversioned 'aurora-postgresql' cluster engine.
*
* @deprecated using unversioned engines is an availability risk.
* **Note**: we do not recommend using unversioned engines for non-serverless Clusters,
* as that can pose an availability risk.
* We recommend using versioned engines created using the {@link auroraPostgres()} method
*/
public static readonly AURORA_POSTGRESQL: IClusterEngine = new AuroraPostgresClusterEngine();
Expand Down