interface DBInstanceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RDS.DBInstanceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#DBInstanceReference |
Java | software.amazon.awscdk.services.rds.DBInstanceReference |
Python | aws_cdk.aws_rds.DBInstanceReference |
TypeScript | aws-cdk-lib » aws_rds » DBInstanceReference |
A reference to a DBInstance resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rds as rds } from 'aws-cdk-lib';
const dBInstanceReference: rds.DBInstanceReference = {
dbInstanceArn: 'dbInstanceArn',
dbInstanceIdentifier: 'dbInstanceIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The ARN of the DBInstance resource. |
| db | string | The DBInstanceIdentifier of the DBInstance resource. |
dbInstanceArn
Type:
string
The ARN of the DBInstance resource.
dbInstanceIdentifier
Type:
string
The DBInstanceIdentifier of the DBInstance resource.

.NET
Go
Java
Python
TypeScript