Struct aws_sdk_managedblockchain::types::AccessorSummary
source · #[non_exhaustive]pub struct AccessorSummary {
pub id: Option<String>,
pub type: Option<AccessorType>,
pub status: Option<AccessorStatus>,
pub creation_date: Option<DateTime>,
pub arn: Option<String>,
pub network_type: Option<AccessorNetworkType>,
}
Expand description
A summary of accessor 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 accessor.
type: Option<AccessorType>
The type of the accessor.
Currently accessor type is restricted to BILLING_TOKEN
.
status: Option<AccessorStatus>
The current status of the accessor.
creation_date: Option<DateTime>
The creation date and time of the accessor.
arn: Option<String>
The Amazon Resource Name (ARN) of the accessor. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
network_type: Option<AccessorNetworkType>
The blockchain network that the Accessor token is created for.
Implementations§
source§impl AccessorSummary
impl AccessorSummary
sourcepub fn type(&self) -> Option<&AccessorType>
pub fn type(&self) -> Option<&AccessorType>
The type of the accessor.
Currently accessor type is restricted to BILLING_TOKEN
.
sourcepub fn status(&self) -> Option<&AccessorStatus>
pub fn status(&self) -> Option<&AccessorStatus>
The current status of the accessor.
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The creation date and time of the accessor.
sourcepub fn arn(&self) -> Option<&str>
pub fn arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the accessor. For more information about ARNs and their format, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
sourcepub fn network_type(&self) -> Option<&AccessorNetworkType>
pub fn network_type(&self) -> Option<&AccessorNetworkType>
The blockchain network that the Accessor token is created for.
source§impl AccessorSummary
impl AccessorSummary
sourcepub fn builder() -> AccessorSummaryBuilder
pub fn builder() -> AccessorSummaryBuilder
Creates a new builder-style object to manufacture AccessorSummary
.
Trait Implementations§
source§impl Clone for AccessorSummary
impl Clone for AccessorSummary
source§fn clone(&self) -> AccessorSummary
fn clone(&self) -> AccessorSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AccessorSummary
impl Debug for AccessorSummary
source§impl PartialEq for AccessorSummary
impl PartialEq for AccessorSummary
source§fn eq(&self, other: &AccessorSummary) -> bool
fn eq(&self, other: &AccessorSummary) -> bool
self
and other
values to be equal, and is used
by ==
.