Struct aws_sdk_connect::operation::get_current_user_data::builders::GetCurrentUserDataOutputBuilder
source · #[non_exhaustive]pub struct GetCurrentUserDataOutputBuilder { /* private fields */ }
Expand description
A builder for GetCurrentUserDataOutput
.
Implementations§
source§impl GetCurrentUserDataOutputBuilder
impl GetCurrentUserDataOutputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If there are additional results, this is the token for the next set of results.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If there are additional results, this is the token for the next set of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If there are additional results, this is the token for the next set of results.
sourcepub fn user_data_list(self, input: UserData) -> Self
pub fn user_data_list(self, input: UserData) -> Self
Appends an item to user_data_list
.
To override the contents of this collection use set_user_data_list
.
A list of the user data that is returned.
sourcepub fn set_user_data_list(self, input: Option<Vec<UserData>>) -> Self
pub fn set_user_data_list(self, input: Option<Vec<UserData>>) -> Self
A list of the user data that is returned.
sourcepub fn get_user_data_list(&self) -> &Option<Vec<UserData>>
pub fn get_user_data_list(&self) -> &Option<Vec<UserData>>
A list of the user data that is returned.
sourcepub fn approximate_total_count(self, input: i64) -> Self
pub fn approximate_total_count(self, input: i64) -> Self
The total count of the result, regardless of the current page size.
sourcepub fn set_approximate_total_count(self, input: Option<i64>) -> Self
pub fn set_approximate_total_count(self, input: Option<i64>) -> Self
The total count of the result, regardless of the current page size.
sourcepub fn get_approximate_total_count(&self) -> &Option<i64>
pub fn get_approximate_total_count(&self) -> &Option<i64>
The total count of the result, regardless of the current page size.
sourcepub fn build(self) -> GetCurrentUserDataOutput
pub fn build(self) -> GetCurrentUserDataOutput
Consumes the builder and constructs a GetCurrentUserDataOutput
.
Trait Implementations§
source§impl Clone for GetCurrentUserDataOutputBuilder
impl Clone for GetCurrentUserDataOutputBuilder
source§fn clone(&self) -> GetCurrentUserDataOutputBuilder
fn clone(&self) -> GetCurrentUserDataOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetCurrentUserDataOutputBuilder
impl Default for GetCurrentUserDataOutputBuilder
source§fn default() -> GetCurrentUserDataOutputBuilder
fn default() -> GetCurrentUserDataOutputBuilder
source§impl PartialEq for GetCurrentUserDataOutputBuilder
impl PartialEq for GetCurrentUserDataOutputBuilder
source§fn eq(&self, other: &GetCurrentUserDataOutputBuilder) -> bool
fn eq(&self, other: &GetCurrentUserDataOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetCurrentUserDataOutputBuilder
Auto Trait Implementations§
impl Freeze for GetCurrentUserDataOutputBuilder
impl RefUnwindSafe for GetCurrentUserDataOutputBuilder
impl Send for GetCurrentUserDataOutputBuilder
impl Sync for GetCurrentUserDataOutputBuilder
impl Unpin for GetCurrentUserDataOutputBuilder
impl UnwindSafe for GetCurrentUserDataOutputBuilder
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> 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