aws-cdk-lib.aws_rds.InstanceEngineConfig

interface InstanceEngineConfig

LanguageType name
.NETAmazon.CDK.AWS.RDS.InstanceEngineConfig
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrds#InstanceEngineConfig
Javasoftware.amazon.awscdk.services.rds.InstanceEngineConfig
Pythonaws_cdk.aws_rds.InstanceEngineConfig
TypeScript (source)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

NameTypeDescription
features?InstanceEngineFeaturesFeatures supported by the database engine.
optionGroup?IOptionGroupOption group of the database.

features?

Type: InstanceEngineFeatures (optional, default: no features)

Features supported by the database engine.

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


optionGroup?

Type: IOptionGroup (optional, default: none)

Option group of the database.