Interface InstanceEngineConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
InstanceEngineConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:12.703Z")
@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
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forInstanceEngineConfigstatic final classAn implementation forInstanceEngineConfig -
Method Summary
Modifier and TypeMethodDescriptionstatic InstanceEngineConfig.Builderbuilder()default InstanceEngineFeaturesFeatures supported by the database engine.default IOptionGroupOption 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.BuilderofInstanceEngineConfig
-