interface InstanceEngineFeatures
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RDS.InstanceEngineFeatures |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#InstanceEngineFeatures |
Java | software.amazon.awscdk.services.rds.InstanceEngineFeatures |
Python | aws_cdk.aws_rds.InstanceEngineFeatures |
TypeScript (source) | aws-cdk-lib » aws_rds » InstanceEngineFeatures |
Represents Database Engine features.
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';
const instanceEngineFeatures: rds.InstanceEngineFeatures = {
s3Export: 's3Export',
s3Import: 's3Import',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | string | Feature name for the DB instance that the IAM role to export to S3 bucket is to be associated with. |
| s3 | string | Feature name for the DB instance that the IAM role to access the S3 bucket for import is to be associated with. |
s3Export?
Type:
string
(optional, default: no s3Export feature name)
Feature name for the DB instance that the IAM role to export to S3 bucket is to be associated with.
s3Import?
Type:
string
(optional, default: no s3Import feature name)
Feature name for the DB instance that the IAM role to access the S3 bucket for import is to be associated with.

.NET
Go
Java
Python
TypeScript (