Struct aws_sdk_iottwinmaker::types::SyncResourceSummary
source · #[non_exhaustive]pub struct SyncResourceSummary {
pub resource_type: Option<SyncResourceType>,
pub external_id: Option<String>,
pub resource_id: Option<String>,
pub status: Option<SyncResourceStatus>,
pub update_date_time: Option<DateTime>,
}Expand description
The sync resource summary.
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.resource_type: Option<SyncResourceType>The resource type.
external_id: Option<String>The external ID.
resource_id: Option<String>The resource ID.
status: Option<SyncResourceStatus>The sync resource summary status.
update_date_time: Option<DateTime>The update date and time.
Implementations§
source§impl SyncResourceSummary
impl SyncResourceSummary
sourcepub fn resource_type(&self) -> Option<&SyncResourceType>
pub fn resource_type(&self) -> Option<&SyncResourceType>
The resource type.
sourcepub fn external_id(&self) -> Option<&str>
pub fn external_id(&self) -> Option<&str>
The external ID.
sourcepub fn resource_id(&self) -> Option<&str>
pub fn resource_id(&self) -> Option<&str>
The resource ID.
sourcepub fn status(&self) -> Option<&SyncResourceStatus>
pub fn status(&self) -> Option<&SyncResourceStatus>
The sync resource summary status.
sourcepub fn update_date_time(&self) -> Option<&DateTime>
pub fn update_date_time(&self) -> Option<&DateTime>
The update date and time.
source§impl SyncResourceSummary
impl SyncResourceSummary
sourcepub fn builder() -> SyncResourceSummaryBuilder
pub fn builder() -> SyncResourceSummaryBuilder
Creates a new builder-style object to manufacture SyncResourceSummary.
Trait Implementations§
source§impl Clone for SyncResourceSummary
impl Clone for SyncResourceSummary
source§fn clone(&self) -> SyncResourceSummary
fn clone(&self) -> SyncResourceSummary
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 SyncResourceSummary
impl Debug for SyncResourceSummary
source§impl PartialEq for SyncResourceSummary
impl PartialEq for SyncResourceSummary
source§fn eq(&self, other: &SyncResourceSummary) -> bool
fn eq(&self, other: &SyncResourceSummary) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SyncResourceSummary
Auto Trait Implementations§
impl RefUnwindSafe for SyncResourceSummary
impl Send for SyncResourceSummary
impl Sync for SyncResourceSummary
impl Unpin for SyncResourceSummary
impl UnwindSafe for SyncResourceSummary
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
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>
Creates a shared type from an unshared type.