Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

cloudwatchlogs_get_query_results

Returns the results from the specified query


Description

Returns the results from the specified query.

Only the fields requested in the query are returned, along with a @ptr field, which is the identifier for the log record. You can use the value of @ptr in a get_log_record operation to get the full log record.

get_query_results does not start a query execution. To run a query, use start_query.

If the value of the Status field in the output is Running, this operation returns only partial results. If you see a value of Scheduled or Running for the status, you can retry the operation later to see the final results.

Usage

cloudwatchlogs_get_query_results(queryId)

Arguments

queryId

[required] The ID number of the query.

Value

A list with the following syntax:

list(
  results = list(
    list(
      list(
        field = "string",
        value = "string"
      )
    )
  ),
  statistics = list(
    recordsMatched = 123.0,
    recordsScanned = 123.0,
    bytesScanned = 123.0
  ),
  status = "Scheduled"|"Running"|"Complete"|"Failed"|"Cancelled"
)

Request syntax

svc$get_query_results(
  queryId = "string"
)

paws.management

Amazon Web Services Management & Governance Services

v0.1.11
Apache License (>= 2.0)
Authors
David Kretch [aut, cre], Adam Banker [aut], Amazon.com, Inc. [cph]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.