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