AuroraPostgresEngineFeatures

class aws_cdk.aws_rds.AuroraPostgresEngineFeatures(*, s3_export=None, s3_import=None)

Bases: object

Features supported by this version of the Aurora Postgres cluster engine.

Parameters:
  • s3_export (Optional[bool]) – Whether this version of the Aurora Postgres cluster engine supports the S3 data export feature. Default: false

  • s3_import (Optional[bool]) – Whether this version of the Aurora Postgres cluster 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

aurora_postgres_engine_features = rds.AuroraPostgresEngineFeatures(
    s3_export=False,
    s3_import=False
)

Attributes

s3_export

Whether this version of the Aurora Postgres cluster engine supports the S3 data export feature.

Default:

false

s3_import

Whether this version of the Aurora Postgres cluster engine supports the S3 data import feature.

Default:

false