[][src]Struct rusoto_logs::StartQueryRequest

pub struct StartQueryRequest {
    pub end_time: i64,
    pub limit: Option<i64>,
    pub log_group_name: String,
    pub query_string: String,
    pub start_time: i64,
}

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]

impl Default for StartQueryRequest[src]

impl Clone for 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]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self