Interface PostgresEngineFeatures
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
PostgresEngineFeatures.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:49.234Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forPostgresEngineFeaturesstatic final classAn 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.BuilderofPostgresEngineFeatures
-