interface PostgresEngineFeatures
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.RDS.PostgresEngineFeatures |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#PostgresEngineFeatures |
Java | software.amazon.awscdk.services.rds.PostgresEngineFeatures |
Python | aws_cdk.aws_rds.PostgresEngineFeatures |
TypeScript (source) | aws-cdk-lib » aws_rds » PostgresEngineFeatures |
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 { aws_rds as rds } from 'aws-cdk-lib';
const postgresEngineFeatures: rds.PostgresEngineFeatures = {
s3Export: false,
s3Import: false,
};
Properties
Name | Type | Description |
---|---|---|
s3 | boolean | Whether this version of the Postgres engine supports the S3 data export feature. |
s3 | boolean | Whether this version of the Postgres engine supports the S3 data import feature. |
s3Export?
Type:
boolean
(optional, default: false)
Whether this version of the Postgres engine supports the S3 data export feature.
s3Import?
Type:
boolean
(optional, default: false)
Whether this version of the Postgres engine supports the S3 data import feature.