pub struct StartQueryInput {
pub end_time: i64,
pub limit: Option<i32>,
pub log_group_identifiers: Vec<String>,
pub log_group_name: Option<String>,
pub log_group_names: Vec<String>,
pub query_language: Option<QueryLanguage>,
pub query_string: String,
pub start_time: i64,
}Expand description
CloudWatch Logs StartQueryInput.
Fields§
§end_time: i64§limit: Option<i32>§log_group_identifiers: Vec<String>§log_group_name: Option<String>§log_group_names: Vec<String>§query_language: Option<QueryLanguage>§query_string: String§start_time: i64Trait Implementations§
Source§impl Clone for StartQueryInput
impl Clone for StartQueryInput
Source§fn clone(&self) -> StartQueryInput
fn clone(&self) -> StartQueryInput
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 StartQueryInput
impl Debug for StartQueryInput
Source§impl Default for StartQueryInput
impl Default for StartQueryInput
Source§fn default() -> StartQueryInput
fn default() -> StartQueryInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StartQueryInput
impl<'de> Deserialize<'de> for StartQueryInput
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 StartQueryInput
impl RefUnwindSafe for StartQueryInput
impl Send for StartQueryInput
impl Sync for StartQueryInput
impl Unpin for StartQueryInput
impl UnsafeUnpin for StartQueryInput
impl UnwindSafe for StartQueryInput
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