Class DBSubnetGroupReference
A reference to a DBSubnetGroup resource.
Implements
Inherited Members
Namespace: Amazon.CDK.Interfaces.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class DBSubnetGroupReference : IDBSubnetGroupReference
Syntax (vb)
Public Class DBSubnetGroupReference Implements IDBSubnetGroupReference
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 dBSubnetGroupReference = new DBSubnetGroupReference {
DbSubnetGroupArn = "dbSubnetGroupArn",
DbSubnetGroupName = "dbSubnetGroupName"
};
Synopsis
Constructors
| DBSubnetGroupReference() | A reference to a DBSubnetGroup resource. |
Properties
| DbSubnetGroupArn | The ARN of the DBSubnetGroup resource. |
| DbSubnetGroupName | The DBSubnetGroupName of the DBSubnetGroup resource. |
Constructors
DBSubnetGroupReference()
A reference to a DBSubnetGroup resource.
public DBSubnetGroupReference()
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 dBSubnetGroupReference = new DBSubnetGroupReference {
DbSubnetGroupArn = "dbSubnetGroupArn",
DbSubnetGroupName = "dbSubnetGroupName"
};
Properties
DbSubnetGroupArn
The ARN of the DBSubnetGroup resource.
public string DbSubnetGroupArn { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
DbSubnetGroupName
The DBSubnetGroupName of the DBSubnetGroup resource.
public string DbSubnetGroupName { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated