Struct aws_sdk_appfabric::operation::start_user_access_tasks::builders::StartUserAccessTasksOutputBuilder
source · #[non_exhaustive]pub struct StartUserAccessTasksOutputBuilder { /* private fields */ }
Expand description
A builder for StartUserAccessTasksOutput
.
Implementations§
source§impl StartUserAccessTasksOutputBuilder
impl StartUserAccessTasksOutputBuilder
sourcepub fn user_access_tasks_list(self, input: UserAccessTaskItem) -> Self
pub fn user_access_tasks_list(self, input: UserAccessTaskItem) -> Self
Appends an item to user_access_tasks_list
.
To override the contents of this collection use set_user_access_tasks_list
.
Contains a list of user access task information.
sourcepub fn set_user_access_tasks_list(
self,
input: Option<Vec<UserAccessTaskItem>>,
) -> Self
pub fn set_user_access_tasks_list( self, input: Option<Vec<UserAccessTaskItem>>, ) -> Self
Contains a list of user access task information.
sourcepub fn get_user_access_tasks_list(&self) -> &Option<Vec<UserAccessTaskItem>>
pub fn get_user_access_tasks_list(&self) -> &Option<Vec<UserAccessTaskItem>>
Contains a list of user access task information.
sourcepub fn build(self) -> StartUserAccessTasksOutput
pub fn build(self) -> StartUserAccessTasksOutput
Consumes the builder and constructs a StartUserAccessTasksOutput
.
Trait Implementations§
source§impl Clone for StartUserAccessTasksOutputBuilder
impl Clone for StartUserAccessTasksOutputBuilder
source§fn clone(&self) -> StartUserAccessTasksOutputBuilder
fn clone(&self) -> StartUserAccessTasksOutputBuilder
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 Default for StartUserAccessTasksOutputBuilder
impl Default for StartUserAccessTasksOutputBuilder
source§fn default() -> StartUserAccessTasksOutputBuilder
fn default() -> StartUserAccessTasksOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for StartUserAccessTasksOutputBuilder
impl PartialEq for StartUserAccessTasksOutputBuilder
source§fn eq(&self, other: &StartUserAccessTasksOutputBuilder) -> bool
fn eq(&self, other: &StartUserAccessTasksOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StartUserAccessTasksOutputBuilder
Auto Trait Implementations§
impl Freeze for StartUserAccessTasksOutputBuilder
impl RefUnwindSafe for StartUserAccessTasksOutputBuilder
impl Send for StartUserAccessTasksOutputBuilder
impl Sync for StartUserAccessTasksOutputBuilder
impl Unpin for StartUserAccessTasksOutputBuilder
impl UnwindSafe for StartUserAccessTasksOutputBuilder
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
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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.