Struct aws_sdk_proton::types::SyncBlocker
source · #[non_exhaustive]pub struct SyncBlocker { /* private fields */ }
Expand description
Detailed data of the sync blocker.
Implementations§
source§impl SyncBlocker
impl SyncBlocker
sourcepub fn type(&self) -> Option<&BlockerType>
pub fn type(&self) -> Option<&BlockerType>
The type of the sync blocker.
sourcepub fn status(&self) -> Option<&BlockerStatus>
pub fn status(&self) -> Option<&BlockerStatus>
The status of the sync blocker.
sourcepub fn created_reason(&self) -> Option<&str>
pub fn created_reason(&self) -> Option<&str>
The reason why the sync blocker was created.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The time when the sync blocker was created.
sourcepub fn contexts(&self) -> Option<&[SyncBlockerContext]>
pub fn contexts(&self) -> Option<&[SyncBlockerContext]>
The contexts for the sync blocker.
sourcepub fn resolved_reason(&self) -> Option<&str>
pub fn resolved_reason(&self) -> Option<&str>
The reason the sync blocker was resolved.
sourcepub fn resolved_at(&self) -> Option<&DateTime>
pub fn resolved_at(&self) -> Option<&DateTime>
The time the sync blocker was resolved.
source§impl SyncBlocker
impl SyncBlocker
sourcepub fn builder() -> SyncBlockerBuilder
pub fn builder() -> SyncBlockerBuilder
Creates a new builder-style object to manufacture SyncBlocker
.
Trait Implementations§
source§impl Clone for SyncBlocker
impl Clone for SyncBlocker
source§fn clone(&self) -> SyncBlocker
fn clone(&self) -> SyncBlocker
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 SyncBlocker
impl Debug for SyncBlocker
source§impl PartialEq<SyncBlocker> for SyncBlocker
impl PartialEq<SyncBlocker> for SyncBlocker
source§fn eq(&self, other: &SyncBlocker) -> bool
fn eq(&self, other: &SyncBlocker) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.