Struct aws_sdk_qbusiness::operation::list_data_source_sync_jobs::ListDataSourceSyncJobsOutput
source · #[non_exhaustive]pub struct ListDataSourceSyncJobsOutput {
pub history: Option<Vec<DataSourceSyncJob>>,
pub next_token: Option<String>,
/* 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.history: Option<Vec<DataSourceSyncJob>>A history of synchronization jobs for the data source connector.
next_token: Option<String>If the response is truncated, Amazon Q returns this token. You can use this token in any subsequent request to retrieve the next set of jobs.
Implementations§
source§impl ListDataSourceSyncJobsOutput
impl ListDataSourceSyncJobsOutput
sourcepub fn history(&self) -> &[DataSourceSyncJob]
pub fn history(&self) -> &[DataSourceSyncJob]
A history of synchronization jobs for the data source connector.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .history.is_none().
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the response is truncated, Amazon Q returns this token. You can use this token in any subsequent request to retrieve the next set of jobs.
source§impl ListDataSourceSyncJobsOutput
impl ListDataSourceSyncJobsOutput
sourcepub fn builder() -> ListDataSourceSyncJobsOutputBuilder
pub fn builder() -> ListDataSourceSyncJobsOutputBuilder
Creates a new builder-style object to manufacture ListDataSourceSyncJobsOutput.
Trait Implementations§
source§impl Clone for ListDataSourceSyncJobsOutput
impl Clone for ListDataSourceSyncJobsOutput
source§fn clone(&self) -> ListDataSourceSyncJobsOutput
fn clone(&self) -> ListDataSourceSyncJobsOutput
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 ListDataSourceSyncJobsOutput
impl Debug for ListDataSourceSyncJobsOutput
source§impl PartialEq for ListDataSourceSyncJobsOutput
impl PartialEq for ListDataSourceSyncJobsOutput
source§fn eq(&self, other: &ListDataSourceSyncJobsOutput) -> bool
fn eq(&self, other: &ListDataSourceSyncJobsOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for ListDataSourceSyncJobsOutput
impl RequestId for ListDataSourceSyncJobsOutput
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 ListDataSourceSyncJobsOutput
Auto Trait Implementations§
impl RefUnwindSafe for ListDataSourceSyncJobsOutput
impl Send for ListDataSourceSyncJobsOutput
impl Sync for ListDataSourceSyncJobsOutput
impl Unpin for ListDataSourceSyncJobsOutput
impl UnwindSafe for ListDataSourceSyncJobsOutput
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.