Struct aws_sdk_glue::types::DqStopJobOnFailureOptions
source · #[non_exhaustive]pub struct DqStopJobOnFailureOptions {
pub stop_job_on_failure_timing: Option<DqStopJobOnFailureTiming>,
}Expand description
Options to configure how your job will stop if your data quality evaluation fails.
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.stop_job_on_failure_timing: Option<DqStopJobOnFailureTiming>When to stop job if your data quality evaluation fails. Options are Immediate or AfterDataLoad.
Implementations§
source§impl DqStopJobOnFailureOptions
impl DqStopJobOnFailureOptions
sourcepub fn stop_job_on_failure_timing(&self) -> Option<&DqStopJobOnFailureTiming>
pub fn stop_job_on_failure_timing(&self) -> Option<&DqStopJobOnFailureTiming>
When to stop job if your data quality evaluation fails. Options are Immediate or AfterDataLoad.
source§impl DqStopJobOnFailureOptions
impl DqStopJobOnFailureOptions
sourcepub fn builder() -> DqStopJobOnFailureOptionsBuilder
pub fn builder() -> DqStopJobOnFailureOptionsBuilder
Creates a new builder-style object to manufacture DqStopJobOnFailureOptions.
Trait Implementations§
source§impl Clone for DqStopJobOnFailureOptions
impl Clone for DqStopJobOnFailureOptions
source§fn clone(&self) -> DqStopJobOnFailureOptions
fn clone(&self) -> DqStopJobOnFailureOptions
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 DqStopJobOnFailureOptions
impl Debug for DqStopJobOnFailureOptions
source§impl PartialEq for DqStopJobOnFailureOptions
impl PartialEq for DqStopJobOnFailureOptions
source§fn eq(&self, other: &DqStopJobOnFailureOptions) -> bool
fn eq(&self, other: &DqStopJobOnFailureOptions) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DqStopJobOnFailureOptions
Auto Trait Implementations§
impl RefUnwindSafe for DqStopJobOnFailureOptions
impl Send for DqStopJobOnFailureOptions
impl Sync for DqStopJobOnFailureOptions
impl Unpin for DqStopJobOnFailureOptions
impl UnwindSafe for DqStopJobOnFailureOptions
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.