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

示例#1
0
 /// <summary>
 /// Sets the Endpoint property
 /// </summary>
 /// <param name="endpoint">The value to set for the Endpoint property </param>
 /// <returns>this instance</returns>
 public CacheNode WithEndpoint(Endpoint endpoint)
 {
     this.endpoint = endpoint;
     return this;
 }
 public NodeGroup WithPrimaryEndpoint(Endpoint primaryEndpoint)
 {
     this.primaryEndpoint = primaryEndpoint;
     return this;
 }
 /// <summary>
 /// Sets the ConfigurationEndpoint property
 /// </summary>
 /// <param name="configurationEndpoint">The value to set for the ConfigurationEndpoint property </param>
 /// <returns>this instance</returns>
 public CacheCluster WithConfigurationEndpoint(Endpoint configurationEndpoint)
 {
     this.configurationEndpoint = configurationEndpoint;
     return this;
 }
 public NodeGroupMember WithReadEndpoint(Endpoint readEndpoint)
 {
     this.readEndpoint = readEndpoint;
     return this;
 }