Show / Hide Table of Contents

Class AuroraPostgresEngineFeatures

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

Inheritance
object
AuroraPostgresEngineFeatures
Implements
IAuroraPostgresEngineFeatures
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AuroraPostgresEngineFeatures : IAuroraPostgresEngineFeatures
Syntax (vb)
Public Class AuroraPostgresEngineFeatures Implements 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

Constructors

AuroraPostgresEngineFeatures()

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

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.

Constructors

AuroraPostgresEngineFeatures()

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

public AuroraPostgresEngineFeatures()
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
            };

Properties

S3Export

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

public bool? S3Export { get; set; }
Property Value

bool?

Remarks

Default: false

S3Import

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

public bool? S3Import { get; set; }
Property Value

bool?

Remarks

Default: false

ServerlessV2AutoPauseSupported

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

public bool? ServerlessV2AutoPauseSupported { get; set; }
Property Value

bool?

Remarks

Default: false

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

Implements

IAuroraPostgresEngineFeatures
Back to top Generated by DocFX