#[non_exhaustive]pub struct StopDataSourceSyncJobInput {
pub data_source_id: Option<String>,
pub application_id: Option<String>,
pub index_id: Option<String>,
}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.data_source_id: Option<String>The identifier of the data source connector.
application_id: Option<String>The identifier of the Amazon Q application that the data source is connected to.
index_id: Option<String>The identifier of the index used with the Amazon Q data source connector.
Implementations§
source§impl StopDataSourceSyncJobInput
impl StopDataSourceSyncJobInput
sourcepub fn data_source_id(&self) -> Option<&str>
pub fn data_source_id(&self) -> Option<&str>
The identifier of the data source connector.
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The identifier of the Amazon Q application that the data source is connected to.
source§impl StopDataSourceSyncJobInput
impl StopDataSourceSyncJobInput
sourcepub fn builder() -> StopDataSourceSyncJobInputBuilder
pub fn builder() -> StopDataSourceSyncJobInputBuilder
Creates a new builder-style object to manufacture StopDataSourceSyncJobInput.
Trait Implementations§
source§impl Clone for StopDataSourceSyncJobInput
impl Clone for StopDataSourceSyncJobInput
source§fn clone(&self) -> StopDataSourceSyncJobInput
fn clone(&self) -> StopDataSourceSyncJobInput
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 StopDataSourceSyncJobInput
impl Debug for StopDataSourceSyncJobInput
source§impl PartialEq for StopDataSourceSyncJobInput
impl PartialEq for StopDataSourceSyncJobInput
source§fn eq(&self, other: &StopDataSourceSyncJobInput) -> bool
fn eq(&self, other: &StopDataSourceSyncJobInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StopDataSourceSyncJobInput
Auto Trait Implementations§
impl RefUnwindSafe for StopDataSourceSyncJobInput
impl Send for StopDataSourceSyncJobInput
impl Sync for StopDataSourceSyncJobInput
impl Unpin for StopDataSourceSyncJobInput
impl UnwindSafe for StopDataSourceSyncJobInput
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.