Struct aws_sdk_codestar::operation::list_user_profiles::builders::ListUserProfilesOutputBuilder
source · #[non_exhaustive]pub struct ListUserProfilesOutputBuilder { /* private fields */ }
Expand description
A builder for ListUserProfilesOutput
.
Implementations§
source§impl ListUserProfilesOutputBuilder
impl ListUserProfilesOutputBuilder
sourcepub fn user_profiles(self, input: UserProfileSummary) -> Self
pub fn user_profiles(self, input: UserProfileSummary) -> Self
Appends an item to user_profiles
.
To override the contents of this collection use set_user_profiles
.
All the user profiles configured in AWS CodeStar for an AWS account.
sourcepub fn set_user_profiles(self, input: Option<Vec<UserProfileSummary>>) -> Self
pub fn set_user_profiles(self, input: Option<Vec<UserProfileSummary>>) -> Self
All the user profiles configured in AWS CodeStar for an AWS account.
sourcepub fn get_user_profiles(&self) -> &Option<Vec<UserProfileSummary>>
pub fn get_user_profiles(&self) -> &Option<Vec<UserProfileSummary>>
All the user profiles configured in AWS CodeStar for an AWS account.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
The continuation token to use when requesting the next set of results, if there are more results to be returned.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
The continuation token to use when requesting the next set of results, if there are more results to be returned.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The continuation token to use when requesting the next set of results, if there are more results to be returned.
sourcepub fn build(self) -> Result<ListUserProfilesOutput, BuildError>
pub fn build(self) -> Result<ListUserProfilesOutput, BuildError>
Consumes the builder and constructs a ListUserProfilesOutput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for ListUserProfilesOutputBuilder
impl Clone for ListUserProfilesOutputBuilder
source§fn clone(&self) -> ListUserProfilesOutputBuilder
fn clone(&self) -> ListUserProfilesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListUserProfilesOutputBuilder
impl Default for ListUserProfilesOutputBuilder
source§fn default() -> ListUserProfilesOutputBuilder
fn default() -> ListUserProfilesOutputBuilder
source§impl PartialEq for ListUserProfilesOutputBuilder
impl PartialEq for ListUserProfilesOutputBuilder
source§fn eq(&self, other: &ListUserProfilesOutputBuilder) -> bool
fn eq(&self, other: &ListUserProfilesOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListUserProfilesOutputBuilder
Auto Trait Implementations§
impl Freeze for ListUserProfilesOutputBuilder
impl RefUnwindSafe for ListUserProfilesOutputBuilder
impl Send for ListUserProfilesOutputBuilder
impl Sync for ListUserProfilesOutputBuilder
impl Unpin for ListUserProfilesOutputBuilder
impl UnwindSafe for ListUserProfilesOutputBuilder
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