ClusterEngineFeatures
- class aws_cdk.aws_rds.ClusterEngineFeatures(*, s3_export=None, s3_import=None, serverless_v2_auto_pause_supported=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 names3_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 nameserverless_v2_auto_pause_supported (
Optional
[bool
]) – Whether the DB cluster engine supports the Aurora ServerlessV2 auto-pause feature. Default: false
- 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", serverless_v2_auto_pause_supported=False )
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
- serverless_v2_auto_pause_supported
Whether the DB cluster engine supports the Aurora ServerlessV2 auto-pause feature.
- Default:
false