#[non_exhaustive]pub struct ListDataSourceRunsInput {
pub domain_identifier: Option<String>,
pub data_source_identifier: Option<String>,
pub status: Option<DataSourceRunStatus>,
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 invoke the ListDataSourceRuns
action.
data_source_identifier: Option<String>
The identifier of the data source.
status: Option<DataSourceRunStatus>
The status of the data source.
next_token: Option<String>
When the number of runs 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 runs, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to ListDataSourceRuns
to list the next set of runs.
max_results: Option<i32>
The maximum number of runs to return in a single call to ListDataSourceRuns
. When the number of runs 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 ListDataSourceRuns
to list the next set of runs.
Implementations§
source§impl ListDataSourceRunsInput
impl ListDataSourceRunsInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The identifier of the Amazon DataZone domain in which to invoke the ListDataSourceRuns
action.
sourcepub fn data_source_identifier(&self) -> Option<&str>
pub fn data_source_identifier(&self) -> Option<&str>
The identifier of the data source.
sourcepub fn status(&self) -> Option<&DataSourceRunStatus>
pub fn status(&self) -> Option<&DataSourceRunStatus>
The status of the data source.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
When the number of runs 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 runs, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to ListDataSourceRuns
to list the next set of runs.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of runs to return in a single call to ListDataSourceRuns
. When the number of runs 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 ListDataSourceRuns
to list the next set of runs.
source§impl ListDataSourceRunsInput
impl ListDataSourceRunsInput
sourcepub fn builder() -> ListDataSourceRunsInputBuilder
pub fn builder() -> ListDataSourceRunsInputBuilder
Creates a new builder-style object to manufacture ListDataSourceRunsInput
.
Trait Implementations§
source§impl Clone for ListDataSourceRunsInput
impl Clone for ListDataSourceRunsInput
source§fn clone(&self) -> ListDataSourceRunsInput
fn clone(&self) -> ListDataSourceRunsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListDataSourceRunsInput
impl Debug for ListDataSourceRunsInput
source§impl PartialEq for ListDataSourceRunsInput
impl PartialEq for ListDataSourceRunsInput
source§fn eq(&self, other: &ListDataSourceRunsInput) -> bool
fn eq(&self, other: &ListDataSourceRunsInput) -> bool
self
and other
values to be equal, and is used
by ==
.