Show / Hide Table of Contents

Class CfnClusterPropsMixin.EndpointProperty

Represents the information required for client programs to connect to the cluster and its nodes.

Inheritance
object
CfnClusterPropsMixin.EndpointProperty
Implements
CfnClusterPropsMixin.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.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

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

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

string

Remarks

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

Port

The port number that the engine is listening on.

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

double?

Remarks

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

Implements

CfnClusterPropsMixin.IEndpointProperty
Back to top Generated by DocFX