Interface PostgresEngineFeatures
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
PostgresEngineFeatures.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:14.932Z")
@Stability(Stable)
public interface PostgresEngineFeatures
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.rds.*; PostgresEngineFeatures postgresEngineFeatures = PostgresEngineFeatures.builder() .s3Export(false) .s3Import(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forPostgresEngineFeatures
static final class
An implementation forPostgresEngineFeatures
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Export
Whether this version of the Postgres engine supports the S3 data export feature.Default: false
-
getS3Import
Whether this version of the Postgres engine supports the S3 data import feature.Default: false
-
builder
- Returns:
- a
PostgresEngineFeatures.Builder
ofPostgresEngineFeatures
-