pub struct ScheduledQuery {
pub name: String,
pub arn: String,
pub query_string: String,
pub query_language: String,
pub schedule_expression: String,
pub execution_role_arn: String,
pub status: String,
pub creation_time: i64,
pub last_modified_time: i64,
}Fields§
§name: String§arn: String§query_string: String§query_language: String§schedule_expression: String§execution_role_arn: String§status: String§creation_time: i64§last_modified_time: i64Trait 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 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§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