#[non_exhaustive]pub struct ListDataSourcesInput {
pub application_id: Option<String>,
pub index_id: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.application_id: Option<String>The identifier of the Amazon Q application linked to the data source connectors.
index_id: Option<String>The identifier of the index used with one or more data source connectors.
next_token: Option<String>If the maxResults response was incomplete because there is more data to retrieve, Amazon Q returns a pagination token in the response. You can use this pagination token to retrieve the next set of Amazon Q data source connectors.
max_results: Option<i32>The maximum number of data source connectors to return.
Implementations§
source§impl ListDataSourcesInput
impl ListDataSourcesInput
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The identifier of the Amazon Q application linked to the data source connectors.
sourcepub fn index_id(&self) -> Option<&str>
pub fn index_id(&self) -> Option<&str>
The identifier of the index used with one or more data source connectors.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the maxResults response was incomplete because there is more data to retrieve, Amazon Q returns a pagination token in the response. You can use this pagination token to retrieve the next set of Amazon Q data source connectors.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of data source connectors to return.
source§impl ListDataSourcesInput
impl ListDataSourcesInput
sourcepub fn builder() -> ListDataSourcesInputBuilder
pub fn builder() -> ListDataSourcesInputBuilder
Creates a new builder-style object to manufacture ListDataSourcesInput.
Trait Implementations§
source§impl Clone for ListDataSourcesInput
impl Clone for ListDataSourcesInput
source§fn clone(&self) -> ListDataSourcesInput
fn clone(&self) -> ListDataSourcesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ListDataSourcesInput
impl Debug for ListDataSourcesInput
source§impl PartialEq for ListDataSourcesInput
impl PartialEq for ListDataSourcesInput
source§fn eq(&self, other: &ListDataSourcesInput) -> bool
fn eq(&self, other: &ListDataSourcesInput) -> bool
self and other values to be equal, and is used
by ==.