InstanceEngineConfig
- class aws_cdk.aws_rds.InstanceEngineConfig(*, features=None, option_group=None)
Bases:
object
The type returned from the
IInstanceEngine.bind
method.- Parameters:
features (
Union
[InstanceEngineFeatures
,Dict
[str
,Any
],None
]) – Features supported by the database engine. Default: - no featuresoption_group (
Optional
[IOptionGroup
]) – Option group of the database. Default: - none
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_rds as rds # option_group: rds.OptionGroup instance_engine_config = rds.InstanceEngineConfig( features=rds.InstanceEngineFeatures( s3_export="s3Export", s3_import="s3Import" ), option_group=option_group )
Attributes
- features
Features supported by the database engine.
- Default:
no features
- See:
https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DBEngineVersion.html
- option_group
Option group of the database.
- Default:
none