Show / Hide Table of Contents

Class ClusterEngineFeatures

Represents Database Engine features.

Inheritance
object
ClusterEngineFeatures
Implements
IClusterEngineFeatures
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 ClusterEngineFeatures : IClusterEngineFeatures
Syntax (vb)
Public Class ClusterEngineFeatures Implements IClusterEngineFeatures
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 clusterEngineFeatures = new ClusterEngineFeatures {
                S3Export = "s3Export",
                S3Import = "s3Import",
                ServerlessV2AutoPauseSupported = false
            };

Synopsis

Constructors

ClusterEngineFeatures()

Represents Database Engine features.

Properties

S3Export

Feature name for the DB instance that the IAM role to export to S3 bucket is to be associated with.

S3Import

Feature name for the DB instance that the IAM role to access the S3 bucket for import is to be associated with.

ServerlessV2AutoPauseSupported

Whether the DB cluster engine supports the Aurora ServerlessV2 auto-pause feature.

Constructors

ClusterEngineFeatures()

Represents Database Engine features.

public ClusterEngineFeatures()
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 clusterEngineFeatures = new ClusterEngineFeatures {
                S3Export = "s3Export",
                S3Import = "s3Import",
                ServerlessV2AutoPauseSupported = false
            };

Properties

S3Export

Feature name for the DB instance that the IAM role to export to S3 bucket is to be associated with.

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

string

Remarks

Default: - no s3Export feature name

S3Import

Feature name for the DB instance that the IAM role to access the S3 bucket for import is to be associated with.

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

string

Remarks

Default: - no s3Import feature name

ServerlessV2AutoPauseSupported

Whether the DB cluster engine supports the Aurora ServerlessV2 auto-pause feature.

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

bool?

Remarks

Default: false

Implements

IClusterEngineFeatures
Back to top Generated by DocFX