Class CfnDBInstance.EndpointProperty
This data type represents the information you need to connect to an Amazon RDS DB instance.
Inheritance
System.Object
CfnDBInstance.EndpointProperty
Implements
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class EndpointProperty : Object, CfnDBInstance.IEndpointProperty
Syntax (vb)
Public Class EndpointProperty
Inherits Object
Implements CfnDBInstance.IEndpointProperty
Remarks
This data type is used as a response element in the following actions:
For the data structure that represents Amazon Aurora DB cluster endpoints, see DBClusterEndpoint
.
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",
HostedZoneId = "hostedZoneId",
Port = "port"
};
Synopsis
Constructors
EndpointProperty() |
Properties
Address | Specifies the DNS address of the DB instance. |
HostedZoneId | Specifies the ID that Amazon Route 53 assigns when you create a hosted zone. |
Port | Specifies the port that the database engine is listening on. |
Constructors
EndpointProperty()
public EndpointProperty()
Properties
Address
Specifies the DNS address of the DB instance.
public string Address { get; set; }
Property Value
System.String
Remarks
HostedZoneId
Specifies the ID that Amazon Route 53 assigns when you create a hosted zone.
public string HostedZoneId { get; set; }
Property Value
System.String
Remarks
Port
Specifies the port that the database engine is listening on.
public string Port { get; set; }
Property Value
System.String