Struct aws_sdk_managedblockchain::model::NodeSummary
source · [−]#[non_exhaustive]pub struct NodeSummary {
pub id: Option<String>,
pub status: Option<NodeStatus>,
pub creation_date: Option<DateTime>,
pub availability_zone: Option<String>,
pub instance_type: Option<String>,
pub arn: Option<String>,
}Expand description
A summary of configuration properties for a node.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.id: Option<String>The unique identifier of the node.
status: Option<NodeStatus>The status of the node.
creation_date: Option<DateTime>The date and time that the node was created.
availability_zone: Option<String>The Availability Zone in which the node exists.
instance_type: Option<String>The EC2 instance type for the node.
arn: Option<String>The Amazon Resource Name (ARN) of the node. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the AWS General Reference.
Implementations
sourceimpl NodeSummary
impl NodeSummary
sourcepub fn status(&self) -> Option<&NodeStatus>
pub fn status(&self) -> Option<&NodeStatus>
The status of the node.
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The date and time that the node was created.
sourcepub fn availability_zone(&self) -> Option<&str>
pub fn availability_zone(&self) -> Option<&str>
The Availability Zone in which the node exists.
sourcepub fn instance_type(&self) -> Option<&str>
pub fn instance_type(&self) -> Option<&str>
The EC2 instance type for the node.
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the node. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the AWS General Reference.
sourceimpl NodeSummary
impl NodeSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NodeSummary.
Trait Implementations
sourceimpl Clone for NodeSummary
impl Clone for NodeSummary
sourcefn clone(&self) -> NodeSummary
fn clone(&self) -> NodeSummary
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for NodeSummary
impl Debug for NodeSummary
sourceimpl PartialEq<NodeSummary> for NodeSummary
impl PartialEq<NodeSummary> for NodeSummary
sourcefn eq(&self, other: &NodeSummary) -> bool
fn eq(&self, other: &NodeSummary) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &NodeSummary) -> bool
fn ne(&self, other: &NodeSummary) -> bool
This method tests for !=.
impl StructuralPartialEq for NodeSummary
Auto Trait Implementations
impl RefUnwindSafe for NodeSummary
impl Send for NodeSummary
impl Sync for NodeSummary
impl Unpin for NodeSummary
impl UnwindSafe for NodeSummary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more