Struct aws_sdk_datazone::operation::list_project_memberships::builders::ListProjectMembershipsInputBuilder
source · #[non_exhaustive]pub struct ListProjectMembershipsInputBuilder { /* private fields */ }
Expand description
A builder for ListProjectMembershipsInput
.
Implementations§
source§impl ListProjectMembershipsInputBuilder
impl ListProjectMembershipsInputBuilder
sourcepub fn domain_identifier(self, input: impl Into<String>) -> Self
pub fn domain_identifier(self, input: impl Into<String>) -> Self
The identifier of the Amazon DataZone domain in which you want to list project memberships.
sourcepub fn set_domain_identifier(self, input: Option<String>) -> Self
pub fn set_domain_identifier(self, input: Option<String>) -> Self
The identifier of the Amazon DataZone domain in which you want to list project memberships.
sourcepub fn get_domain_identifier(&self) -> &Option<String>
pub fn get_domain_identifier(&self) -> &Option<String>
The identifier of the Amazon DataZone domain in which you want to list project memberships.
sourcepub fn project_identifier(self, input: impl Into<String>) -> Self
pub fn project_identifier(self, input: impl Into<String>) -> Self
The identifier of the project whose memberships you want to list.
sourcepub fn set_project_identifier(self, input: Option<String>) -> Self
pub fn set_project_identifier(self, input: Option<String>) -> Self
The identifier of the project whose memberships you want to list.
sourcepub fn get_project_identifier(&self) -> &Option<String>
pub fn get_project_identifier(&self) -> &Option<String>
The identifier of the project whose memberships you want to list.
sourcepub fn sort_by(self, input: SortFieldProject) -> Self
pub fn sort_by(self, input: SortFieldProject) -> Self
The method by which you want to sort the project memberships.
sourcepub fn set_sort_by(self, input: Option<SortFieldProject>) -> Self
pub fn set_sort_by(self, input: Option<SortFieldProject>) -> Self
The method by which you want to sort the project memberships.
sourcepub fn get_sort_by(&self) -> &Option<SortFieldProject>
pub fn get_sort_by(&self) -> &Option<SortFieldProject>
The method by which you want to sort the project memberships.
sourcepub fn sort_order(self, input: SortOrder) -> Self
pub fn sort_order(self, input: SortOrder) -> Self
The sort order of the project memberships.
sourcepub fn set_sort_order(self, input: Option<SortOrder>) -> Self
pub fn set_sort_order(self, input: Option<SortOrder>) -> Self
The sort order of the project memberships.
sourcepub fn get_sort_order(&self) -> &Option<SortOrder>
pub fn get_sort_order(&self) -> &Option<SortOrder>
The sort order of the project memberships.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
When the number of memberships 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 memberships, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to ListProjectMemberships
to list the next set of memberships.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
When the number of memberships 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 memberships, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to ListProjectMemberships
to list the next set of memberships.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
When the number of memberships 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 memberships, the response includes a pagination token named NextToken
. You can specify this NextToken
value in a subsequent call to ListProjectMemberships
to list the next set of memberships.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of memberships to return in a single call to ListProjectMemberships
. When the number of memberships 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 ListProjectMemberships
to list the next set of memberships.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of memberships to return in a single call to ListProjectMemberships
. When the number of memberships 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 ListProjectMemberships
to list the next set of memberships.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of memberships to return in a single call to ListProjectMemberships
. When the number of memberships 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 ListProjectMemberships
to list the next set of memberships.
sourcepub fn build(self) -> Result<ListProjectMembershipsInput, BuildError>
pub fn build(self) -> Result<ListProjectMembershipsInput, BuildError>
Consumes the builder and constructs a ListProjectMembershipsInput
.
source§impl ListProjectMembershipsInputBuilder
impl ListProjectMembershipsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<ListProjectMembershipsOutput, SdkError<ListProjectMembershipsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<ListProjectMembershipsOutput, SdkError<ListProjectMembershipsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for ListProjectMembershipsInputBuilder
impl Clone for ListProjectMembershipsInputBuilder
source§fn clone(&self) -> ListProjectMembershipsInputBuilder
fn clone(&self) -> ListProjectMembershipsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListProjectMembershipsInputBuilder
impl Default for ListProjectMembershipsInputBuilder
source§fn default() -> ListProjectMembershipsInputBuilder
fn default() -> ListProjectMembershipsInputBuilder
source§impl PartialEq for ListProjectMembershipsInputBuilder
impl PartialEq for ListProjectMembershipsInputBuilder
source§fn eq(&self, other: &ListProjectMembershipsInputBuilder) -> bool
fn eq(&self, other: &ListProjectMembershipsInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.