Show / Hide Table of Contents

Interface IPostgresEngineFeatures

Features supported by the Postgres database engine.

Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IPostgresEngineFeatures
Syntax (vb)
Public Interface IPostgresEngineFeatures
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
            // The values are placeholders you should change.
            using Amazon.CDK.AWS.RDS;

            var postgresEngineFeatures = new PostgresEngineFeatures {
                S3Export = false,
                S3Import = false
            };

Synopsis

Properties

S3Export

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

S3Import

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

Properties

S3Export

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

bool? S3Export { get; }
Property Value

bool?

Remarks

Default: false

S3Import

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

bool? S3Import { get; }
Property Value

bool?

Remarks

Default: false

Back to top Generated by DocFX