Struct aws_sdk_iotanalytics::types::builders::PipelineBuilder
source · #[non_exhaustive]pub struct PipelineBuilder { /* private fields */ }
Expand description
A builder for Pipeline
.
Implementations§
source§impl PipelineBuilder
impl PipelineBuilder
sourcepub fn activities(self, input: PipelineActivity) -> Self
pub fn activities(self, input: PipelineActivity) -> Self
Appends an item to activities
.
To override the contents of this collection use set_activities
.
The activities that perform transformations on the messages.
sourcepub fn set_activities(self, input: Option<Vec<PipelineActivity>>) -> Self
pub fn set_activities(self, input: Option<Vec<PipelineActivity>>) -> Self
The activities that perform transformations on the messages.
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 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 last_update_time(self, input: DateTime) -> Self
pub fn last_update_time(self, input: DateTime) -> Self
The last time the pipeline was updated.
sourcepub fn set_last_update_time(self, input: Option<DateTime>) -> Self
pub fn set_last_update_time(self, input: Option<DateTime>) -> Self
The last time the pipeline was updated.
Trait Implementations§
source§impl Clone for PipelineBuilder
impl Clone for PipelineBuilder
source§fn clone(&self) -> PipelineBuilder
fn clone(&self) -> PipelineBuilder
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 PipelineBuilder
impl Debug for PipelineBuilder
source§impl Default for PipelineBuilder
impl Default for PipelineBuilder
source§fn default() -> PipelineBuilder
fn default() -> PipelineBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<PipelineBuilder> for PipelineBuilder
impl PartialEq<PipelineBuilder> for PipelineBuilder
source§fn eq(&self, other: &PipelineBuilder) -> bool
fn eq(&self, other: &PipelineBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PipelineBuilder
Auto Trait Implementations§
impl RefUnwindSafe for PipelineBuilder
impl Send for PipelineBuilder
impl Sync for PipelineBuilder
impl Unpin for PipelineBuilder
impl UnwindSafe for PipelineBuilder
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