Show / Hide Table of Contents

Interface CfnServerlessCache.IEndpointProperty

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

Namespace: Amazon.CDK.AWS.ElastiCache
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnServerlessCache.IEndpointProperty
Syntax (vb)
Public Interface 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

Properties

Address

The DNS hostname of the cache node.

Port

The port number that the cache engine is listening on.

Properties

Address

The DNS hostname of the cache node.

string? Address { get; }
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.

string? Port { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX