aws-cdk-lib.aws_rds.ClusterEngineFeatures

interface ClusterEngineFeatures

LanguageType name
.NETAmazon.CDK.AWS.RDS.ClusterEngineFeatures
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrds#ClusterEngineFeatures
Javasoftware.amazon.awscdk.services.rds.ClusterEngineFeatures
Pythonaws_cdk.aws_rds.ClusterEngineFeatures
TypeScript (source)aws-cdk-lib » aws_rds » ClusterEngineFeatures

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 clusterEngineFeatures: rds.ClusterEngineFeatures = {
  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.