[−][src]Struct rusoto_dax::Cluster
Contains all of the attributes of a specific DAX cluster.
Fields
active_nodes: Option<i64>
The number of nodes in the cluster that are active (i.e., capable of serving requests).
cluster_arn: Option<String>
The Amazon Resource Name (ARN) that uniquely identifies the cluster.
cluster_discovery_endpoint: Option<Endpoint>
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.
cluster_name: Option<String>
The name of the DAX cluster.
description: Option<String>
The description of the cluster.
iam_role_arn: Option<String>
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.
node_ids_to_remove: Option<Vec<String>>
A list of nodes to be removed from the cluster.
node_type: Option<String>
The node type for the nodes in the cluster. (All nodes in a DAX cluster are of the same type.)
nodes: Option<Vec<Node>>
A list of nodes that are currently in the cluster.
notification_configuration: Option<NotificationConfiguration>
Describes a notification topic and its status. Notification topics are used for publishing DAX events to subscribers using Amazon Simple Notification Service (SNS).
parameter_group: Option<ParameterGroupStatus>
The parameter group being used by nodes in the cluster.
preferred_maintenance_window: Option<String>
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.
sse_description: Option<SSEDescription>
The description of the server-side encryption status on the specified DAX cluster.
security_groups: Option<Vec<SecurityGroupMembership>>
A list of security groups, and the status of each, for the nodes in the cluster.
status: Option<String>
The current status of the cluster.
subnet_group: Option<String>
The subnet group where the DAX cluster is running.
total_nodes: Option<i64>
The total number of nodes in the cluster.
Trait Implementations
impl PartialEq<Cluster> for Cluster
[src]
impl Default for Cluster
[src]
impl Clone for Cluster
[src]
fn clone(&self) -> Cluster
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for Cluster
[src]
impl<'de> Deserialize<'de> for Cluster
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self