interface InstanceEngineConfig
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.RDS.InstanceEngineConfig |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#InstanceEngineConfig |
![]() | software.amazon.awscdk.services.rds.InstanceEngineConfig |
![]() | aws_cdk.aws_rds.InstanceEngineConfig |
![]() | aws-cdk-lib » aws_rds » InstanceEngineConfig |
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 { aws_rds as rds } from 'aws-cdk-lib';
declare const optionGroup: rds.OptionGroup;
const instanceEngineConfig: rds.InstanceEngineConfig = {
features: {
s3Export: 's3Export',
s3Import: 's3Import',
},
optionGroup: optionGroup,
};
Properties
Name | Type | Description |
---|---|---|
features? | Instance | Features supported by the database engine. |
option | IOption | Option group of the database. |
features?
Type:
Instance
(optional, default: no features)
Features supported by the database engine.
optionGroup?
Type:
IOption
(optional, default: none)
Option group of the database.