Struct aws_sdk_iotanalytics::types::DatasetTrigger
source · #[non_exhaustive]pub struct DatasetTrigger {
pub schedule: Option<Schedule>,
pub dataset: Option<TriggeringDataset>,
}
Expand description
The DatasetTrigger
that specifies when the dataset is automatically updated.
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.schedule: Option<Schedule>
The Schedule when the trigger is initiated.
dataset: Option<TriggeringDataset>
The dataset whose content creation triggers the creation of this dataset's contents.
Implementations§
source§impl DatasetTrigger
impl DatasetTrigger
sourcepub fn builder() -> DatasetTriggerBuilder
pub fn builder() -> DatasetTriggerBuilder
Creates a new builder-style object to manufacture DatasetTrigger
.
Trait Implementations§
source§impl Clone for DatasetTrigger
impl Clone for DatasetTrigger
source§fn clone(&self) -> DatasetTrigger
fn clone(&self) -> DatasetTrigger
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 DatasetTrigger
impl Debug for DatasetTrigger
source§impl PartialEq for DatasetTrigger
impl PartialEq for DatasetTrigger
source§fn eq(&self, other: &DatasetTrigger) -> bool
fn eq(&self, other: &DatasetTrigger) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DatasetTrigger
Auto Trait Implementations§
impl RefUnwindSafe for DatasetTrigger
impl Send for DatasetTrigger
impl Sync for DatasetTrigger
impl Unpin for DatasetTrigger
impl UnwindSafe for DatasetTrigger
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.