Struct aws_sdk_managedblockchain::types::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 Amazon Web Services General Reference.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for NetworkSummary
impl Debug for NetworkSummary
source§impl PartialEq for NetworkSummary
impl PartialEq for NetworkSummary
source§fn eq(&self, other: &NetworkSummary) -> bool
fn eq(&self, other: &NetworkSummary) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for NetworkSummary
Auto Trait Implementations§
impl Freeze for NetworkSummary
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more