Show / Hide Table of Contents

Interface CfnDBCluster.IEndpointProperty

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

Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDBCluster.IEndpointProperty
Syntax (vb)
Public Interface 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

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.

Properties

Address

Specifies the connection endpoint for the primary instance of the DB cluster.

string? Address { get; }
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.

string? Port { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX