[][src]Struct rusoto_dax::Node

pub struct Node {
    pub availability_zone: Option<String>,
    pub endpoint: Option<Endpoint>,
    pub node_create_time: Option<f64>,
    pub node_id: Option<String>,
    pub node_status: Option<String>,
    pub parameter_group_status: Option<String>,
}

Represents an individual node within a DAX cluster.

Fields

availability_zone: Option<String>

The Availability Zone (AZ) in which the node has been deployed.

endpoint: Option<Endpoint>

The endpoint for the node, consisting of a DNS name and a port number. Client applications can connect directly to a node endpoint, if desired (as an alternative to allowing DAX client software to intelligently route requests and responses to nodes in the DAX cluster.

node_create_time: Option<f64>

The date and time (in UNIX epoch format) when the node was launched.

node_id: Option<String>

A system-generated identifier for the node.

node_status: Option<String>

The current status of the node. For example: available.

parameter_group_status: Option<String>

The status of the parameter group associated with this node. For example, in-sync.

Trait Implementations

impl Clone for Node[src]

impl Debug for Node[src]

impl Default for Node[src]

impl<'de> Deserialize<'de> for Node[src]

impl PartialEq<Node> for Node[src]

impl StructuralPartialEq for Node[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.