Show / Hide Table of Contents

Class InstanceEngineConfig

The type returned from the {@link IInstanceEngine.bind} method.

Inheritance
System.Object
InstanceEngineConfig
Implements
IInstanceEngineConfig
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.AWS.RDS.dll
Syntax (csharp)
public class InstanceEngineConfig : Object, IInstanceEngineConfig
Syntax (vb)
Public Class InstanceEngineConfig
    Inherits Object
    Implements IInstanceEngineConfig
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;

OptionGroup optionGroup;

var instanceEngineConfig = new InstanceEngineConfig {
    Features = new InstanceEngineFeatures {
        S3Export = "s3Export",
        S3Import = "s3Import"
    },
    OptionGroup = optionGroup
};

Synopsis

Constructors

InstanceEngineConfig()

Properties

Features

Features supported by the database engine.

OptionGroup

Option group of the database.

Constructors

InstanceEngineConfig()

public InstanceEngineConfig()

Properties

Features

Features supported by the database engine.

public IInstanceEngineFeatures Features { get; set; }
Property Value

IInstanceEngineFeatures

Remarks

Default: - no features

See: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DBEngineVersion.html

OptionGroup

Option group of the database.

public IOptionGroup OptionGroup { get; set; }
Property Value

IOptionGroup

Remarks

Default: - none

Implements

IInstanceEngineConfig
Back to top Generated by DocFX