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