Class CfnReplicationGroup.EndpointProperty
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnReplicationGroup.EndpointProperty : CfnReplicationGroup.IEndpointProperty
Syntax (vb)
Public Class CfnReplicationGroup.EndpointProperty Implements CfnReplicationGroup.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.AWS.ElastiCache;
var endpointProperty = new EndpointProperty {
Address = "address",
Port = "port"
};
Synopsis
Constructors
| EndpointProperty() |
Properties
| Address | The DNS hostname of the cache node. |
| Port | The port number that the cache engine is listening on. |
Constructors
EndpointProperty()
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.AWS.ElastiCache;
var endpointProperty = new EndpointProperty {
Address = "address",
Port = "port"
};
Properties
Address
The DNS hostname of the cache node.
public string? Address { get; set; }
Property Value
Remarks
Port
The port number that the cache engine is listening on.
public string? Port { get; set; }