Show / Hide Table of Contents

Interface IAuroraPostgresEngineFeatures

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

Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.AWS.RDS.dll
Syntax (csharp)
public interface IAuroraPostgresEngineFeatures
Syntax (vb)
Public Interface IAuroraPostgresEngineFeatures
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 auroraPostgresEngineFeatures = new AuroraPostgresEngineFeatures {
    S3Export = false,
    S3Import = false
};

Synopsis

Properties

S3Export

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

S3Import

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

Properties

S3Export

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

virtual Nullable<bool> S3Export { get; }
Property Value

System.Nullable<System.Boolean>

Remarks

Default: false

S3Import

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

virtual Nullable<bool> S3Import { get; }
Property Value

System.Nullable<System.Boolean>

Remarks

Default: false

Back to top Generated by DocFX