#[non_exhaustive]pub struct GetSyncJobOutput {
pub arn: String,
pub workspace_id: String,
pub sync_source: String,
pub sync_role: String,
pub status: Option<SyncJobStatus>,
pub creation_date_time: DateTime,
pub update_date_time: DateTime,
/* private fields */
}
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.arn: String
The sync job ARN.
workspace_id: String
The ID of the workspace that contains the sync job.
sync_source: String
The sync soucre.
Currently the only supported syncSource is SITEWISE
.
sync_role: String
The sync IAM role.
status: Option<SyncJobStatus>
The SyncJob response status.
creation_date_time: DateTime
The creation date and time.
update_date_time: DateTime
The update date and time.
Implementations§
source§impl GetSyncJobOutput
impl GetSyncJobOutput
sourcepub fn workspace_id(&self) -> &str
pub fn workspace_id(&self) -> &str
The ID of the workspace that contains the sync job.
sourcepub fn sync_source(&self) -> &str
pub fn sync_source(&self) -> &str
The sync soucre.
Currently the only supported syncSource is SITEWISE
.
sourcepub fn status(&self) -> Option<&SyncJobStatus>
pub fn status(&self) -> Option<&SyncJobStatus>
The SyncJob response status.
sourcepub fn creation_date_time(&self) -> &DateTime
pub fn creation_date_time(&self) -> &DateTime
The creation date and time.
sourcepub fn update_date_time(&self) -> &DateTime
pub fn update_date_time(&self) -> &DateTime
The update date and time.
source§impl GetSyncJobOutput
impl GetSyncJobOutput
sourcepub fn builder() -> GetSyncJobOutputBuilder
pub fn builder() -> GetSyncJobOutputBuilder
Creates a new builder-style object to manufacture GetSyncJobOutput
.
Trait Implementations§
source§impl Clone for GetSyncJobOutput
impl Clone for GetSyncJobOutput
source§fn clone(&self) -> GetSyncJobOutput
fn clone(&self) -> GetSyncJobOutput
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 GetSyncJobOutput
impl Debug for GetSyncJobOutput
source§impl PartialEq for GetSyncJobOutput
impl PartialEq for GetSyncJobOutput
source§fn eq(&self, other: &GetSyncJobOutput) -> bool
fn eq(&self, other: &GetSyncJobOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetSyncJobOutput
impl RequestId for GetSyncJobOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for GetSyncJobOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetSyncJobOutput
impl Send for GetSyncJobOutput
impl Sync for GetSyncJobOutput
impl Unpin for GetSyncJobOutput
impl UnwindSafe for GetSyncJobOutput
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.