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.Lib.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,
                ServerlessV2AutoPauseSupported = 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.

ServerlessV2AutoPauseSupported

Whether this version of the Aurora Postgres cluster engine supports the Aurora SeverlessV2 auto-pause feature.

Properties

S3Export

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

bool? S3Export { get; }
Property Value

bool?

Remarks

Default: false

S3Import

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

bool? S3Import { get; }
Property Value

bool?

Remarks

Default: false

ServerlessV2AutoPauseSupported

Whether this version of the Aurora Postgres cluster engine supports the Aurora SeverlessV2 auto-pause feature.

bool? ServerlessV2AutoPauseSupported { get; }
Property Value

bool?

Remarks

Default: false

See: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2-auto-pause.html#auto-pause-prereqs

Back to top Generated by DocFX