Show / Hide Table of Contents

Class DBInstanceReference

A reference to a DBInstance resource.

Inheritance
object
DBInstanceReference
Implements
IDBInstanceReference
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

string

Remarks

ExampleMetadata: fixture=_generated

DbInstanceIdentifier

The DBInstanceIdentifier of the DBInstance resource.

public string DbInstanceIdentifier { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IDBInstanceReference
Back to top Generated by DocFX