Show / Hide Table of Contents

Class CfnServerlessCache.EndpointProperty

Represents the information required for client programs to connect to a cache node.

Inheritance
object
CfnServerlessCache.EndpointProperty
Implements
CfnServerlessCache.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 CfnServerlessCache.EndpointProperty : CfnServerlessCache.IEndpointProperty
Syntax (vb)
Public Class CfnServerlessCache.EndpointProperty Implements CfnServerlessCache.IEndpointProperty
Remarks

This value is read-only.

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

Represents the information required for client programs to connect to a cache node.

Properties

Address

The DNS hostname of the cache node.

Port

The port number that the cache engine is listening on.

Constructors

EndpointProperty()

Represents the information required for client programs to connect to a cache node.

public EndpointProperty()
Remarks

This value is read-only.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticache-serverlesscache-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-serverlesscache-endpoint.html#cfn-elasticache-serverlesscache-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-serverlesscache-endpoint.html#cfn-elasticache-serverlesscache-endpoint-port

Implements

CfnServerlessCache.IEndpointProperty
Back to top Generated by DocFX