CustomDBEngineVersionReference
- class aws_cdk.interfaces.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.interfaces import aws_rds as interfaces_aws_rds custom_dBEngine_version_reference = interfaces_aws_rds.CustomDBEngineVersionReference( engine="engine", engine_version="engineVersion" )
Attributes
- engine
The Engine of the CustomDBEngineVersion resource.
- engine_version
The EngineVersion of the CustomDBEngineVersion resource.