[−][src]Struct rusoto_logs::StartQueryRequest
Fields
end_time: i64
The end of the time range to query. The range is inclusive, so the specified end time is included in the query. Specified as epoch time, the number of seconds since January 1, 1970, 00:00:00 UTC.
limit: Option<i64>
The maximum number of log events to return in the query. If the query string uses the fields
command, only the specified fields and their values are returned.
log_group_name: String
The log group on which to perform the query.
query_string: String
The query string to use. For more information, see CloudWatch Logs Insights Query Syntax.
start_time: i64
The beginning of the time range to query. The range is inclusive, so the specified start time is included in the query. Specified as epoch time, the number of seconds since January 1, 1970, 00:00:00 UTC.
Trait Implementations
impl PartialEq<StartQueryRequest> for StartQueryRequest
[src]
fn eq(&self, other: &StartQueryRequest) -> bool
[src]
fn ne(&self, other: &StartQueryRequest) -> bool
[src]
impl Default for StartQueryRequest
[src]
fn default() -> StartQueryRequest
[src]
impl Clone for StartQueryRequest
[src]
fn clone(&self) -> StartQueryRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for StartQueryRequest
[src]
impl Serialize for StartQueryRequest
[src]
Auto Trait Implementations
impl Send for StartQueryRequest
impl Sync for StartQueryRequest
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self