CustomDBEngineVersionReference
- class aws_cdk.aws_rds.CustomDBEngineVersionReference(*, engine, engine_version)
 Bases:
objectA reference to a CustomDBEngineVersion resource.
- Parameters:
 engine (
str) – The Engine of the CustomDBEngineVersion resource.engine_version (
str) – The EngineVersion of the CustomDBEngineVersion resource.
- 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 custom_dBEngine_version_reference = rds.CustomDBEngineVersionReference( engine="engine", engine_version="engineVersion" )
Attributes
- engine
 The Engine of the CustomDBEngineVersion resource.
- engine_version
 The EngineVersion of the CustomDBEngineVersion resource.