#[non_exhaustive]pub struct PipelineSummaryBuilder { /* private fields */ }Expand description
A builder for PipelineSummary.
Implementations§
source§impl PipelineSummaryBuilder
impl PipelineSummaryBuilder
sourcepub fn pipeline_name(self, input: impl Into<String>) -> Self
pub fn pipeline_name(self, input: impl Into<String>) -> Self
The name of the pipeline.
sourcepub fn set_pipeline_name(self, input: Option<String>) -> Self
pub fn set_pipeline_name(self, input: Option<String>) -> Self
The name of the pipeline.
sourcepub fn get_pipeline_name(&self) -> &Option<String>
pub fn get_pipeline_name(&self) -> &Option<String>
The name of the pipeline.
sourcepub fn reprocessing_summaries(self, input: ReprocessingSummary) -> Self
pub fn reprocessing_summaries(self, input: ReprocessingSummary) -> Self
Appends an item to reprocessing_summaries.
To override the contents of this collection use set_reprocessing_summaries.
A summary of information about the pipeline reprocessing.
sourcepub fn set_reprocessing_summaries(
self,
input: Option<Vec<ReprocessingSummary>>,
) -> Self
pub fn set_reprocessing_summaries( self, input: Option<Vec<ReprocessingSummary>>, ) -> Self
A summary of information about the pipeline reprocessing.
sourcepub fn get_reprocessing_summaries(&self) -> &Option<Vec<ReprocessingSummary>>
pub fn get_reprocessing_summaries(&self) -> &Option<Vec<ReprocessingSummary>>
A summary of information about the pipeline reprocessing.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
When the pipeline was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
When the pipeline was created.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
When the pipeline was created.
sourcepub fn last_update_time(self, input: DateTime) -> Self
pub fn last_update_time(self, input: DateTime) -> Self
When the pipeline was last updated.
sourcepub fn set_last_update_time(self, input: Option<DateTime>) -> Self
pub fn set_last_update_time(self, input: Option<DateTime>) -> Self
When the pipeline was last updated.
sourcepub fn get_last_update_time(&self) -> &Option<DateTime>
pub fn get_last_update_time(&self) -> &Option<DateTime>
When the pipeline was last updated.
sourcepub fn build(self) -> PipelineSummary
pub fn build(self) -> PipelineSummary
Consumes the builder and constructs a PipelineSummary.
Trait Implementations§
source§impl Clone for PipelineSummaryBuilder
impl Clone for PipelineSummaryBuilder
source§fn clone(&self) -> PipelineSummaryBuilder
fn clone(&self) -> PipelineSummaryBuilder
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 PipelineSummaryBuilder
impl Debug for PipelineSummaryBuilder
source§impl Default for PipelineSummaryBuilder
impl Default for PipelineSummaryBuilder
source§fn default() -> PipelineSummaryBuilder
fn default() -> PipelineSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for PipelineSummaryBuilder
impl PartialEq for PipelineSummaryBuilder
impl StructuralPartialEq for PipelineSummaryBuilder
Auto Trait Implementations§
impl Freeze for PipelineSummaryBuilder
impl RefUnwindSafe for PipelineSummaryBuilder
impl Send for PipelineSummaryBuilder
impl Sync for PipelineSummaryBuilder
impl Unpin for PipelineSummaryBuilder
impl UnwindSafe for PipelineSummaryBuilder
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.