PostgresEngineFeatures
- class aws_cdk.aws_rds.PostgresEngineFeatures(*, s3_export=None, s3_import=None)
Bases:
object
Features supported by the Postgres database engine.
- Parameters:
s3_export (
Optional
[bool
]) – Whether this version of the Postgres engine supports the S3 data export feature. Default: falses3_import (
Optional
[bool
]) – Whether this version of the Postgres engine supports the S3 data import feature. Default: false
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_rds as rds postgres_engine_features = rds.PostgresEngineFeatures( s3_export=False, s3_import=False )
Attributes
- s3_export
Whether this version of the Postgres engine supports the S3 data export feature.
- Default:
false
- s3_import
Whether this version of the Postgres engine supports the S3 data import feature.
- Default:
false