[][src]Struct rusoto_logs::StartQueryRequest

pub struct StartQueryRequest {
    pub end_time: i64,
    pub limit: Option<i64>,
    pub log_group_name: Option<String>,
    pub log_group_names: Option<Vec<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. The default is 1000.

log_group_name: Option<String>

The log group on which to perform the query.

A StartQuery operation must include a logGroupNames or a logGroupName parameter, but not both.

log_group_names: Option<Vec<String>>

The list of log groups to be queried. You can include up to 20 log groups.

A StartQuery operation must include a logGroupNames or a logGroupName parameter, but not both.

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 Clone for StartQueryRequest[src]

impl Debug for StartQueryRequest[src]

impl Default for StartQueryRequest[src]

impl PartialEq<StartQueryRequest> for StartQueryRequest[src]

impl Serialize for StartQueryRequest[src]

impl StructuralPartialEq for StartQueryRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.