Interface InstanceEngineConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
InstanceEngineConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-09-11T18:01:22.491Z")
@Stability(Stable)
public interface InstanceEngineConfig
extends software.amazon.jsii.JsiiSerializable
The type returned from the
IInstanceEngine.bind
method.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.rds.*; OptionGroup optionGroup; InstanceEngineConfig instanceEngineConfig = InstanceEngineConfig.builder() .features(InstanceEngineFeatures.builder() .s3Export("s3Export") .s3Import("s3Import") .build()) .optionGroup(optionGroup) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forInstanceEngineConfig
static final class
An implementation forInstanceEngineConfig
-
Method Summary
Modifier and TypeMethodDescriptionstatic InstanceEngineConfig.Builder
builder()
default InstanceEngineFeatures
Features supported by the database engine.default IOptionGroup
Option group of the database.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFeatures
Features supported by the database engine.Default: - no features
- See Also:
-
getOptionGroup
Option group of the database.Default: - none
-
builder
- Returns:
- a
InstanceEngineConfig.Builder
ofInstanceEngineConfig
-