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: i64The 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: StringThe query string to use. For more information, see CloudWatch Logs Insights Query Syntax.
start_time: i64The 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§
Source§impl Clone for StartQueryRequest
impl Clone for StartQueryRequest
Source§fn clone(&self) -> StartQueryRequest
fn clone(&self) -> StartQueryRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more