#[non_exhaustive]pub struct ListGroupsInputBuilder { /* private fields */ }Expand description
A builder for ListGroupsInput.
Implementations§
source§impl ListGroupsInputBuilder
impl ListGroupsInputBuilder
sourcepub fn aws_account_id(self, input: impl Into<String>) -> Self
pub fn aws_account_id(self, input: impl Into<String>) -> Self
The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the Amazon Web Services account that contains your Amazon QuickSight account.
sourcepub fn set_aws_account_id(self, input: Option<String>) -> Self
pub fn set_aws_account_id(self, input: Option<String>) -> Self
The ID for the Amazon Web Services account that the group is in. Currently, you use the ID for the Amazon Web Services account that contains your Amazon QuickSight account.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A pagination token that can be used in a subsequent request.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A pagination token that can be used in a subsequent request.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of results to return.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of results to return.
sourcepub fn namespace(self, input: impl Into<String>) -> Self
pub fn namespace(self, input: impl Into<String>) -> Self
The namespace that you want a list of groups from.
sourcepub fn set_namespace(self, input: Option<String>) -> Self
pub fn set_namespace(self, input: Option<String>) -> Self
The namespace that you want a list of groups from.
sourcepub fn build(self) -> Result<ListGroupsInput, BuildError>
pub fn build(self) -> Result<ListGroupsInput, BuildError>
Consumes the builder and constructs a ListGroupsInput.
Trait Implementations§
source§impl Clone for ListGroupsInputBuilder
impl Clone for ListGroupsInputBuilder
source§fn clone(&self) -> ListGroupsInputBuilder
fn clone(&self) -> ListGroupsInputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for ListGroupsInputBuilder
impl Debug for ListGroupsInputBuilder
source§impl Default for ListGroupsInputBuilder
impl Default for ListGroupsInputBuilder
source§fn default() -> ListGroupsInputBuilder
fn default() -> ListGroupsInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ListGroupsInputBuilder> for ListGroupsInputBuilder
impl PartialEq<ListGroupsInputBuilder> for ListGroupsInputBuilder
source§fn eq(&self, other: &ListGroupsInputBuilder) -> bool
fn eq(&self, other: &ListGroupsInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ListGroupsInputBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ListGroupsInputBuilder
impl Send for ListGroupsInputBuilder
impl Sync for ListGroupsInputBuilder
impl Unpin for ListGroupsInputBuilder
impl UnwindSafe for ListGroupsInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more