Method: Aws::DAX::Types::Cluster#nodes
- Defined in:
- lib/aws-sdk-dax/types.rb
#nodes ⇒ Array<Types::Node>
A list of nodes that are currently in the cluster.
117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 |
# File 'lib/aws-sdk-dax/types.rb', line 117 class Cluster < Struct.new( :cluster_name, :description, :cluster_arn, :total_nodes, :active_nodes, :node_type, :status, :cluster_discovery_endpoint, :node_ids_to_remove, :nodes, :preferred_maintenance_window, :notification_configuration, :subnet_group, :security_groups, :iam_role_arn, :parameter_group, :sse_description, :cluster_endpoint_encryption_type, :network_type) SENSITIVE = [] include Aws::Structure end |