Show / Hide Table of Contents

Class CfnReplicationGroup.EndpointProperty

Inheritance
object
CfnReplicationGroup.EndpointProperty
Implements
CfnReplicationGroup.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.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnReplicationGroup.EndpointProperty : CfnReplicationGroup.IEndpointProperty
Syntax (vb)
Public Class CfnReplicationGroup.EndpointProperty Implements CfnReplicationGroup.IEndpointProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-replicationgroup-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.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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-replicationgroup-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.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

string

Remarks

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

Port

The port number that the cache engine is listening on.

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

string

Remarks

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

Implements

CfnReplicationGroup.IEndpointProperty
Back to top Generated by DocFX