#[non_exhaustive]pub struct PostScanActions {
pub bigquery_export: Option<BigQueryExport>,
pub notification_report: Option<NotificationReport>,
/* private fields */
}Expand description
The configuration of post scan actions of DataQualityScan.
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.bigquery_export: Option<BigQueryExport>Optional. If set, results will be exported to the provided BigQuery table.
notification_report: Option<NotificationReport>Optional. If set, results will be sent to the provided notification receipts upon triggers.
Implementations§
Source§impl PostScanActions
impl PostScanActions
pub fn new() -> Self
Sourcepub fn set_bigquery_export<T>(self, v: T) -> Selfwhere
T: Into<BigQueryExport>,
pub fn set_bigquery_export<T>(self, v: T) -> Selfwhere
T: Into<BigQueryExport>,
Sets the value of bigquery_export.
Sourcepub fn set_or_clear_bigquery_export<T>(self, v: Option<T>) -> Selfwhere
T: Into<BigQueryExport>,
pub fn set_or_clear_bigquery_export<T>(self, v: Option<T>) -> Selfwhere
T: Into<BigQueryExport>,
Sets or clears the value of bigquery_export.
Sourcepub fn set_notification_report<T>(self, v: T) -> Selfwhere
T: Into<NotificationReport>,
pub fn set_notification_report<T>(self, v: T) -> Selfwhere
T: Into<NotificationReport>,
Sets the value of notification_report.
Sourcepub fn set_or_clear_notification_report<T>(self, v: Option<T>) -> Selfwhere
T: Into<NotificationReport>,
pub fn set_or_clear_notification_report<T>(self, v: Option<T>) -> Selfwhere
T: Into<NotificationReport>,
Sets or clears the value of notification_report.
Trait Implementations§
Source§impl Clone for PostScanActions
impl Clone for PostScanActions
Source§fn clone(&self) -> PostScanActions
fn clone(&self) -> PostScanActions
Returns a duplicate 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 PostScanActions
impl Debug for PostScanActions
Source§impl Default for PostScanActions
impl Default for PostScanActions
Source§fn default() -> PostScanActions
fn default() -> PostScanActions
Returns the “default value” for a type. Read more
Source§impl Message for PostScanActions
impl Message for PostScanActions
Source§impl PartialEq for PostScanActions
impl PartialEq for PostScanActions
impl StructuralPartialEq for PostScanActions
Auto Trait Implementations§
impl Freeze for PostScanActions
impl RefUnwindSafe for PostScanActions
impl Send for PostScanActions
impl Sync for PostScanActions
impl Unpin for PostScanActions
impl UnwindSafe for PostScanActions
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