ClusterEngineFeatures

class aws_cdk.aws_rds.ClusterEngineFeatures(*, s3_export=None, s3_import=None)

Bases: object

Represents Database Engine features.

Parameters:
  • s3_export (Optional[str]) – Feature name for the DB instance that the IAM role to export to S3 bucket is to be associated with. Default: - no s3Export feature name

  • s3_import (Optional[str]) – Feature name for the DB instance that the IAM role to access the S3 bucket for import is to be associated with. Default: - no s3Import feature name

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_rds as rds

cluster_engine_features = rds.ClusterEngineFeatures(
    s3_export="s3Export",
    s3_import="s3Import"
)

Attributes

s3_export

Feature name for the DB instance that the IAM role to export to S3 bucket is to be associated with.

Default:
  • no s3Export feature name

s3_import

Feature name for the DB instance that the IAM role to access the S3 bucket for import is to be associated with.

Default:
  • no s3Import feature name