Show / Hide Table of Contents

Class CfnDBCluster.EndpointProperty

The Endpoint return value specifies the connection endpoint for the primary instance of the DB cluster.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-endpoint.html

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 Endpoint return value specifies the connection endpoint for the primary instance of the DB cluster.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-endpoint.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-endpoint.html#cfn-rds-dbcluster-endpoint-address

Port

Specifies the port that the database engine is listening on.

public string? Port { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-endpoint.html#cfn-rds-dbcluster-endpoint-port

Implements

CfnDBCluster.IEndpointProperty
Back to top Generated by DocFX