Struct aws_sdk_opensearch::types::DomainNodesStatus
source · #[non_exhaustive]pub struct DomainNodesStatus { /* private fields */ }Expand description
Container for information about nodes on the domain.
Implementations§
source§impl DomainNodesStatus
impl DomainNodesStatus
sourcepub fn node_type(&self) -> Option<&NodeType>
pub fn node_type(&self) -> Option<&NodeType>
Indicates whether the nodes is a data, master, or ultrawarm node.
sourcepub fn availability_zone(&self) -> Option<&str>
pub fn availability_zone(&self) -> Option<&str>
The Availability Zone of the node.
sourcepub fn instance_type(&self) -> Option<&OpenSearchPartitionInstanceType>
pub fn instance_type(&self) -> Option<&OpenSearchPartitionInstanceType>
The instance type information of the node.
sourcepub fn node_status(&self) -> Option<&NodeStatus>
pub fn node_status(&self) -> Option<&NodeStatus>
Indicates if the node is active or in standby.
sourcepub fn storage_type(&self) -> Option<&str>
pub fn storage_type(&self) -> Option<&str>
Indicates if the node has EBS or instance storage.
sourcepub fn storage_volume_type(&self) -> Option<&VolumeType>
pub fn storage_volume_type(&self) -> Option<&VolumeType>
If the nodes has EBS storage, indicates if the volume type is GP2 or GP3. Only applicable for data nodes.
sourcepub fn storage_size(&self) -> Option<&str>
pub fn storage_size(&self) -> Option<&str>
The storage size of the node, in GiB.
source§impl DomainNodesStatus
impl DomainNodesStatus
sourcepub fn builder() -> DomainNodesStatusBuilder
pub fn builder() -> DomainNodesStatusBuilder
Creates a new builder-style object to manufacture DomainNodesStatus.
Trait Implementations§
source§impl Clone for DomainNodesStatus
impl Clone for DomainNodesStatus
source§fn clone(&self) -> DomainNodesStatus
fn clone(&self) -> DomainNodesStatus
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for DomainNodesStatus
impl Debug for DomainNodesStatus
source§impl PartialEq<DomainNodesStatus> for DomainNodesStatus
impl PartialEq<DomainNodesStatus> for DomainNodesStatus
source§fn eq(&self, other: &DomainNodesStatus) -> bool
fn eq(&self, other: &DomainNodesStatus) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DomainNodesStatus
Auto Trait Implementations§
impl RefUnwindSafe for DomainNodesStatus
impl Send for DomainNodesStatus
impl Sync for DomainNodesStatus
impl Unpin for DomainNodesStatus
impl UnwindSafe for DomainNodesStatus
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more