#[non_exhaustive]pub struct SearchGroupsOutputBuilder { /* private fields */ }Expand description
A builder for SearchGroupsOutput.
Implementations§
source§impl SearchGroupsOutputBuilder
impl SearchGroupsOutputBuilder
sourcepub fn group_list(self, input: Group) -> Self
pub fn group_list(self, input: Group) -> Self
Appends an item to group_list.
To override the contents of this collection use set_group_list.
A list of groups in a specified namespace that match the filters you set in your SearchGroups request.
sourcepub fn set_group_list(self, input: Option<Vec<Group>>) -> Self
pub fn set_group_list(self, input: Option<Vec<Group>>) -> Self
A list of groups in a specified namespace that match the filters you set in your SearchGroups request.
sourcepub fn get_group_list(&self) -> &Option<Vec<Group>>
pub fn get_group_list(&self) -> &Option<Vec<Group>>
A list of groups in a specified namespace that match the filters you set in your SearchGroups request.
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 get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A pagination token that can be used in a subsequent request.
sourcepub fn request_id(self, input: impl Into<String>) -> Self
pub fn request_id(self, input: impl Into<String>) -> Self
The Amazon Web Services request ID for this operation.
sourcepub fn set_request_id(self, input: Option<String>) -> Self
pub fn set_request_id(self, input: Option<String>) -> Self
The Amazon Web Services request ID for this operation.
sourcepub fn get_request_id(&self) -> &Option<String>
pub fn get_request_id(&self) -> &Option<String>
The Amazon Web Services request ID for this operation.
sourcepub fn set_status(self, input: Option<i32>) -> Self
pub fn set_status(self, input: Option<i32>) -> Self
The HTTP status of the request.
sourcepub fn get_status(&self) -> &Option<i32>
pub fn get_status(&self) -> &Option<i32>
The HTTP status of the request.
sourcepub fn build(self) -> SearchGroupsOutput
pub fn build(self) -> SearchGroupsOutput
Consumes the builder and constructs a SearchGroupsOutput.
Trait Implementations§
source§impl Clone for SearchGroupsOutputBuilder
impl Clone for SearchGroupsOutputBuilder
source§fn clone(&self) -> SearchGroupsOutputBuilder
fn clone(&self) -> SearchGroupsOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for SearchGroupsOutputBuilder
impl Debug for SearchGroupsOutputBuilder
source§impl Default for SearchGroupsOutputBuilder
impl Default for SearchGroupsOutputBuilder
source§fn default() -> SearchGroupsOutputBuilder
fn default() -> SearchGroupsOutputBuilder
source§impl PartialEq for SearchGroupsOutputBuilder
impl PartialEq for SearchGroupsOutputBuilder
source§fn eq(&self, other: &SearchGroupsOutputBuilder) -> bool
fn eq(&self, other: &SearchGroupsOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for SearchGroupsOutputBuilder
Auto Trait Implementations§
impl Freeze for SearchGroupsOutputBuilder
impl RefUnwindSafe for SearchGroupsOutputBuilder
impl Send for SearchGroupsOutputBuilder
impl Sync for SearchGroupsOutputBuilder
impl Unpin for SearchGroupsOutputBuilder
impl UnwindSafe for SearchGroupsOutputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more