pub struct ScheduledQuery {Show 13 fields
pub arn: String,
pub name: String,
pub query_string: String,
pub state: String,
pub creation_time: f64,
pub schedule_configuration: Value,
pub notification_configuration: Value,
pub target_configuration: Option<Value>,
pub scheduled_query_execution_role_arn: Option<String>,
pub kms_key_id: Option<String>,
pub error_report_configuration: Option<Value>,
pub previous_invocation_time: Option<f64>,
pub last_run_status: Option<String>,
}Expand description
A scheduled query.
Fields§
§arn: String§name: String§query_string: String§state: StringENABLED / DISABLED.
creation_time: f64§schedule_configuration: Value§notification_configuration: Value§target_configuration: Option<Value>§scheduled_query_execution_role_arn: Option<String>§kms_key_id: Option<String>§error_report_configuration: Option<Value>§previous_invocation_time: Option<f64>§last_run_status: Option<String>Trait Implementations§
Source§impl Clone for ScheduledQuery
impl Clone for ScheduledQuery
Source§fn clone(&self) -> ScheduledQuery
fn clone(&self) -> ScheduledQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ScheduledQuery
impl Debug for ScheduledQuery
Source§impl<'de> Deserialize<'de> for ScheduledQuery
impl<'de> Deserialize<'de> for ScheduledQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ScheduledQuery
impl RefUnwindSafe for ScheduledQuery
impl Send for ScheduledQuery
impl Sync for ScheduledQuery
impl Unpin for ScheduledQuery
impl UnsafeUnpin for ScheduledQuery
impl UnwindSafe for ScheduledQuery
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