Struct aws_sdk_iotanalytics::types::Pipeline
source · #[non_exhaustive]pub struct Pipeline {
pub name: Option<String>,
pub arn: Option<String>,
pub activities: Option<Vec<PipelineActivity>>,
pub reprocessing_summaries: Option<Vec<ReprocessingSummary>>,
pub creation_time: Option<DateTime>,
pub last_update_time: Option<DateTime>,
}
Expand description
Contains information about a pipeline.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: Option<String>
The name of the pipeline.
arn: Option<String>
The ARN of the pipeline.
activities: Option<Vec<PipelineActivity>>
The activities that perform transformations on the messages.
reprocessing_summaries: Option<Vec<ReprocessingSummary>>
A summary of information about the pipeline reprocessing.
creation_time: Option<DateTime>
When the pipeline was created.
last_update_time: Option<DateTime>
The last time the pipeline was updated.
Implementations§
source§impl Pipeline
impl Pipeline
sourcepub fn activities(&self) -> &[PipelineActivity]
pub fn activities(&self) -> &[PipelineActivity]
The activities that perform transformations on the messages.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .activities.is_none()
.
sourcepub fn reprocessing_summaries(&self) -> &[ReprocessingSummary]
pub fn reprocessing_summaries(&self) -> &[ReprocessingSummary]
A summary of information about the pipeline reprocessing.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .reprocessing_summaries.is_none()
.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
When the pipeline was created.
sourcepub fn last_update_time(&self) -> Option<&DateTime>
pub fn last_update_time(&self) -> Option<&DateTime>
The last time the pipeline was updated.
Trait Implementations§
source§impl PartialEq for Pipeline
impl PartialEq for Pipeline
impl StructuralPartialEq for Pipeline
Auto Trait Implementations§
impl RefUnwindSafe for Pipeline
impl Send for Pipeline
impl Sync for Pipeline
impl Unpin for Pipeline
impl UnwindSafe for Pipeline
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.