Struct aws_sdk_codebuild::operation::list_build_batches::builders::ListBuildBatchesOutputBuilder
source · #[non_exhaustive]pub struct ListBuildBatchesOutputBuilder { /* private fields */ }
Expand description
A builder for ListBuildBatchesOutput
.
Implementations§
source§impl ListBuildBatchesOutputBuilder
impl ListBuildBatchesOutputBuilder
sourcepub fn ids(self, input: impl Into<String>) -> Self
pub fn ids(self, input: impl Into<String>) -> Self
Appends an item to ids
.
To override the contents of this collection use set_ids
.
An array of strings that contains the batch build identifiers.
sourcepub fn set_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_ids(self, input: Option<Vec<String>>) -> Self
An array of strings that contains the batch build identifiers.
sourcepub fn get_ids(&self) -> &Option<Vec<String>>
pub fn get_ids(&self) -> &Option<Vec<String>>
An array of strings that contains the batch build identifiers.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If there are more items to return, this contains a token that is passed to a subsequent call to ListBuildBatches
to retrieve the next set of items.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If there are more items to return, this contains a token that is passed to a subsequent call to ListBuildBatches
to retrieve the next set of items.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If there are more items to return, this contains a token that is passed to a subsequent call to ListBuildBatches
to retrieve the next set of items.
sourcepub fn build(self) -> ListBuildBatchesOutput
pub fn build(self) -> ListBuildBatchesOutput
Consumes the builder and constructs a ListBuildBatchesOutput
.
Trait Implementations§
source§impl Clone for ListBuildBatchesOutputBuilder
impl Clone for ListBuildBatchesOutputBuilder
source§fn clone(&self) -> ListBuildBatchesOutputBuilder
fn clone(&self) -> ListBuildBatchesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ListBuildBatchesOutputBuilder
impl Default for ListBuildBatchesOutputBuilder
source§fn default() -> ListBuildBatchesOutputBuilder
fn default() -> ListBuildBatchesOutputBuilder
source§impl PartialEq for ListBuildBatchesOutputBuilder
impl PartialEq for ListBuildBatchesOutputBuilder
source§fn eq(&self, other: &ListBuildBatchesOutputBuilder) -> bool
fn eq(&self, other: &ListBuildBatchesOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ListBuildBatchesOutputBuilder
Auto Trait Implementations§
impl Freeze for ListBuildBatchesOutputBuilder
impl RefUnwindSafe for ListBuildBatchesOutputBuilder
impl Send for ListBuildBatchesOutputBuilder
impl Sync for ListBuildBatchesOutputBuilder
impl Unpin for ListBuildBatchesOutputBuilder
impl UnwindSafe for ListBuildBatchesOutputBuilder
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