Struct aws_sdk_managedblockchain::model::NetworkSummary
source · [−]#[non_exhaustive]pub struct NetworkSummary {
pub id: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub framework: Option<Framework>,
pub framework_version: Option<String>,
pub status: Option<NetworkStatus>,
pub creation_date: Option<DateTime>,
pub arn: Option<String>,
}Expand description
A summary of network configuration properties.
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 network.
name: Option<String>The name of the network.
description: Option<String>An optional description of the network.
framework: Option<Framework>The blockchain framework that the network uses.
framework_version: Option<String>The version of the blockchain framework that the network uses.
status: Option<NetworkStatus>The current status of the network.
creation_date: Option<DateTime>The date and time that the network was created.
arn: Option<String>The Amazon Resource Name (ARN) of the network. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the AWS General Reference.
Implementations
sourceimpl 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 AWS General Reference.
sourceimpl NetworkSummary
impl NetworkSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture NetworkSummary.
Trait Implementations
sourceimpl Clone for NetworkSummary
impl Clone for NetworkSummary
sourcefn clone(&self) -> NetworkSummary
fn clone(&self) -> NetworkSummary
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 NetworkSummary
impl Debug for NetworkSummary
sourceimpl PartialEq<NetworkSummary> for NetworkSummary
impl PartialEq<NetworkSummary> for NetworkSummary
sourcefn 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 ==. Read more
sourcefn ne(&self, other: &NetworkSummary) -> bool
fn ne(&self, other: &NetworkSummary) -> bool
This method tests for !=.
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
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