Struct aws_sdk_managedblockchain::types::NetworkSummary
source · #[non_exhaustive]pub struct NetworkSummary { /* private fields */ }
Expand description
A summary of network configuration properties.
Implementations§
source§impl NetworkSummary
impl NetworkSummary
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
An optional description of the network.
sourcepub fn framework_version(&self) -> Option<&str>
pub fn framework_version(&self) -> Option<&str>
The version of the blockchain framework that the network uses.
sourcepub fn status(&self) -> Option<&NetworkStatus>
pub fn status(&self) -> Option<&NetworkStatus>
The current status of the network.
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The date and time that the network was created.
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the network. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
source§impl NetworkSummary
impl NetworkSummary
sourcepub fn builder() -> NetworkSummaryBuilder
pub fn builder() -> NetworkSummaryBuilder
Creates a new builder-style object to manufacture NetworkSummary
.
Trait Implementations§
source§impl Clone for NetworkSummary
impl Clone for NetworkSummary
source§fn clone(&self) -> NetworkSummary
fn clone(&self) -> NetworkSummary
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 NetworkSummary
impl Debug for NetworkSummary
source§impl PartialEq<NetworkSummary> for NetworkSummary
impl PartialEq<NetworkSummary> for NetworkSummary
source§fn eq(&self, other: &NetworkSummary) -> bool
fn eq(&self, other: &NetworkSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for NetworkSummary
Auto Trait Implementations§
impl RefUnwindSafe for NetworkSummary
impl Send for NetworkSummary
impl Sync for NetworkSummary
impl Unpin for NetworkSummary
impl UnwindSafe for NetworkSummary
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