Struct aws_sdk_iotanalytics::types::PipelineSummary
source · #[non_exhaustive]pub struct PipelineSummary {
pub pipeline_name: Option<String>,
pub reprocessing_summaries: Option<Vec<ReprocessingSummary>>,
pub creation_time: Option<DateTime>,
pub last_update_time: Option<DateTime>,
}Expand description
A summary of 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.pipeline_name: Option<String>The name of the pipeline.
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>When the pipeline was last updated.
Implementations§
source§impl PipelineSummary
impl PipelineSummary
sourcepub fn pipeline_name(&self) -> Option<&str>
pub fn pipeline_name(&self) -> Option<&str>
The name of the pipeline.
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>
When the pipeline was last updated.
source§impl PipelineSummary
impl PipelineSummary
sourcepub fn builder() -> PipelineSummaryBuilder
pub fn builder() -> PipelineSummaryBuilder
Creates a new builder-style object to manufacture PipelineSummary.
Trait Implementations§
source§impl Clone for PipelineSummary
impl Clone for PipelineSummary
source§fn clone(&self) -> PipelineSummary
fn clone(&self) -> PipelineSummary
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 PipelineSummary
impl Debug for PipelineSummary
source§impl PartialEq for PipelineSummary
impl PartialEq for PipelineSummary
impl StructuralPartialEq for PipelineSummary
Auto Trait Implementations§
impl Freeze for PipelineSummary
impl RefUnwindSafe for PipelineSummary
impl Send for PipelineSummary
impl Sync for PipelineSummary
impl Unpin for PipelineSummary
impl UnwindSafe for PipelineSummary
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.