@Generated(value="software.amazon.awssdk:codegen") public final class Cluster extends Object implements SdkPojo, Serializable, ToCopyableBuilder<Cluster.Builder,Cluster>
Contains all of the attributes of a specific DAX cluster.
| Modifier and Type | Class and Description |
|---|---|
static interface |
Cluster.Builder |
| Modifier and Type | Method and Description |
|---|---|
Integer |
activeNodes()
The number of nodes in the cluster that are active (i.e., capable of serving requests).
|
static Cluster.Builder |
builder() |
String |
clusterArn()
The Amazon Resource Name (ARN) that uniquely identifies the cluster.
|
Endpoint |
clusterDiscoveryEndpoint()
The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number.
|
String |
clusterName()
The name of the DAX cluster.
|
String |
description()
The description of the cluster.
|
boolean |
equals(Object obj) |
boolean |
equalsBySdkFields(Object obj) |
<T> Optional<T> |
getValueForField(String fieldName,
Class<T> clazz) |
int |
hashCode() |
boolean |
hasNodeIdsToRemove()
Returns true if the NodeIdsToRemove property was specified by the sender (it may be empty), or false if the
sender did not specify the value (it will be empty).
|
boolean |
hasNodes()
Returns true if the Nodes property was specified by the sender (it may be empty), or false if the sender did not
specify the value (it will be empty).
|
boolean |
hasSecurityGroups()
Returns true if the SecurityGroups property was specified by the sender (it may be empty), or false if the sender
did not specify the value (it will be empty).
|
String |
iamRoleArn()
A valid Amazon Resource Name (ARN) that identifies an IAM role.
|
List<String> |
nodeIdsToRemove()
A list of nodes to be removed from the cluster.
|
List<Node> |
nodes()
A list of nodes that are currently in the cluster.
|
String |
nodeType()
The node type for the nodes in the cluster.
|
NotificationConfiguration |
notificationConfiguration()
Describes a notification topic and its status.
|
ParameterGroupStatus |
parameterGroup()
The parameter group being used by nodes in the cluster.
|
String |
preferredMaintenanceWindow()
A range of time when maintenance of DAX cluster software will be performed.
|
List<SdkField<?>> |
sdkFields() |
List<SecurityGroupMembership> |
securityGroups()
A list of security groups, and the status of each, for the nodes in the cluster.
|
static Class<? extends Cluster.Builder> |
serializableBuilderClass() |
SSEDescription |
sseDescription()
The description of the server-side encryption status on the specified DAX cluster.
|
String |
status()
The current status of the cluster.
|
String |
subnetGroup()
The subnet group where the DAX cluster is running.
|
Cluster.Builder |
toBuilder() |
String |
toString()
Returns a string representation of this object.
|
Integer |
totalNodes()
The total number of nodes in the cluster.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitcopypublic final String clusterName()
The name of the DAX cluster.
public final String description()
The description of the cluster.
public final String clusterArn()
The Amazon Resource Name (ARN) that uniquely identifies the cluster.
public final Integer totalNodes()
The total number of nodes in the cluster.
public final Integer activeNodes()
The number of nodes in the cluster that are active (i.e., capable of serving requests).
public final String nodeType()
The node type for the nodes in the cluster. (All nodes in a DAX cluster are of the same type.)
public final String status()
The current status of the cluster.
public final Endpoint clusterDiscoveryEndpoint()
The configuration endpoint for this DAX cluster, consisting of a DNS name and a port number. Client applications can specify this endpoint, rather than an individual node endpoint, and allow the DAX client software to intelligently route requests and responses to nodes in the DAX cluster.
public final boolean hasNodeIdsToRemove()
public final List<String> nodeIdsToRemove()
A list of nodes to be removed from the cluster.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
You can use hasNodeIdsToRemove() to see if a value was sent in this field.
public final boolean hasNodes()
public final List<Node> nodes()
A list of nodes that are currently in the cluster.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
You can use hasNodes() to see if a value was sent in this field.
public final String preferredMaintenanceWindow()
A range of time when maintenance of DAX cluster software will be performed. For example:
sun:01:00-sun:09:00. Cluster maintenance normally takes less than 30 minutes, and is performed
automatically within the maintenance window.
sun:01:00-sun:09:00. Cluster maintenance normally takes less than 30 minutes, and is
performed automatically within the maintenance window.public final NotificationConfiguration notificationConfiguration()
Describes a notification topic and its status. Notification topics are used for publishing DAX events to subscribers using Amazon Simple Notification Service (SNS).
public final String subnetGroup()
The subnet group where the DAX cluster is running.
public final boolean hasSecurityGroups()
public final List<SecurityGroupMembership> securityGroups()
A list of security groups, and the status of each, for the nodes in the cluster.
Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
You can use hasSecurityGroups() to see if a value was sent in this field.
public final String iamRoleArn()
A valid Amazon Resource Name (ARN) that identifies an IAM role. At runtime, DAX will assume this role and use the role's permissions to access DynamoDB on your behalf.
public final ParameterGroupStatus parameterGroup()
The parameter group being used by nodes in the cluster.
public final SSEDescription sseDescription()
The description of the server-side encryption status on the specified DAX cluster.
public Cluster.Builder toBuilder()
toBuilder in interface ToCopyableBuilder<Cluster.Builder,Cluster>public static Cluster.Builder builder()
public static Class<? extends Cluster.Builder> serializableBuilderClass()
public final boolean equalsBySdkFields(Object obj)
equalsBySdkFields in interface SdkPojopublic final String toString()
Copyright © 2021. All rights reserved.