Struct aws_sdk_amplifybackend::operation::list_backend_jobs::builders::ListBackendJobsOutputBuilder
source · #[non_exhaustive]pub struct ListBackendJobsOutputBuilder { /* private fields */ }
Expand description
A builder for ListBackendJobsOutput
.
Implementations§
source§impl ListBackendJobsOutputBuilder
impl ListBackendJobsOutputBuilder
sourcepub fn jobs(self, input: BackendJobRespObj) -> Self
pub fn jobs(self, input: BackendJobRespObj) -> Self
Appends an item to jobs
.
To override the contents of this collection use set_jobs
.
An array of jobs and their properties.
sourcepub fn set_jobs(self, input: Option<Vec<BackendJobRespObj>>) -> Self
pub fn set_jobs(self, input: Option<Vec<BackendJobRespObj>>) -> Self
An array of jobs and their properties.
sourcepub fn get_jobs(&self) -> &Option<Vec<BackendJobRespObj>>
pub fn get_jobs(&self) -> &Option<Vec<BackendJobRespObj>>
An array of jobs and their properties.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
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
The token for the next set of results.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
The token for the next set of results.
sourcepub fn build(self) -> ListBackendJobsOutput
pub fn build(self) -> ListBackendJobsOutput
Consumes the builder and constructs a ListBackendJobsOutput
.
Trait Implementations§
source§impl Clone for ListBackendJobsOutputBuilder
impl Clone for ListBackendJobsOutputBuilder
source§fn clone(&self) -> ListBackendJobsOutputBuilder
fn clone(&self) -> ListBackendJobsOutputBuilder
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 ListBackendJobsOutputBuilder
impl Debug for ListBackendJobsOutputBuilder
source§impl Default for ListBackendJobsOutputBuilder
impl Default for ListBackendJobsOutputBuilder
source§fn default() -> ListBackendJobsOutputBuilder
fn default() -> ListBackendJobsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ListBackendJobsOutputBuilder
impl PartialEq for ListBackendJobsOutputBuilder
source§fn eq(&self, other: &ListBackendJobsOutputBuilder) -> bool
fn eq(&self, other: &ListBackendJobsOutputBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ListBackendJobsOutputBuilder
Auto Trait Implementations§
impl Freeze for ListBackendJobsOutputBuilder
impl RefUnwindSafe for ListBackendJobsOutputBuilder
impl Send for ListBackendJobsOutputBuilder
impl Sync for ListBackendJobsOutputBuilder
impl Unpin for ListBackendJobsOutputBuilder
impl UnwindSafe for ListBackendJobsOutputBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
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.