Struct aws_sdk_codebuild::operation::batch_delete_builds::builders::BatchDeleteBuildsOutputBuilder
source · #[non_exhaustive]pub struct BatchDeleteBuildsOutputBuilder { /* private fields */ }
Expand description
A builder for BatchDeleteBuildsOutput
.
Implementations§
source§impl BatchDeleteBuildsOutputBuilder
impl BatchDeleteBuildsOutputBuilder
sourcepub fn builds_deleted(self, input: impl Into<String>) -> Self
pub fn builds_deleted(self, input: impl Into<String>) -> Self
Appends an item to builds_deleted
.
To override the contents of this collection use set_builds_deleted
.
The IDs of the builds that were successfully deleted.
sourcepub fn set_builds_deleted(self, input: Option<Vec<String>>) -> Self
pub fn set_builds_deleted(self, input: Option<Vec<String>>) -> Self
The IDs of the builds that were successfully deleted.
sourcepub fn get_builds_deleted(&self) -> &Option<Vec<String>>
pub fn get_builds_deleted(&self) -> &Option<Vec<String>>
The IDs of the builds that were successfully deleted.
sourcepub fn builds_not_deleted(self, input: BuildNotDeleted) -> Self
pub fn builds_not_deleted(self, input: BuildNotDeleted) -> Self
Appends an item to builds_not_deleted
.
To override the contents of this collection use set_builds_not_deleted
.
Information about any builds that could not be successfully deleted.
sourcepub fn set_builds_not_deleted(self, input: Option<Vec<BuildNotDeleted>>) -> Self
pub fn set_builds_not_deleted(self, input: Option<Vec<BuildNotDeleted>>) -> Self
Information about any builds that could not be successfully deleted.
sourcepub fn get_builds_not_deleted(&self) -> &Option<Vec<BuildNotDeleted>>
pub fn get_builds_not_deleted(&self) -> &Option<Vec<BuildNotDeleted>>
Information about any builds that could not be successfully deleted.
sourcepub fn build(self) -> BatchDeleteBuildsOutput
pub fn build(self) -> BatchDeleteBuildsOutput
Consumes the builder and constructs a BatchDeleteBuildsOutput
.
Trait Implementations§
source§impl Clone for BatchDeleteBuildsOutputBuilder
impl Clone for BatchDeleteBuildsOutputBuilder
source§fn clone(&self) -> BatchDeleteBuildsOutputBuilder
fn clone(&self) -> BatchDeleteBuildsOutputBuilder
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 BatchDeleteBuildsOutputBuilder
impl Default for BatchDeleteBuildsOutputBuilder
source§fn default() -> BatchDeleteBuildsOutputBuilder
fn default() -> BatchDeleteBuildsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchDeleteBuildsOutputBuilder
impl PartialEq for BatchDeleteBuildsOutputBuilder
source§fn eq(&self, other: &BatchDeleteBuildsOutputBuilder) -> bool
fn eq(&self, other: &BatchDeleteBuildsOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchDeleteBuildsOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchDeleteBuildsOutputBuilder
impl RefUnwindSafe for BatchDeleteBuildsOutputBuilder
impl Send for BatchDeleteBuildsOutputBuilder
impl Sync for BatchDeleteBuildsOutputBuilder
impl Unpin for BatchDeleteBuildsOutputBuilder
impl UnwindSafe for BatchDeleteBuildsOutputBuilder
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.