Struct aws_sdk_proton::types::SyncBlocker
source · #[non_exhaustive]pub struct SyncBlocker {
pub id: Option<String>,
pub type: Option<BlockerType>,
pub status: Option<BlockerStatus>,
pub created_reason: Option<String>,
pub created_at: Option<DateTime>,
pub contexts: Option<Vec<SyncBlockerContext>>,
pub resolved_reason: Option<String>,
pub resolved_at: Option<DateTime>,
}
Expand description
Detailed data of the sync blocker.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.id: Option<String>
The ID of the sync blocker.
type: Option<BlockerType>
The type of the sync blocker.
status: Option<BlockerStatus>
The status of the sync blocker.
created_reason: Option<String>
The reason why the sync blocker was created.
created_at: Option<DateTime>
The time when the sync blocker was created.
contexts: Option<Vec<SyncBlockerContext>>
The contexts for the sync blocker.
resolved_reason: Option<String>
The reason the sync blocker was resolved.
resolved_at: Option<DateTime>
The time the sync blocker was resolved.
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 for SyncBlocker
impl PartialEq 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 ==
.impl StructuralPartialEq for SyncBlocker
Auto Trait Implementations§
impl RefUnwindSafe for SyncBlocker
impl Send for SyncBlocker
impl Sync for SyncBlocker
impl Unpin for SyncBlocker
impl UnwindSafe for SyncBlocker
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