Show / Hide Table of Contents

Interface IDatabaseClusterAttributes

(experimental) Properties that describe an existing cluster instance.

Namespace: Amazon.CDK.AWS.Neptune.Alpha
Assembly: Amazon.CDK.AWS.Neptune.Alpha.dll
Syntax (csharp)
public interface IDatabaseClusterAttributes
Syntax (vb)
Public Interface IDatabaseClusterAttributes
Remarks

Stability: Experimental

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.Neptune.Alpha;
             using Amazon.CDK.AWS.EC2;

             SecurityGroup securityGroup;

             var databaseClusterAttributes = new DatabaseClusterAttributes {
                 ClusterEndpointAddress = "clusterEndpointAddress",
                 ClusterIdentifier = "clusterIdentifier",
                 ClusterResourceIdentifier = "clusterResourceIdentifier",
                 Port = 123,
                 ReaderEndpointAddress = "readerEndpointAddress",
                 SecurityGroup = securityGroup
             };

Synopsis

Properties

ClusterEndpointAddress

(experimental) Cluster endpoint address.

ClusterIdentifier

(experimental) Identifier for the cluster.

ClusterResourceIdentifier

(experimental) Resource Identifier for the cluster.

Port

(experimental) The database port.

ReaderEndpointAddress

(experimental) Reader endpoint address.

SecurityGroup

(experimental) The security group of the database cluster.

Properties

ClusterEndpointAddress

(experimental) Cluster endpoint address.

string ClusterEndpointAddress { get; }
Property Value

string

Remarks

Stability: Experimental

ClusterIdentifier

(experimental) Identifier for the cluster.

string ClusterIdentifier { get; }
Property Value

string

Remarks

Stability: Experimental

ClusterResourceIdentifier

(experimental) Resource Identifier for the cluster.

string ClusterResourceIdentifier { get; }
Property Value

string

Remarks

Stability: Experimental

Port

(experimental) The database port.

double Port { get; }
Property Value

double

Remarks

Stability: Experimental

ReaderEndpointAddress

(experimental) Reader endpoint address.

string ReaderEndpointAddress { get; }
Property Value

string

Remarks

Stability: Experimental

SecurityGroup

(experimental) The security group of the database cluster.

ISecurityGroup SecurityGroup { get; }
Property Value

ISecurityGroup

Remarks

Stability: Experimental

Back to top Generated by DocFX