aws-cdk-lib.aws_rds.InstanceEngineFeatures

interface InstanceEngineFeatures

LanguageType name
.NETAmazon.CDK.AWS.RDS.InstanceEngineFeatures
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrds#InstanceEngineFeatures
Javasoftware.amazon.awscdk.services.rds.InstanceEngineFeatures
Pythonaws_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

NameTypeDescription
s3Export?stringFeature name for the DB instance that the IAM role to export to S3 bucket is to be associated with.
s3Import?stringFeature 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.