Class CfnDBCluster.EndpointProperty
The Endpoint return value specifies the connection endpoint for the primary instance of the DB cluster.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDBCluster.EndpointProperty : CfnDBCluster.IEndpointProperty
Syntax (vb)
Public Class CfnDBCluster.EndpointProperty Implements CfnDBCluster.IEndpointProperty
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.AWS.RDS;
var endpointProperty = new EndpointProperty {
Address = "address",
Port = "port"
};
Synopsis
Constructors
| EndpointProperty() | The |
Properties
| Address | Specifies the connection endpoint for the primary instance of the DB cluster. |
| Port | Specifies the port that the database engine is listening on. |
Constructors
EndpointProperty()
The Endpoint return value specifies the connection endpoint for the primary instance of the DB cluster.
public EndpointProperty()
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.AWS.RDS;
var endpointProperty = new EndpointProperty {
Address = "address",
Port = "port"
};
Properties
Address
Specifies the connection endpoint for the primary instance of the DB cluster.
public string? Address { get; set; }
Property Value
Remarks
Port
Specifies the port that the database engine is listening on.
public string? Port { get; set; }