#[non_exhaustive]pub struct BatchDeleteImageOutputBuilder { /* private fields */ }
Expand description
A builder for BatchDeleteImageOutput
.
Implementations§
source§impl BatchDeleteImageOutputBuilder
impl BatchDeleteImageOutputBuilder
sourcepub fn image_ids(self, input: ImageIdentifier) -> Self
pub fn image_ids(self, input: ImageIdentifier) -> Self
Appends an item to image_ids
.
To override the contents of this collection use set_image_ids
.
The image IDs of the deleted images.
sourcepub fn set_image_ids(self, input: Option<Vec<ImageIdentifier>>) -> Self
pub fn set_image_ids(self, input: Option<Vec<ImageIdentifier>>) -> Self
The image IDs of the deleted images.
sourcepub fn get_image_ids(&self) -> &Option<Vec<ImageIdentifier>>
pub fn get_image_ids(&self) -> &Option<Vec<ImageIdentifier>>
The image IDs of the deleted images.
sourcepub fn failures(self, input: ImageFailure) -> Self
pub fn failures(self, input: ImageFailure) -> Self
Appends an item to failures
.
To override the contents of this collection use set_failures
.
Any failures associated with the call.
sourcepub fn set_failures(self, input: Option<Vec<ImageFailure>>) -> Self
pub fn set_failures(self, input: Option<Vec<ImageFailure>>) -> Self
Any failures associated with the call.
sourcepub fn get_failures(&self) -> &Option<Vec<ImageFailure>>
pub fn get_failures(&self) -> &Option<Vec<ImageFailure>>
Any failures associated with the call.
sourcepub fn build(self) -> BatchDeleteImageOutput
pub fn build(self) -> BatchDeleteImageOutput
Consumes the builder and constructs a BatchDeleteImageOutput
.
Trait Implementations§
source§impl Clone for BatchDeleteImageOutputBuilder
impl Clone for BatchDeleteImageOutputBuilder
source§fn clone(&self) -> BatchDeleteImageOutputBuilder
fn clone(&self) -> BatchDeleteImageOutputBuilder
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 BatchDeleteImageOutputBuilder
impl Default for BatchDeleteImageOutputBuilder
source§fn default() -> BatchDeleteImageOutputBuilder
fn default() -> BatchDeleteImageOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchDeleteImageOutputBuilder
impl PartialEq for BatchDeleteImageOutputBuilder
source§fn eq(&self, other: &BatchDeleteImageOutputBuilder) -> bool
fn eq(&self, other: &BatchDeleteImageOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchDeleteImageOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchDeleteImageOutputBuilder
impl RefUnwindSafe for BatchDeleteImageOutputBuilder
impl Send for BatchDeleteImageOutputBuilder
impl Sync for BatchDeleteImageOutputBuilder
impl Unpin for BatchDeleteImageOutputBuilder
impl UnwindSafe for BatchDeleteImageOutputBuilder
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.