interface DBInstanceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RDS.DBInstanceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrds#DBInstanceReference |
Java | software.amazon.awscdk.interfaces.rds.DBInstanceReference |
Python | aws_cdk.interfaces.aws_rds.DBInstanceReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_rds } from 'aws-cdk-lib/interfaces';
const dBInstanceReference: interfaces_aws_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