ReservedDBInstanceReference
- class aws_cdk.interfaces.aws_rds.ReservedDBInstanceReference(*, reserved_db_instance_arn, reserved_db_instance_id)
Bases:
objectA reference to a ReservedDBInstance resource.
- Parameters:
reserved_db_instance_arn (
str) – The ARN of the ReservedDBInstance resource.reserved_db_instance_id (
str) – The ReservedDBInstanceId of the ReservedDBInstance 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_rds reserved_db_instance_reference = interfaces_rds.ReservedDBInstanceReference( reserved_db_instance_arn="reservedDbInstanceArn", reserved_db_instance_id="reservedDbInstanceId" )
Attributes
- reserved_db_instance_arn
The ARN of the ReservedDBInstance resource.
- reserved_db_instance_id
The ReservedDBInstanceId of the ReservedDBInstance resource.