Struct aws_sdk_cloudwatchlogs::client::fluent_builders::StartQuery
source · pub struct StartQuery { /* private fields */ }Expand description
Fluent builder constructing a request to StartQuery.
Schedules a query of a log group using CloudWatch Logs Insights. You specify the log group and time range to query and the query string to use.
For more information, see CloudWatch Logs Insights Query Syntax.
Queries time out after 15 minutes of execution. If your queries are timing out, reduce the time range being searched or partition your query into a number of queries.
Implementations§
source§impl StartQuery
impl StartQuery
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<StartQuery, AwsResponseRetryClassifier>, SdkError<StartQueryError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<StartQuery, AwsResponseRetryClassifier>, SdkError<StartQueryError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(self) -> Result<StartQueryOutput, SdkError<StartQueryError>>
pub async fn send(self) -> Result<StartQueryOutput, SdkError<StartQueryError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn log_group_name(self, input: impl Into<String>) -> Self
pub fn log_group_name(self, input: impl Into<String>) -> Self
The log group on which to perform the query.
A StartQuery operation must include a logGroupNames or a logGroupName parameter, but not both.
sourcepub fn set_log_group_name(self, input: Option<String>) -> Self
pub fn set_log_group_name(self, input: Option<String>) -> Self
The log group on which to perform the query.
A StartQuery operation must include a logGroupNames or a logGroupName parameter, but not both.
sourcepub fn log_group_names(self, input: impl Into<String>) -> Self
pub fn log_group_names(self, input: impl Into<String>) -> Self
Appends an item to logGroupNames.
To override the contents of this collection use set_log_group_names.
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.
sourcepub fn set_log_group_names(self, input: Option<Vec<String>>) -> Self
pub fn set_log_group_names(self, input: Option<Vec<String>>) -> Self
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.
sourcepub fn start_time(self, input: i64) -> Self
pub fn start_time(self, input: i64) -> Self
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.
sourcepub fn set_start_time(self, input: Option<i64>) -> Self
pub fn set_start_time(self, input: Option<i64>) -> Self
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.
sourcepub fn end_time(self, input: i64) -> Self
pub fn end_time(self, input: i64) -> Self
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.
sourcepub fn set_end_time(self, input: Option<i64>) -> Self
pub fn set_end_time(self, input: Option<i64>) -> Self
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.
sourcepub fn query_string(self, input: impl Into<String>) -> Self
pub fn query_string(self, input: impl Into<String>) -> Self
The query string to use. For more information, see CloudWatch Logs Insights Query Syntax.
sourcepub fn set_query_string(self, input: Option<String>) -> Self
pub fn set_query_string(self, input: Option<String>) -> Self
The query string to use. For more information, see CloudWatch Logs Insights Query Syntax.
Trait Implementations§
source§impl Clone for StartQuery
impl Clone for StartQuery
source§fn clone(&self) -> StartQuery
fn clone(&self) -> StartQuery
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more