interface DBInstanceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Neptune.DBInstanceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsneptune#DBInstanceReference |
Java | software.amazon.awscdk.services.neptune.DBInstanceReference |
Python | aws_cdk.aws_neptune.DBInstanceReference |
TypeScript | aws-cdk-lib » aws_neptune » 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_neptune as neptune } from 'aws-cdk-lib';
const dBInstanceReference: neptune.DBInstanceReference = {
dbInstanceIdentifier: 'dbInstanceIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| db | string | The DBInstanceIdentifier of the DBInstance resource. |
dbInstanceIdentifier
Type:
string
The DBInstanceIdentifier of the DBInstance resource.

.NET
Go
Java
Python
TypeScript