#[non_exhaustive]pub struct ReprocessingSummaryBuilder { /* private fields */ }Expand description
A builder for ReprocessingSummary.
Implementations§
source§impl ReprocessingSummaryBuilder
impl ReprocessingSummaryBuilder
sourcepub fn id(self, input: impl Into<String>) -> Self
pub fn id(self, input: impl Into<String>) -> Self
The reprocessingId returned by StartPipelineReprocessing.
sourcepub fn set_id(self, input: Option<String>) -> Self
pub fn set_id(self, input: Option<String>) -> Self
The reprocessingId returned by StartPipelineReprocessing.
sourcepub fn get_id(&self) -> &Option<String>
pub fn get_id(&self) -> &Option<String>
The reprocessingId returned by StartPipelineReprocessing.
sourcepub fn status(self, input: ReprocessingStatus) -> Self
pub fn status(self, input: ReprocessingStatus) -> Self
The status of the pipeline reprocessing.
sourcepub fn set_status(self, input: Option<ReprocessingStatus>) -> Self
pub fn set_status(self, input: Option<ReprocessingStatus>) -> Self
The status of the pipeline reprocessing.
sourcepub fn get_status(&self) -> &Option<ReprocessingStatus>
pub fn get_status(&self) -> &Option<ReprocessingStatus>
The status of the pipeline reprocessing.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The time the pipeline reprocessing was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The time the pipeline reprocessing was created.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
The time the pipeline reprocessing was created.
sourcepub fn build(self) -> ReprocessingSummary
pub fn build(self) -> ReprocessingSummary
Consumes the builder and constructs a ReprocessingSummary.
Trait Implementations§
source§impl Clone for ReprocessingSummaryBuilder
impl Clone for ReprocessingSummaryBuilder
source§fn clone(&self) -> ReprocessingSummaryBuilder
fn clone(&self) -> ReprocessingSummaryBuilder
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 ReprocessingSummaryBuilder
impl Debug for ReprocessingSummaryBuilder
source§impl Default for ReprocessingSummaryBuilder
impl Default for ReprocessingSummaryBuilder
source§fn default() -> ReprocessingSummaryBuilder
fn default() -> ReprocessingSummaryBuilder
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ReprocessingSummaryBuilder
Auto Trait Implementations§
impl Freeze for ReprocessingSummaryBuilder
impl RefUnwindSafe for ReprocessingSummaryBuilder
impl Send for ReprocessingSummaryBuilder
impl Sync for ReprocessingSummaryBuilder
impl Unpin for ReprocessingSummaryBuilder
impl UnwindSafe for ReprocessingSummaryBuilder
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.