Class CfnClusterPropsMixin.EndpointProperty
Represents the information required for client programs to connect to the cluster and its nodes.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.MemoryDB
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnClusterPropsMixin.EndpointProperty : CfnClusterPropsMixin.IEndpointProperty
Syntax (vb)
Public Class CfnClusterPropsMixin.EndpointProperty Implements CfnClusterPropsMixin.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.CfnPropertyMixins.AWS.MemoryDB;
var endpointProperty = new EndpointProperty {
Address = "address",
Port = 123
};
Synopsis
Constructors
| EndpointProperty() | Represents the information required for client programs to connect to the cluster and its nodes. |
Properties
| Address | The DNS hostname of the node. |
| Port | The port number that the engine is listening on. |
Constructors
EndpointProperty()
Represents the information required for client programs to connect to the cluster and its nodes.
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.CfnPropertyMixins.AWS.MemoryDB;
var endpointProperty = new EndpointProperty {
Address = "address",
Port = 123
};
Properties
Address
The DNS hostname of the node.
public string? Address { get; set; }
Property Value
Remarks
Port
The port number that the engine is listening on.
public double? Port { get; set; }