#[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
source§impl PartialEq for ReprocessingSummaryBuilder
impl PartialEq for ReprocessingSummaryBuilder
source§fn eq(&self, other: &ReprocessingSummaryBuilder) -> bool
fn eq(&self, other: &ReprocessingSummaryBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ReprocessingSummaryBuilder
Auto Trait Implementations§
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> 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>
Creates a shared type from an unshared type.