Class DBInstanceReference
A reference to a DBInstance resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DBInstanceReference : IDBInstanceReference
Syntax (vb)
Public Class DBInstanceReference Implements IDBInstanceReference
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.RDS;
var dBInstanceReference = new DBInstanceReference {
DbInstanceArn = "dbInstanceArn",
DbInstanceIdentifier = "dbInstanceIdentifier"
};
Synopsis
Constructors
| DBInstanceReference() | A reference to a DBInstance resource. |
Properties
| DbInstanceArn | The ARN of the DBInstance resource. |
| DbInstanceIdentifier | The DBInstanceIdentifier of the DBInstance resource. |
Constructors
DBInstanceReference()
A reference to a DBInstance resource.
public DBInstanceReference()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Interfaces.RDS;
var dBInstanceReference = new DBInstanceReference {
DbInstanceArn = "dbInstanceArn",
DbInstanceIdentifier = "dbInstanceIdentifier"
};
Properties
DbInstanceArn
The ARN of the DBInstance resource.
public string DbInstanceArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
DbInstanceIdentifier
The DBInstanceIdentifier of the DBInstance resource.
public string DbInstanceIdentifier { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated