public class CacheNode
extends java.lang.Object
implements java.io.Serializable
A Cache Cluster is made up of one or more Cache Nodes. Each Cache Node is an separate endpoint servicing the memcached protocol.
| コンストラクタと説明 |
|---|
CacheNode()
Default constructor for a new CacheNode object.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.util.Date |
getCacheNodeCreateTime()
Provides the date and time the Cache Node was created.
|
java.lang.String |
getCacheNodeId()
Specifies a Cache Node identifier.
|
java.lang.String |
getCacheNodeStatus()
Specifies the current state of this Cache Node.
|
Endpoint |
getEndpoint()
Specifies the endpoint details for a Cache Node.
|
java.lang.String |
getParameterGroupStatus()
Specifies the status of the parameter group applied to this Cache
Node.
|
int |
hashCode() |
void |
setCacheNodeCreateTime(java.util.Date cacheNodeCreateTime)
Provides the date and time the Cache Node was created.
|
void |
setCacheNodeId(java.lang.String cacheNodeId)
Specifies a Cache Node identifier.
|
void |
setCacheNodeStatus(java.lang.String cacheNodeStatus)
Specifies the current state of this Cache Node.
|
void |
setEndpoint(Endpoint endpoint)
Specifies the endpoint details for a Cache Node.
|
void |
setParameterGroupStatus(java.lang.String parameterGroupStatus)
Specifies the status of the parameter group applied to this Cache
Node.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
CacheNode |
withCacheNodeCreateTime(java.util.Date cacheNodeCreateTime)
Provides the date and time the Cache Node was created.
|
CacheNode |
withCacheNodeId(java.lang.String cacheNodeId)
Specifies a Cache Node identifier.
|
CacheNode |
withCacheNodeStatus(java.lang.String cacheNodeStatus)
Specifies the current state of this Cache Node.
|
CacheNode |
withEndpoint(Endpoint endpoint)
Specifies the endpoint details for a Cache Node.
|
CacheNode |
withParameterGroupStatus(java.lang.String parameterGroupStatus)
Specifies the status of the parameter group applied to this Cache
Node.
|
public CacheNode()
public java.lang.String getCacheNodeId()
public void setCacheNodeId(java.lang.String cacheNodeId)
cacheNodeId - Specifies a Cache Node identifier. This is the unique key that
identifies a Cache Node per Customer (AWS account).public CacheNode withCacheNodeId(java.lang.String cacheNodeId)
Returns a reference to this object so that method calls can be chained together.
cacheNodeId - Specifies a Cache Node identifier. This is the unique key that
identifies a Cache Node per Customer (AWS account).public java.lang.String getCacheNodeStatus()
public void setCacheNodeStatus(java.lang.String cacheNodeStatus)
cacheNodeStatus - Specifies the current state of this Cache Node.public CacheNode withCacheNodeStatus(java.lang.String cacheNodeStatus)
Returns a reference to this object so that method calls can be chained together.
cacheNodeStatus - Specifies the current state of this Cache Node.public java.util.Date getCacheNodeCreateTime()
public void setCacheNodeCreateTime(java.util.Date cacheNodeCreateTime)
cacheNodeCreateTime - Provides the date and time the Cache Node was created.public CacheNode withCacheNodeCreateTime(java.util.Date cacheNodeCreateTime)
Returns a reference to this object so that method calls can be chained together.
cacheNodeCreateTime - Provides the date and time the Cache Node was created.public Endpoint getEndpoint()
public void setEndpoint(Endpoint endpoint)
endpoint - Specifies the endpoint details for a Cache Node.public CacheNode withEndpoint(Endpoint endpoint)
Returns a reference to this object so that method calls can be chained together.
endpoint - Specifies the endpoint details for a Cache Node.public java.lang.String getParameterGroupStatus()
public void setParameterGroupStatus(java.lang.String parameterGroupStatus)
parameterGroupStatus - Specifies the status of the parameter group applied to this Cache
Node.public CacheNode withParameterGroupStatus(java.lang.String parameterGroupStatus)
Returns a reference to this object so that method calls can be chained together.
parameterGroupStatus - Specifies the status of the parameter group applied to this Cache
Node.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object