Struct aws_sdk_appflow::types::TriggerProperties
source · #[non_exhaustive]pub struct TriggerProperties {
pub scheduled: Option<ScheduledTriggerProperties>,
}
Expand description
Specifies the configuration details that control the trigger for a flow. Currently, these settings only apply to the Scheduled
trigger type.
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.scheduled: Option<ScheduledTriggerProperties>
Specifies the configuration details of a schedule-triggered flow as defined by the user.
Implementations§
source§impl TriggerProperties
impl TriggerProperties
sourcepub fn scheduled(&self) -> Option<&ScheduledTriggerProperties>
pub fn scheduled(&self) -> Option<&ScheduledTriggerProperties>
Specifies the configuration details of a schedule-triggered flow as defined by the user.
source§impl TriggerProperties
impl TriggerProperties
sourcepub fn builder() -> TriggerPropertiesBuilder
pub fn builder() -> TriggerPropertiesBuilder
Creates a new builder-style object to manufacture TriggerProperties
.
Trait Implementations§
source§impl Clone for TriggerProperties
impl Clone for TriggerProperties
source§fn clone(&self) -> TriggerProperties
fn clone(&self) -> TriggerProperties
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 TriggerProperties
impl Debug for TriggerProperties
source§impl PartialEq for TriggerProperties
impl PartialEq for TriggerProperties
source§fn eq(&self, other: &TriggerProperties) -> bool
fn eq(&self, other: &TriggerProperties) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TriggerProperties
Auto Trait Implementations§
impl RefUnwindSafe for TriggerProperties
impl Send for TriggerProperties
impl Sync for TriggerProperties
impl Unpin for TriggerProperties
impl UnwindSafe for TriggerProperties
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.