#[non_exhaustive]pub struct ListDataSourcesInput {
pub domain_identifier: Option<String>,
pub project_identifier: Option<String>,
pub environment_identifier: Option<String>,
pub type: Option<String>,
pub status: Option<DataSourceStatus>,
pub name: 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.domain_identifier: Option<String>
The identifier of the Amazon DataZone domain in which to list the data sources.
project_identifier: Option<String>
The identifier of the project in which to list data sources.
environment_identifier: Option<String>
The identifier of the environment in which to list the data sources.
type: Option<String>
The type of the data source.
status: Option<DataSourceStatus>
The status of the data source.
name: Option<String>
The name of the data source.
next_token: Option<String>
When the number of data sources is greater than the default value for the MaxResults
parameter, or if you explicitly specify a value for MaxResults
that is less than the number of data sources, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to ListDataSources
to list the next set of data sources.
max_results: Option<i32>
The maximum number of data sources to return in a single call to ListDataSources
. When the number of data sources to be listed is greater than the value of MaxResults
, the response contains a NextToken
value that you can use in a subsequent call to ListDataSources
to list the next set of data sources.
Implementations§
source§impl ListDataSourcesInput
impl ListDataSourcesInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The identifier of the Amazon DataZone domain in which to list the data sources.
sourcepub fn project_identifier(&self) -> Option<&str>
pub fn project_identifier(&self) -> Option<&str>
The identifier of the project in which to list data sources.
sourcepub fn environment_identifier(&self) -> Option<&str>
pub fn environment_identifier(&self) -> Option<&str>
The identifier of the environment in which to list the data sources.
sourcepub fn status(&self) -> Option<&DataSourceStatus>
pub fn status(&self) -> Option<&DataSourceStatus>
The status of the data source.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
When the number of data sources is greater than the default value for the MaxResults
parameter, or if you explicitly specify a value for MaxResults
that is less than the number of data sources, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to ListDataSources
to list the next set of data sources.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of data sources to return in a single call to ListDataSources
. When the number of data sources to be listed is greater than the value of MaxResults
, the response contains a NextToken
value that you can use in a subsequent call to ListDataSources
to list the next set of data sources.
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 ==
.